@import url("https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ranchers&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Coiny&display=swap");

:root {
  --color-primary: #ffd700;
  --color-secondary: #ff6b35;
  --color-accent: #ff1744;
  --color-dark: #2c3e50;
  --color-light: #ffffff;
  --color-gray: #f8f9fa;
  --color-text: #333333;
  --color-text-light: #666666;

  --font-main: "Montserrat", sans-serif;
  --font-title: "Coiny", system-ui;
  --font-title-special: "Coiny", system-ui;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);

  --border-radius: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-primary);
  margin: 0;
  padding: 0;
}

.search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-field {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e3097e;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.search-field:focus {
  border-color: var(--color-secondary);
}

.search-submit {
  background: #e3097e;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-submit:hover {
  background: var(--color-secondary);
}

.search-submit svg {
  width: 20px;
  height: 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  background: var(--color-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  margin-top: 50px;
}

.hero-title {
  font-family: var(--font-title-special);
  font-weight: bold;
  font-size: 4.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: slideInLeft 1s ease-out;
  color: var(--color-light);
  text-align: center;
}

.hero-subtitle {
  font-family: var(--font-main);
  font-size: 2rem;
  margin-bottom: 3rem;
  animation: slideInLeft 1s ease-out;
  color: var(--color-light);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8rem;
  padding: 2rem;
  animation: slideInRight 1s ease-out 0.3s both;
  position: relative;
}

.product-left,
.product-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Make side visuals smaller and intentionally a bit misaligned */
.product-left {
  transform: rotate(-10deg) translate(-90px, -36px) scale(0.9);
}

.product-right {
  transform: rotate(8deg) translate(90px, 36px) scale(0.95);
}

/* Decorative extra items */
.decor-item {
  position: absolute;
  pointer-events: none;
}

.decor-image {
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
}

.decor-pack {
  transform: translate(-460px, -240px) rotate(-6deg);
  left: 50%;
  top: 50%;
}

.decor-syrup {
  transform: translate(440px, -220px) rotate(10deg);
  left: 50%;
  top: 50%;
}

/* Floating animations for new decorative items */
.decor-pack .decor-image {
  animation: floatLeft 3s ease-in-out infinite;
}

.decor-syrup .decor-image {
  animation: floatRight 3s ease-in-out infinite;
}

/* Responsive spacing to avoid overlaps on small screens */
@media (max-width: 1024px) {
  .hero-visual {
    gap: 5.5rem;
  }
  .product-left {
    transform: rotate(-8deg) translate(-60px, -28px) scale(0.9);
  }
  .product-right {
    transform: rotate(6deg) translate(60px, 28px) scale(0.95);
  }
  .decor-pack {
    transform: translate(-320px, -190px) rotate(-6deg);
  }
  .decor-syrup {
    transform: translate(300px, -180px) rotate(10deg);
  }
}

/* Optimisation pour tablettes et grands téléphones */
@media (max-width: 768px) and (min-width: 481px) {
  .hero {
    padding: 2.5rem 0;
    margin-top: 15px;
    min-height: 92vh;
  }

  .hero-title {
    font-size: 4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  }

  .hero-visual {
    gap: 2rem;
    padding: 1.5rem;
  }

  .truck-center {
    max-width: 320px;
  }

  .truck-image {
    max-height: 350px;
  }

  .product-left {
    transform: rotate(-6deg) translate(-150px, -35px) scale(0.75);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
  }

  .product-right {
    transform: rotate(6deg) translate(70px, -35px) scale(0.75);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
  }

  .decor-image {
    max-height: 100px;
  }

  .decor-pack {
    transform: translate(-100px, -50px) rotate(-5deg);
    left: 50%;
    top: 50%;
    z-index: 1;
  }

  .decor-syrup {
    transform: translate(100px, -50px) rotate(5deg);
    left: 50%;
    top: 50%;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  /* Réduire l'espacement de la section hero */
  .hero {
    padding: 2rem 0;
    margin-top: 20px;
    min-height: 90vh;
  }

  /* Optimisation du titre principal */
  .hero-title {
    font-size: 3.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
  }

  /* Optimisation du sous-titre */
  .hero-subtitle {
    font-size: 1.2rem;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
  }

  .hero-visual {
    gap: 1.5rem;
    padding: 1rem;
    justify-content: center;
    align-items: center;
  }

  /* Centrer et réduire le camion */
  .truck-center {
    order: 1;
    max-width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .truck-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }

  /* Réduire drastiquement les produits latéraux et les espacer davantage */
  .product-left {
    transform: rotate(-8deg) translate(-250px, -60px) scale(0.65);
    order: 2;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
  }

  .product-right {
    transform: rotate(8deg) translate(120px, -60px) scale(0.65);
    order: 3;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
  }

  /* Réduire drastiquement les éléments décoratifs et les espacer davantage */
  .decor-image {
    max-height: 75px;
  }

  .decor-pack {
    transform: translate(-200px, -80px) rotate(-6deg);
    left: 50%;
    top: 50%;
    z-index: 1;
  }

  .decor-syrup {
    transform: translate(160px, -80px) rotate(6deg);
    left: 50%;
    top: 50%;
    z-index: 1;
  }

  /* Ajuster les animations pour mobile */
  .decor-pack .decor-image {
    animation: floatLeft 2.5s ease-in-out infinite;
  }

  .decor-syrup .decor-image {
    animation: floatRight 2.5s ease-in-out infinite;
  }
}

.truck-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
}

.truck-image {
  max-width: 100%;
  height: auto;
  max-height: 1200px;
  object-fit: contain;
  animation: none;
}

.product-image {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  transition: var(--transition);
}

.product-left .product-image {
  max-height: 140px;
  animation: floatLeft 2.5s ease-in-out infinite;
}

.product-right .product-image {
  max-height: 160px;
  animation: floatRight 2.5s ease-in-out infinite;
}

.product-image:hover {
  transform: scale(1.1);
}

.carambar-package {
  position: relative;
  width: 120px;
  height: 80px;
  margin: 0 auto;
  transform-style: preserve-3d;
  animation: float 3s ease-in-out infinite;
}

.package-front {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b35, #ff1744);
  border-radius: 8px;
  transform: translateZ(10px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.package-back {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff1744, #ff6b35);
  border-radius: 8px;
  transform: translateZ(-10px) rotateY(180deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatLeft {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-8px) translateX(-5px);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-8px) translateX(5px);
  }
}

.track-section {
  padding: 4rem 0;
  min-height: 100vh;
  background: #e3097e;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.track-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  left: 0;
  right: 0;
  top: -75rem;
  height: 130%;
  background: #ffd700;
  transform-origin: 0 0;
  z-index: 0;
  pointer-events: none;
}

.track-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6rem;
  height: 6rem;
  background: var(--color-primary);
  transform-origin: 100% 100%;
  z-index: 0;
  pointer-events: none;
}

.track-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-family: var(--font-title);
  font-weight: bold;
  font-size: 2.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--color-light);
  letter-spacing: 0.3px;
}

.section-subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 1.0625rem;
  color: var(--color-light);
  margin-bottom: 1.25rem;
}

/* Track section titles */
.track-title {
  text-align: center;
  font-family: var(--font-title);
  font-weight: bold;
  font-size: 2.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--color-light);
  letter-spacing: 0.3px;
}

.track-subtitle {
  text-align: center;
  font-family: var(--font-main);
  font-size: 1.2rem;
  color: var(--color-light);
  margin-bottom: 1.25rem;
}

.track-subtitle span {
  color: #05153b;
  font-weight: 700;
}

.track-info {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.current-location {
  background: var(--color-light);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.current-location h3 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.city-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-dark);
}

.last-update {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.map-container {
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
}

.france-svg {
  margin-top: 3.3rem;
  width: 100%;
  height: 700px;
  border-radius: 20px;
  object-fit: cover;
  transform: scale(1.05);
}

.pulsing-dot {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

.planning-section {
  padding: 4rem 0;
  background: var(--color-primary);
}

.filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.25rem;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(4px);
}

.search-input {
  flex: 1;
  padding: 0.9rem 1rem;
  border: 2px solid #ffd94d;
  border-radius: 9999px;
  font-size: 1rem;
  transition: var(--transition);
  color: #05153b;
}

.search-input:focus {
  outline: none;
  border-color: #e3097e;
  box-shadow: 0 0 0 4px rgba(227, 9, 126, 0.15);
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.6rem 1.1rem;
  border: 2px solid #e3097e;
  background: #e3097e;
  color: #ffffff;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  letter-spacing: 0.25px;
}

.filter-btn.active,
.filter-btn:hover {
  background: #e3097e;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(227, 9, 126, 0.25);
}

.stops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.stop-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(5, 21, 59, 0.12);
  transition: var(--transition);
  border: 1px solid #ffe36b;
  position: relative;
}

.stop-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 14px 28px rgba(5, 21, 59, 0.18);
}

.stop-card h3 {
  color: #05153b;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.stop-card .arrival {
  display: inline-block;
  color: #ffffff;
  background: #e3097e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.7rem;
  border-radius: 9999px;
  box-shadow: 0 6px 14px rgba(227, 9, 126, 0.25);
}

.footer {
  background: var(--color-primary);
  color: var(--color-dark);
  padding: 3rem 0;
}

.footer-title {
  font-family: var(--font-title);
  font-weight: bold;
  font-size: 2.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: 0.3px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--color-secondary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-section a {
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-secondary);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .nq-l-site-logo--rose .default-logo {
    height: 50px;
    max-width: 200px;
  }

  .nq-menu-toggle {
    top: 15px;
    right: 15px;
  }

  .nq-l-header-navigation {
    padding: 15px;
  }

  .nq-l-header-mainMenu {
    flex-direction: column;
    gap: 15px;
  }

  .nq-l-header-mainMenu .menu-item a {
    font-size: 14px;
  }

  .search-field {
    font-size: 12px;
    padding: 10px 12px;
  }

  .hero {
    padding: 2rem 1rem;
    margin-top: 80px;
  }

  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  }

  .hero-visual {
    flex-direction: column;
    gap: 2rem;
    padding: 1rem;
  }

  .truck-center {
    order: 1;
    max-width: 300px;
  }

  .product-left {
    order: 2;
  }

  .product-right {
    order: 3;
  }

  .track-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-buttons {
    justify-content: center;
  }

  .stops-grid {
    grid-template-columns: 1fr;
  }

  /* Track section sizing for tablets/large phones */
  .track-section {
    padding: 6rem 0 6rem 0;
    min-height: 90vh;
  }
  .track-section::after {
    bottom: -4rem;
    height: 5rem;
    transform-origin: 100% 100%;
  }
  .map-container {
    padding: 1.25rem;
  }
  .france-svg {
    height: 520px;
    transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  /* Réduire encore plus l'espacement pour petits écrans */
  .hero {
    padding: 1.5rem 0;
    margin-top: 10px;
    min-height: 85vh;
  }

  .hero-title {
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  }

  .hero-subtitle {
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  .section-title {
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .filter-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  /* Optimisations spécifiques pour très petits écrans */
  .hero-visual {
    gap: 1rem;
    padding: 0.5rem;
  }

  .truck-center {
    max-width: 220px;
  }

  .truck-image {
    max-height: 250px;
  }

  .product-left,
  .product-right {
    transform: rotate(-5deg) translate(-180px, -50px) scale(0.55);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
  }

  .product-right {
    transform: rotate(5deg) translate(90px, -50px) scale(0.55);
  }

  .decor-image {
    max-height: 60px;
  }

  .decor-pack {
    transform: translate(-160px, -60px) rotate(-4deg);
    left: 50%;
    top: 50%;
    z-index: 1;
  }

  .decor-syrup {
    transform: translate(130px, -60px) rotate(4deg);
    left: 50%;
    top: 50%;
    z-index: 1;
  }

  /* Compact track section on small phones */
  .track-section {
    padding: 4.5rem 0 5rem 0;
    min-height: 80vh;
  }
  .track-section::after {
    bottom: -3rem;
    height: 4rem;
    transform-origin: 100% 100%;
  }
  .france-svg {
    height: 480px;
    transform: scale(1.03);
  }
}

/* Styles pour la card d'affichage des villes */
.city-card-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.city-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.city-image-container {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.city-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.city-card:hover .city-image {
  transform: scale(1.05);
}

.city-content {
  padding: 1.5rem;
}

.city-name-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.city-pin-icon {
  width: 1em;
  height: 1em;
  fill: #e3097e;
  flex-shrink: 0;
}

.city-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}

.city-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.location-icon {
  width: 16px;
  height: 16px;
  fill: #10b981;
}

.city-region {
  color: #10b981;
  font-weight: 500;
  font-size: 0.9rem;
}

.city-joke {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  text-align: left;
  font-style: italic;
}

.city-date {
  background: #e3097e;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Boutons de navigation */
.navigation-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.nav-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.prev-button {
  color: #ef4444;
}

.prev-button:hover {
  background: #e3097e;
  color: white;
  transform: scale(1.1);
}

.next-button {
  color: #10b981;
}

.next-button:hover {
  background: #e3097e;
  color: white;
  transform: scale(1.1);
}

.nav-icon {
  width: 20px;
  height: 20px;
}

/* Responsive pour les cards */
@media (max-width: 768px) {
  .city-card {
    max-width: 100%;
    margin: 0 1rem;
    min-height: 500px;
  }

  .city-image-container {
    height: 280px;
  }

  .city-content {
    padding: 2rem 1.5rem;
  }

  .navigation-buttons {
    gap: 0.5rem;
  }

  .nav-button {
    width: 45px;
    height: 45px;
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -150%);
  width: 90%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}

.notification.active {
  transform: translate(-50%, 20px);
}

.notification-logo {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  border-radius: 8px;
}

.notification-content {
  display: flex;
  flex-direction: column;
}

.notification-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.notification-message {
  font-size: 0.9rem;
  color: #555;
}

h2 {
  font-size: 3.2rem;
}
