/* Merged landing page styles. Generated from the original section files. */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #ffffff;
}

.landing-section {
  position: relative;
  width: 100%;
  scroll-margin-top: 0;
  /* Note: contain is intentionally omitted — sections have position:fixed children
     (modals/overlays) that rely on the viewport as their containing block */
}

.landing-section.section-reveal {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center top;
  /* No filter:blur — blur on large elements causes expensive GPU rasterisation */
  backface-visibility: hidden;
}

.landing-section.section-reveal-pending {
  opacity: 0;
  /* Reduced translate distance + no scale, keeping it GPU-compositor-only */
  transform: translate3d(0, 1.5rem, 0);
  /* filter: blur removed — was the primary scroll jank source */
}

.landing-section.section-reveal-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  /* Only opacity + transform — both are handled by GPU compositor thread,
     zero main-thread involvement = zero jank */
  transition:
    opacity 760ms cubic-bezier(0.2, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.2, 1, 0.3, 1);
  transition-delay: var(--section-reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .landing-section.section-reveal,
  .landing-section.section-reveal-pending,
  .landing-section.section-reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-navbar,
.site-navbar *,
.site-navbar *::before,
.site-navbar *::after {
  box-sizing: border-box;
}

.site-navbar {
  --ink: #0b2b5c;
  --ink-soft: #173f72;
  --brand: #1456bf;
  --brand-deep: #0b3f9f;
  --white: #ffffff;
  --delivery-blue: #2563eb;
  --delivery-navy: #0f172a;
  --line-speed: 2.15s;
  --truck-shift: 0px;
  position: fixed;
  top: clamp(0.62rem, 1.5vw, 1.15rem);
  left: 50%;
  z-index: 10000;
  width: min(90rem, calc(100% - 2.75rem));
  padding: clamp(0.6rem, 1.15vh, 0.9rem) 1rem clamp(0.6rem, 1.15vh, 0.9rem) 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 248, 255, 0.72)),
    rgba(255, 255, 255, 0.28);
  box-shadow:
    0 1rem 3.2rem rgba(16, 70, 134, 0.16),
    0 0.2rem 0.9rem rgba(15, 45, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  transform: translate3d(-50%, 0, 0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 360ms cubic-bezier(.2, .75, .25, 1),
    opacity 260ms ease,
    visibility 0s linear 0s,
    top 260ms ease,
    width 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
  animation: siteNavDropIn 740ms cubic-bezier(.2, .75, .25, 1);
}

.site-navbar::before {
  content: "";
  position: absolute;
  inset: 0.28rem;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(20, 86, 191, 0.1), rgba(33, 127, 84, 0.08), rgba(20, 86, 191, 0.06));
  opacity: 0.82;
  pointer-events: none;
}

.site-navbar a {
  color: inherit;
  text-decoration: none;
}

.site-navbar.is-scrolled {
  top: 0.72rem;
  width: min(82rem, calc(100% - 2rem));
  border-color: rgba(210, 230, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 255, 0.86)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 1.35rem 3rem rgba(8, 49, 107, 0.18),
    0 0.25rem 1rem rgba(16, 70, 134, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.site-navbar.nav-hidden {
  transform: translate3d(-50%, calc(-100% - 1.6rem), 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 300ms cubic-bezier(.45, 0, .2, 1),
    opacity 220ms ease,
    visibility 0s linear 300ms;
}

.site-navbar .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.site-navbar .brand-logo {
  max-height: 4rem;
  width: auto;
  object-fit: contain;
}

.site-navbar .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.15rem, 1.5vw, 1.5rem);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(9, 45, 92, 0.88);
}

.site-navbar .nav-links a {
  position: relative;
  padding: 0.8rem 0.65rem;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.site-navbar .nav-links a::before {
  content: "";
  position: absolute;
  inset: 0.46rem 0.05rem;
  z-index: -1;
  border-radius: 999px;
  background: rgba(20, 86, 191, 0.08);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 200ms ease, transform 200ms ease;
}

.site-navbar .nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.28rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1456bf, #21a06a);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.site-navbar .nav-links a:hover,
.site-navbar .nav-links a:focus-visible {
  color: var(--brand);
  transform: translateY(-1px);
}

.site-navbar .nav-links a:hover::before,
.site-navbar .nav-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.site-navbar .nav-links a:hover::after,
.site-navbar .nav-links a:focus-visible::after {
  width: calc(100% - 0.9rem);
}

.site-navbar .nav-links a.active {
  color: var(--brand-deep);
}

.site-navbar .nav-links a.active::before {
  opacity: 1;
  transform: scale(1);
}

.site-navbar .nav-links a.active::after {
  width: 0.44rem;
  height: 0.44rem;
  bottom: 0.12rem;
  border-radius: 50%;
  background: var(--brand);
}

/* Quality Nav Link Special Red/Rose Styling */
.site-navbar .nav-links a.nav-link-quality {
  color: #e11d48; /* Elegant Rose-Red */
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

/* Override active state color for Quality link */
.site-navbar .nav-links a.nav-link-quality.active {
  color: #f43f5e;
}

/* Customize hover effect for Quality link */
.site-navbar .nav-links a.nav-link-quality:hover,
.site-navbar .nav-links a.nav-link-quality:focus-visible {
  color: #f43f5e;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(225, 29, 72, 0.25);
}

.site-navbar .nav-links a.nav-link-quality::before {
  background: rgba(225, 29, 72, 0.08); /* Warm red tint background on hover */
}

.site-navbar .nav-links a.nav-link-quality::after {
  background: linear-gradient(90deg, #e11d48, #ff4d4d); /* Red-to-Light-Red Underline */
}

/* Pulsating Notification Dot */
.nav-quality-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: #e11d48;
  border-radius: 50%;
  position: relative;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 6px rgba(225, 29, 72, 0.6);
}

.site-navbar .nav-links a.nav-link-quality:hover .nav-quality-dot,
.site-navbar .nav-links a.nav-link-quality.active .nav-quality-dot {
  background-color: #f43f5e;
}

.nav-quality-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s cubic-bezier(0.25, 0, 0, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.85;
  }
  80%, 100% {
    transform: translate(-50%, -50%) scale(2.8);
    opacity: 0;
  }
}

.site-navbar .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
}

.site-navbar .delivery-service {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  min-height: 3rem;
  padding: 0.48rem 0.98rem 0.5rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--delivery-navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.64)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0.95rem 2.25rem rgba(15, 48, 92, 0.14),
    0 0 1.1rem rgba(37, 99, 235, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-navbar .delivery-service::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0) 44%);
  opacity: 0.85;
  pointer-events: none;
}

.site-navbar .delivery-service:hover,
.site-navbar .delivery-service:focus-within {
  --line-speed: 1.05s;
  --truck-shift: 5px;
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow:
    0 1rem 2.4rem rgba(37, 99, 235, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.site-navbar .truck-wrapper {
  position: relative;
  width: 2.22rem;
  height: 2.22rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--delivery-blue);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 0 0.42rem rgba(37, 99, 235, 0.06),
    0 0.55rem 1.25rem rgba(37, 99, 235, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  animation: deliveryFloat 2.5s ease-in-out infinite;
}

.site-navbar .truck-wrapper::after {
  content: "";
  position: absolute;
  inset: -0.28rem;
  border: 1px solid rgba(37, 99, 235, 0.42);
  border-radius: inherit;
  opacity: 0;
  animation: deliveryPulse 4.25s ease-out infinite;
}

.site-navbar .truck-wrapper svg {
  width: 1.38rem;
  height: 1.38rem;
  filter: drop-shadow(0 0.22rem 0.36rem rgba(37, 99, 235, 0.24));
}

.site-navbar .service-content {
  display: grid;
  gap: 0.28rem;
  min-width: 10.6rem;
  line-height: 1;
}

.site-navbar .service-content span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: #0b1f3a;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-navbar .service-content .service-label-compact {
  display: none;
}

.site-navbar .service-prefix {
  color: var(--delivery-blue);
}

.site-navbar .delivery-line {
  position: relative;
  width: 100%;
  height: 0.2rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.95), rgba(96, 165, 250, 0.2));
  background-size: 220% 100%;
  box-shadow: 0 0.45rem 0.9rem rgba(37, 99, 235, 0.16);
  animation: deliveryLineFlow var(--line-speed) linear infinite;
}

.site-navbar .delivery-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
  transform: translateX(-70%);
  animation: deliverySpark var(--line-speed) linear infinite;
}

.site-navbar .delivery-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.03rem;
  width: 0.42rem;
  height: 0.42rem;
  border-top: 2px solid var(--delivery-blue);
  border-right: 2px solid var(--delivery-blue);
  transform: translateY(-50%) rotate(45deg);
  filter: drop-shadow(0 0 0.35rem rgba(37, 99, 235, 0.4));
}

@keyframes siteNavDropIn {
  from {
    opacity: 0;
    transform: translate3d(-50%, -1rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-navbar,
  .site-navbar *,
  .site-navbar *::before,
  .site-navbar *::after {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .site-navbar {
    width: min(100% - 2rem, 76rem);
  }

  .site-navbar .nav-links {
    display: none;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }

  .site-navbar {
    top: 0.7rem;
    width: calc(100% - 1.2rem);
    border-radius: 1.35rem;
    align-items: center;
    padding: 0.72rem 0.78rem;
  }

  .site-navbar.is-scrolled {
    top: 0.52rem;
    width: calc(100% - 1rem);
  }

  .site-navbar .brand-logo {
    max-height: 3.35rem;
  }

  .site-navbar .delivery-service {
    min-height: 2.8rem;
    padding: 0.42rem 0.78rem 0.45rem 0.5rem;
    gap: 0.55rem;
  }

  .site-navbar .truck-wrapper {
    width: 2rem;
    height: 2rem;
  }

  .site-navbar .truck-wrapper svg {
    width: 1.24rem;
    height: 1.24rem;
  }

  .site-navbar .service-content {
    min-width: 9.4rem;
  }

  .site-navbar .service-content span {
    font-size: 0.84rem;
  }

  #welcome .hero-content {
    margin-top: 5.7rem;
  }
}

@media (max-width: 560px) {
  .site-navbar {
    gap: 0.65rem;
  }

  .site-navbar .nav-actions {
    gap: 0;
  }

  .site-navbar .delivery-service {
    max-width: 9.4rem;
    padding-right: 0.68rem;
  }

  .site-navbar .service-content {
    min-width: 5.5rem;
  }

  .site-navbar .service-content span {
    gap: 0.2rem;
    font-size: 0.76rem;
  }

  .site-navbar .service-content .service-label-full {
    display: none;
  }

  .site-navbar .service-content .service-label-compact {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .site-navbar {
    width: calc(100% - 1rem);
  }

  .site-navbar .brand-logo {
    max-height: 3rem;
    max-width: 7rem;
  }
}


/* Welcome Section */
#welcome *,
#welcome *::before,
#welcome *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
#welcome {
            --ink: #0b2b5c;
            --ink-soft: #173f72;
            --brand: #1456bf;
            --brand-deep: #0b3f9f;
            --green: #217f54;
            --white: #ffffff;
            --glass: rgba(255, 255, 255, 0.24);
            --glass-strong: rgba(255, 255, 255, 0.78);
        }
#welcome {
            height: 100%;
            background: #dff2ff;
        }
#welcome {
            height: 100%;
            font-family: "Inter", Arial, sans-serif;
            color: var(--ink);
            overflow: hidden;
            background: #dff2ff;
        }
#welcome a {
            color: inherit;
            text-decoration: none;
        }
#welcome .hero {
            position: relative;
            height: 100vh;
            height: 100svh;
            --scene-size: 100% auto;
            --scene-position: center bottom;
            isolation: isolate;
            overflow: hidden;
            background: #dff2ff;
        }
#welcome .hero::before {
            content: "";
            position: absolute;
            inset: -1.5rem;
            z-index: 0;
            background: url("images/Hero.png") center / cover no-repeat;
            filter: blur(14px) saturate(1.08);
            opacity: 0.4;
            transform: scale(1.03);
            pointer-events: none;
        }
#welcome .scene-fit {
            position: absolute;
            inset: 0;
            z-index: 1;
            background: url("images/Hero.png") var(--scene-position) / var(--scene-size) no-repeat;
            -webkit-mask-image: linear-gradient(to bottom, transparent 0 30%, rgba(0, 0, 0, 0.45) 38%, #000 47%);
            mask-image: linear-gradient(to bottom, transparent 0 30%, rgba(0, 0, 0, 0.45) 38%, #000 47%);
            pointer-events: none;
        }
#welcome .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 2;
            background-image:
                linear-gradient(110deg, rgba(238, 249, 255, 0.96) 0%, rgba(231, 246, 255, 0.82) 24%, rgba(218, 239, 253, 0.36) 44%, rgba(255, 255, 255, 0) 68%),
                radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.88), transparent 18%),
                linear-gradient(0deg, rgba(250, 253, 255, 0.34), rgba(250, 253, 255, 0) 32%);
            background-position:
                center,
                center,
                center;
            background-size:
                auto,
                auto,
                auto;
            background-repeat: no-repeat;
            pointer-events: none;
        }
#welcome .navbar {
            position: relative;
            z-index: 5;
            width: min(90rem, calc(100% - 2.75rem));
            margin: clamp(0.75rem, 3.2vh, 2rem) auto 0;
            padding: clamp(0.6rem, 1.15vh, 0.9rem) 1rem clamp(0.6rem, 1.15vh, 0.9rem) 1.35rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.68);
            border-radius: 999px;
            background: transparent;
            box-shadow: 0 1.5rem 4rem rgba(26, 86, 155, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(22px);
            -webkit-backdrop-filter: blur(22px);
            animation: dropIn 740ms cubic-bezier(.2, .75, .25, 1) both;
        }
#welcome .brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            min-width: max-content;
        }
#welcome .brand-mark {
            position: relative;
            width: clamp(2.65rem, 5.2vh, 3rem);
            height: clamp(2.65rem, 5.2vh, 3rem);
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--white);
            background: linear-gradient(145deg, #1d72df, #073c9f);
            box-shadow: 0 0.8rem 1.8rem rgba(11, 64, 159, 0.28);
            font-weight: 900;
            font-size: clamp(1.35rem, 2.8vh, 1.65rem);
            line-height: 1;
        }
#welcome .brand-logo {
            max-height: 4rem;
            width: auto;
            object-fit: contain;
            
        }
#welcome .brand-mark::after {
            content: "";
            position: absolute;
            right: 0.55rem;
            bottom: 0.55rem;
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.72);
        }
#welcome .brand-copy {
            display: grid;
            line-height: 1;
        }
#welcome .brand-name {
            font-family: "Playfair Display", Georgia, serif;
            font-size: clamp(1.35rem, 3.1vh, 1.7rem);
            font-weight: 800;
            color: var(--brand-deep);
        }
#welcome .brand-sub {
            margin-top: 0.22rem;
            font-size: 0.67rem;
            font-weight: 800;
            letter-spacing: 0.28em;
            color: var(--ink-soft);
            text-transform: uppercase;
        }
#welcome .nav-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(0.15rem, 1.5vw, 1.5rem);
            font-size: 0.95rem;
            font-weight: 600;
            color: rgba(9, 45, 92, 0.88);
        }
#welcome .nav-links a {
            position: relative;
            padding: 0.8rem 0.65rem;
            white-space: nowrap;
            transition: color 180ms ease, transform 180ms ease;
        }
#welcome .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0.2rem;
            width: 0;
            height: 2px;
            background: var(--brand);
            transition: width 0.3s ease;
        }
#welcome .nav-links a:hover,
#welcome .nav-links a:focus-visible {
            color: var(--brand);
            transform: translateY(-1px);
        }
#welcome .nav-links a:hover::after,
#welcome .nav-links a:focus-visible::after {
            width: 100%;
        }
#welcome .nav-links a.active::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0.25rem;
            width: 0.38rem;
            height: 0.38rem;
            border-radius: 50%;
            background: var(--brand);
            transform: translateX(-50%);
        }
#welcome .nav-actions {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            min-width: max-content;
        }
#welcome .delivery-service {
            --delivery-blue: #2563eb;
            --delivery-navy: #0f172a;
            --delivery-glow: rgba(37, 99, 235, 0.25);
            --line-speed: 2.15s;
            --truck-shift: 0px;
            position: relative;
            isolation: isolate;
            display: inline-flex;
            align-items: center;
            gap: 0.68rem;
            min-height: 3rem;
            padding: 0.48rem 0.98rem 0.5rem 0.62rem;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 999px;
            color: var(--delivery-navy);
            background:
                linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.56)),
                rgba(255, 255, 255, 0.08);
            box-shadow:
                0 0.95rem 2.25rem rgba(15, 48, 92, 0.14),
                0 0 1.1rem rgba(37, 99, 235, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            overflow: hidden;
            transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
        }
#welcome .delivery-service::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            border-radius: inherit;
            background: linear-gradient(115deg, rgba(37, 99, 235, 0.14), rgba(255, 255, 255, 0) 44%);
            opacity: 0.85;
            pointer-events: none;
        }
#welcome .delivery-service:hover,
#welcome .delivery-service:focus-within {
            --line-speed: 1.05s;
            --truck-shift: 5px;
            transform: translateY(-1px);
            border-color: rgba(37, 99, 235, 0.24);
            box-shadow:
                0 1rem 2.4rem rgba(37, 99, 235, 0.16),
                inset 0 1px 0 rgba(255, 255, 255, 0.88);
        }
#welcome .truck-wrapper {
            position: relative;
            width: 2.22rem;
            height: 2.22rem;
            flex: 0 0 auto;
            display: grid;
            place-items: center;
            border-radius: 50%;
            color: var(--delivery-blue);
            background: rgba(255, 255, 255, 0.72);
            box-shadow:
                0 0 0 0.42rem rgba(37, 99, 235, 0.06),
                0 0.55rem 1.25rem rgba(37, 99, 235, 0.34),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            animation: deliveryFloat 2.5s ease-in-out infinite;
        }
#welcome .truck-wrapper::after {
            content: "";
            position: absolute;
            inset: -0.28rem;
            border: 1px solid rgba(37, 99, 235, 0.42);
            border-radius: inherit;
            opacity: 0;
            animation: deliveryPulse 4.25s ease-out infinite;
        }
#welcome .truck-wrapper svg {
            width: 1.38rem;
            height: 1.38rem;
            filter: drop-shadow(0 0.22rem 0.36rem rgba(37, 99, 235, 0.24));
        }
#welcome .service-content {
            display: grid;
            gap: 0.28rem;
            min-width: 10.6rem;
            line-height: 1;
        }
#welcome .service-content span {
            display: inline-flex;
            align-items: center;
            gap: 0.28rem;
            color: #0b1f3a;
            font-size: 0.94rem;
            font-weight: 800;
            letter-spacing: 0;
            white-space: nowrap;
        }
#welcome .service-content .service-label-compact {
            display: none;
        }
#welcome .service-prefix {
            color: var(--delivery-blue);
        }
#welcome .delivery-line {
            position: relative;
            width: 100%;
            height: 0.2rem;
            border-radius: 999px;
            background:
                linear-gradient(90deg, rgba(37, 99, 235, 0.18), rgba(37, 99, 235, 0.95), rgba(96, 165, 250, 0.2));
            background-size: 220% 100%;
            box-shadow: 0 0.45rem 0.9rem rgba(37, 99, 235, 0.16);
            animation: deliveryLineFlow var(--line-speed) linear infinite;
        }
#welcome .delivery-line::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: inherit;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0));
            transform: translateX(-70%);
            animation: deliverySpark var(--line-speed) linear infinite;
        }
#welcome .delivery-line::after {
            content: "";
            position: absolute;
            top: 50%;
            right: -0.03rem;
            width: 0.42rem;
            height: 0.42rem;
            border-top: 2px solid var(--delivery-blue);
            border-right: 2px solid var(--delivery-blue);
            transform: translateY(-50%) rotate(45deg);
            filter: drop-shadow(0 0 0.35rem rgba(37, 99, 235, 0.4));
        }
#welcome .icon-btn {
            position: relative;
            width: 3rem;
            height: 3rem;
            display: grid;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, 0.78);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.34);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
            transition: transform 180ms ease, background 180ms ease;
        }
#welcome .icon-btn:hover,
#welcome .icon-btn:focus-visible {
            background: rgba(255, 255, 255, 0.66);
            transform: translateY(-1px);
        }
#welcome .icon-btn svg {
            width: 1.15rem;
            height: 1.15rem;
            stroke: var(--brand-deep);
        }
#welcome .cart-count {
            position: absolute;
            top: 0.1rem;
            right: 0.08rem;
            width: 1.25rem;
            height: 1.25rem;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: var(--brand-deep);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 800;
        }
#welcome .order-btn,
#welcome .primary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.78rem;
            border-radius: 999px;
            color: var(--white);
            background: linear-gradient(135deg, #1c70db, #083da4);
            box-shadow: 0 1rem 2rem rgba(10, 69, 164, 0.28);
            font-weight: 800;
            white-space: nowrap;
            transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
        }
#welcome .order-btn {
            min-height: 3rem;
            padding: 0 1.45rem;
            font-size: 0.95rem;
        }
#welcome .primary-btn {
            width: fit-content;
            min-height: clamp(3rem, 6.1vh, 3.35rem);
            padding: 0 1rem 0 1.55rem;
            font-size: clamp(0.9rem, 1.9vh, 1rem);
        }
#welcome .order-btn:hover,
#welcome .order-btn:focus-visible,
#welcome .primary-btn:hover,
#welcome .primary-btn:focus-visible {
            filter: saturate(1.07);
            transform: translateY(-2px);
            box-shadow: 0 1.25rem 2.7rem rgba(10, 69, 164, 0.36);
        }
#welcome .arrow-circle {
            width: 2.2rem;
            height: 2.2rem;
            display: grid;
            place-items: center;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.17);
        }
#welcome .order-btn svg,
#welcome .primary-btn svg {
            width: 1.05rem;
            height: 1.05rem;
            stroke: currentColor;
            stroke-width: 2.4;
        }
#welcome .hero-content {
            position: relative;
            z-index: 4;
            width: min(90rem, calc(100% - 2.75rem));
            height: calc(100svh - clamp(5.5rem, 11.5vh, 7.8rem));
            margin: clamp(5.5rem, 11.5vh, 7.8rem) auto 0;
            display: grid;
            align-items: center;
            padding: clamp(0.65rem, 2.2vh, 1.5rem) 0 clamp(0.65rem, 2.2vh, 1.5rem);
        }
#welcome .hero-panel {
            width: min(30rem, 100%);
            animation: riseIn 820ms cubic-bezier(.2, .75, .25, 1) 160ms both;
        }
#welcome .eyebrow {
            width: fit-content;
            display: inline-flex;
            align-items: center;
            gap: 0.65rem;
            min-height: clamp(2rem, 4.2vh, 2.35rem);
            padding: 0 0.95rem;
            border: 1px solid rgba(20, 86, 191, 0.26);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.74);
            box-shadow: 0 0.75rem 2rem rgba(40, 101, 166, 0.1);
            color: var(--brand-deep);
            font-size: clamp(0.68rem, 1.55vh, 0.78rem);
            font-weight: 900;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
#welcome .leaf-mark {
            width: 1.1rem;
            height: 1.1rem;
            display: inline-grid;
            place-items: center;
            border-radius: 50%;
            color: var(--green);
            background: rgba(33, 127, 84, 0.12);
        }
#welcome .headline {
            margin-top: clamp(0.7rem, 1.9vh, 1.05rem);
            font-family: "Playfair Display", Georgia, serif;
            font-size: clamp(3.35rem, 6.25vw, 6.15rem);
            line-height: 0.88;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: 0;
            text-wrap: balance;
        }
#welcome .headline span {
            display: block;
        }
#welcome .headline .script {
            margin-top: -0.38rem;
            font-family: "Great Vibes", cursive;
            font-size: 1.05em;
            font-weight: 400;
            line-height: 0.82;
            color: #2b72e4;
            text-shadow: 0 0.25rem 0.8rem rgba(255, 255, 255, 0.48);
        }
#welcome .intro {
            max-width: 25rem;
            margin-top: clamp(0.8rem, 2vh, 1.25rem);
            color: #183d66;
            font-size: clamp(0.92rem, 2vh, 1.03rem);
            line-height: 1.48;
            font-weight: 500;
        }
#welcome .hero-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: clamp(0.95rem, 2.4vh, 1.55rem);
            flex-wrap: wrap;
        }
#welcome .secondary-note {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            min-height: clamp(2.85rem, 5.6vh, 3.15rem);
            padding: 0 1rem;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.52);
            border: 1px solid rgba(255, 255, 255, 0.64);
            color: #173d65;
            font-size: 0.9rem;
            font-weight: 800;
            box-shadow: 0 0.85rem 2.2rem rgba(34, 91, 150, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
#welcome .note-dot {
            width: 0.7rem;
            height: 0.7rem;
            border-radius: 50%;
            background: #20a163;
            box-shadow: 0 0 0 0.38rem rgba(32, 161, 99, 0.12);
        }
#welcome .trust-row {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: clamp(0.55rem, 1vw, 0.9rem);
            width: min(26.5rem, 100%);
            margin-top: clamp(1rem, 2.7vh, 1.75rem);
        }
#welcome .trust-item {
            min-height: clamp(4.8rem, 10.5vh, 5.55rem);
            display: grid;
            align-content: center;
            justify-items: center;
            gap: 0.42rem;
            padding: 0.62rem 0.4rem;
            border: 1px solid rgba(255, 255, 255, 0.72);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.54);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 0.8rem 2rem rgba(33, 88, 146, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
#welcome .trust-icon {
            width: clamp(1.9rem, 4.1vh, 2.25rem);
            height: clamp(1.9rem, 4.1vh, 2.25rem);
            display: grid;
            place-items: center;
            border: 1px solid rgba(21, 86, 191, 0.2);
            border-radius: 50%;
            color: var(--brand-deep);
            background: rgba(255, 255, 255, 0.68);
        }
#welcome .trust-icon svg {
            width: 1.15rem;
            height: 1.15rem;
            stroke: currentColor;
        }
#welcome .trust-label {
            color: #17395e;
            font-size: clamp(0.68rem, 1.55vh, 0.76rem);
            font-weight: 800;
            line-height: 1.2;
            text-align: center;
        }
#welcome .floating-light {
            position: absolute;
            z-index: 3;
            width: var(--size);
            height: var(--size);
            left: var(--x);
            top: var(--y);
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.74);
            background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.23) 58%, rgba(255, 255, 255, 0));
            box-shadow: inset 0 0 1rem rgba(255, 255, 255, 0.4);
            animation: float var(--time) ease-in-out infinite;
            opacity: 0.7;
            pointer-events: none;
        }
@keyframes dropIn {
            from {
                opacity: 0;
                transform: translateY(-1rem);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
@keyframes riseIn {
            from {
                opacity: 0;
                transform: translateY(1.4rem);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
@keyframes float {

            0%,
            100% {
                transform: translate3d(0, 0, 0);
            }

            50% {
                transform: translate3d(0.35rem, -1.15rem, 0);
            }
        }
@keyframes deliveryFloat {

            0%,
            100% {
                transform: translate3d(var(--truck-shift), 0, 0);
            }

            50% {
                transform: translate3d(var(--truck-shift), -2px, 0);
            }
        }
@keyframes deliveryPulse {
            0%,
            58% {
                opacity: 0;
                transform: scale(0.82);
            }

            66% {
                opacity: 0.55;
                transform: scale(0.92);
            }

            100% {
                opacity: 0;
                transform: scale(1.45);
            }
        }
@keyframes deliveryLineFlow {
            from {
                background-position: 100% 50%;
            }

            to {
                background-position: 0% 50%;
            }
        }
@keyframes deliverySpark {
            from {
                transform: translateX(-90%);
            }

            to {
                transform: translateX(140%);
            }
        }
@media (prefers-reduced-motion: reduce) {
#welcome .delivery-service,
#welcome .truck-wrapper,
#welcome .truck-wrapper::after,
#welcome .delivery-line,
#welcome .delivery-line::before {
                animation: none;
                transition: none;
            }
}
@media (max-width: 1100px) {
#welcome .navbar {
                width: min(100% - 2rem, 76rem);
                margin-top: 1rem;
            }
#welcome .nav-links {
                display: none;
            }
#welcome .hero {
                --scene-size: auto 72%;
                --scene-position: center bottom;
            }
#welcome .hero-content {
                width: min(100% - 2rem, 76rem);
            }
}
@media (max-aspect-ratio: 2 / 1) {
#welcome .scene-fit {
                -webkit-mask-image: linear-gradient(to bottom, transparent 0 34%, rgba(0, 0, 0, 0.55) 41%, #000 49%);
                mask-image: linear-gradient(to bottom, transparent 0 34%, rgba(0, 0, 0, 0.55) 41%, #000 49%);
            }
}
@media (max-width: 760px) {
#welcome {
                overflow: hidden;
            }
#welcome .hero {
                height: 100svh;
                --scene-size: auto 58%;
                --scene-position: center bottom;
            }
#welcome .hero::after {
                background-image:
                    linear-gradient(180deg, rgba(235, 248, 255, 0.98) 0%, rgba(232, 246, 255, 0.9) 42%, rgba(226, 243, 255, 0.56) 76%, rgba(255, 255, 255, 0.1) 100%),
                    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.88), transparent 18%),
                    linear-gradient(0deg, rgba(250, 253, 255, 0.34), rgba(250, 253, 255, 0) 32%);
            }
#welcome .navbar {
                border-radius: 1.35rem;
                align-items: center;
                padding: 0.85rem;
            }
#welcome .brand-mark {
                width: 2.6rem;
                height: 2.6rem;
                font-size: 1.35rem;
            }
#welcome .brand-name {
                font-size: 1.35rem;
            }
#welcome .brand-sub {
                font-size: 0.56rem;
            }
#welcome .icon-btn {
                display: none;
            }
#welcome .order-btn {
                min-height: 2.7rem;
                width: 2.7rem;
                padding: 0;
                font-size: 0.86rem;
            }
#welcome .delivery-service {
                min-height: 2.8rem;
                padding: 0.42rem 0.78rem 0.45rem 0.5rem;
                gap: 0.55rem;
            }
#welcome .truck-wrapper {
                width: 2rem;
                height: 2rem;
            }
#welcome .truck-wrapper svg {
                width: 1.24rem;
                height: 1.24rem;
            }
#welcome .service-content {
                min-width: 9.4rem;
            }
#welcome .service-content span {
                font-size: 0.84rem;
            }
#welcome .order-btn span {
                display: none;
            }
#welcome .hero-content {
                align-items: start;
                height: calc(100svh - 5.7rem);
                padding-top: clamp(0.65rem, 2vh, 1rem);
            }
#welcome .hero-panel {
                width: min(31rem, 100%);
            }
#welcome .headline {
                font-size: clamp(2.9rem, 14.5vw, 4.7rem);
            }
#welcome .intro {
                max-width: 23rem;
                font-size: 1rem;
            }
#welcome .hero-actions {
                display: grid;
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                gap: 0.6rem;
                width: min(26rem, 100%);
            }
#welcome .primary-btn,
#welcome .secondary-note {
                width: 100%;
                min-width: 0;
                padding-inline: 0.8rem;
                font-size: 0.84rem;
            }
#welcome .primary-btn {
                justify-content: space-between;
            }
#welcome .secondary-note {
                justify-content: center;
            }
#welcome .trust-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                width: min(19rem, 100%);
                margin-top: 1rem;
            }
#welcome .trust-item {
                min-height: 3.75rem;
                border-radius: 1.2rem;
                grid-template-columns: auto 1fr;
                justify-items: start;
                align-content: center;
                text-align: left;
                padding: 0.75rem;
            }
#welcome .trust-label {
                text-align: left;
            }
}
@media (max-width: 560px) {
#welcome .nav-actions {
                gap: 0;
                margin-right: 2.15rem;
            }
#welcome .delivery-service {
                max-width: 9.4rem;
                padding-right: 0.68rem;
            }
#welcome .service-content {
                min-width: 5.5rem;
            }
#welcome .service-content span {
                gap: 0.2rem;
                font-size: 0.76rem;
            }
#welcome .service-content .service-label-full {
                display: none;
            }
#welcome .service-content .service-label-compact {
                display: inline-flex;
            }
}
@media (max-width: 480px) {
#welcome .navbar,
#welcome .hero-content {
                width: calc(100% - 1rem);
            }
#welcome .brand-copy {
                display: none;
            }
#welcome .headline {
                font-size: clamp(2.45rem, 13vw, 3.6rem);
            }
#welcome .eyebrow {
                max-width: 100%;
                font-size: 0.7rem;
            }
#welcome .hero-actions {
                align-items: stretch;
                flex-direction: column;
                width: min(20rem, 100%);
            }
#welcome .primary-btn,
#welcome .secondary-note {
                width: 100%;
            }
}


/* About Process */
#about-process {
  --chello-blue: #0c62ad;
  --chello-deep: #071a33;
  --chello-green: #21864b;
  --chello-mint: #eaf7ee;
  --chello-sky: #e9f7ff;
  --chello-amber: #f2a20c;
  --chello-violet: #805ad5;
  --chello-line: rgba(12, 98, 173, 0.16);
  --chello-shadow: 0 1.6rem 4rem rgba(10, 53, 101, 0.14);
  --chello-soft-shadow: 0 1rem 2.4rem rgba(10, 53, 101, 0.1);
  --chello-ease: cubic-bezier(0.2, 1, 0.3, 1);
  background: #ffffff;
}

#about-process,
#about-process *,
#about-process *::before,
#about-process *::after {
  box-sizing: border-box;
}

#about-process .chello-section-outer {
  position: relative;
  min-height: 100vh;
  padding: clamp(5.3rem, 6.2vw, 6.8rem) clamp(1rem, 2.4vw, 2.2rem) clamp(3.4rem, 4.6vw, 5rem);
  overflow: hidden;
  display: flex;
  justify-content: center;
  font-family: "Poppins", "Outfit", "Inter", Arial, sans-serif;
  text-rendering: geometricPrecision;
  color: var(--chello-deep);
  background:
    linear-gradient(115deg, rgba(249, 253, 255, 0.98) 0%, #ffffff 46%, rgba(238, 248, 242, 0.96) 100%),
    #ffffff;
}

#about-process .chello-section-outer::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: min(50rem, 58vw);
  aspect-ratio: 1;
  border: 1px solid rgba(33, 134, 75, 0.26);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 2.4rem rgba(232, 247, 255, 0.62),
    inset 0 0 0 2.55rem rgba(33, 134, 75, 0.1);
  pointer-events: none;
}

#about-process .chello-section-outer::after {
  content: "";
  position: absolute;
  inset: auto -5rem 0 -5rem;
  height: 10rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 72%);
  pointer-events: none;
}

#about-process svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#about-process .chello-container[aria-hidden="true"] {
  display: none;
}

#about-process .chello-journey-shell {
  position: relative;
  z-index: 1;
  width: min(102rem, calc(100vw - 3rem));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(30rem, 0.98fr);
  grid-template-areas:
    "copy visual"
    "board visual";
  gap: clamp(1.2rem, 2.1vw, 2.65rem);
  align-items: start;
}

#about-process .chello-journey-copy {
  grid-area: copy;
  max-width: 47rem;
  opacity: 0;
  transform: translate3d(-3.5rem, 0, 0);
  /* filter:blur removed — compositor-only opacity+transform is sufficient and avoids scroll jank */
  transition: opacity 900ms var(--chello-ease), transform 900ms var(--chello-ease);
}

#about-process .chello-section-outer.is-visible .chello-journey-copy {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#about-process .chello-pre-title {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin-bottom: 1rem;
  color: var(--chello-green);
  font-size: clamp(0.86rem, 0.78vw, 0.94rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

#about-process .chello-pre-title svg {
  width: 1.45rem;
  height: 1.45rem;
  padding: 0.25rem;
  border-radius: 50%;
  color: var(--chello-green);
  background: rgba(33, 134, 75, 0.1);
}

#about-process .chello-main-title {
  max-width: 36rem;
  margin: 0;
  color: var(--chello-deep);
  font-size: clamp(3rem, 4.55vw, 4.85rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

#about-process .chello-main-title span {
  color: var(--chello-blue);
}

#about-process .chello-accent-line {
  width: 4.6rem;
  height: 0.18rem;
  margin: 1rem 0 0.92rem;
  border-radius: 999px;
  background: var(--chello-green);
}

#about-process .chello-story-text {
  max-width: 43rem;
  margin: 0;
  color: #4b5d73;
  font-size: clamp(1.05rem, 1.08vw, 1.16rem);
  font-weight: 500;
  line-height: 1.58;
}

#about-process .chello-proof-grid {
  width: min(47rem, 100%);
  margin-top: clamp(1.05rem, 1.55vw, 1.45rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 98, 173, 0.11);
  border-radius: 8px;
  box-shadow: var(--chello-soft-shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#about-process .chello-proof-item {
  position: relative;
  min-height: 5.25rem;
  padding: 0.82rem 0.82rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.72rem;
  align-items: center;
}

#about-process .chello-proof-item + .chello-proof-item {
  border-left: 1px solid rgba(12, 98, 173, 0.12);
}

#about-process .chello-proof-icon {
  grid-row: 1 / span 2;
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(12, 98, 173, 0.08);
  color: var(--chello-blue);
}

#about-process .chello-proof-icon.green {
  color: var(--chello-green);
  background: rgba(33, 134, 75, 0.11);
}

#about-process .chello-proof-icon.amber {
  color: var(--chello-amber);
  background: rgba(242, 162, 12, 0.12);
}

#about-process .chello-proof-icon.navy {
  color: #1e66c8;
  background: rgba(30, 102, 200, 0.11);
}

#about-process .chello-proof-icon svg {
  width: 1.38rem;
  height: 1.38rem;
}

#about-process .chello-proof-item strong {
  color: var(--chello-blue);
  font-size: clamp(1.04rem, 1.16vw, 1.2rem);
  font-weight: 850;
  line-height: 1.1;
}

#about-process .chello-proof-item span:last-child {
  color: #4d6075;
  font-size: clamp(0.72rem, 0.68vw, 0.78rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

#about-process .chello-visual-column {
  grid-area: visual;
  justify-self: stretch;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translate3d(3.5rem, 0, 0);
  filter: blur(12px);
  transition: opacity 900ms var(--chello-ease) 120ms, transform 900ms var(--chello-ease) 120ms, filter 900ms var(--chello-ease) 120ms;
}

#about-process .chello-section-outer.is-visible .chello-visual-column {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

#about-process .chello-hero-panel {
  position: relative;
  aspect-ratio: 1386 / 1135;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

#about-process .chello-hero-panel::before {
  display: none;
}

#about-process .chello-hero-panel::after {
  display: none;
}

#about-process .chello-hero-ring {
  position: absolute;
  z-index: 4;
  top: -1.55rem;
  right: -1rem;
  width: 82%;
  aspect-ratio: 1;
  border: 2px solid rgba(33, 134, 75, 0.64);
  border-radius: 50%;
  opacity: 0.78;
  pointer-events: none;
}

#about-process .chello-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  filter: drop-shadow(0 1.5rem 2.4rem rgba(10, 53, 101, 0.16));
  transform: scale(1);
}

#about-process .chello-hero-badge {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 0.74rem 0.9rem 0.74rem 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  color: #103562;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  box-shadow: 0 0.9rem 1.8rem rgba(7, 26, 51, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#about-process .chello-badge-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

#about-process .chello-badge-copy span {
  color: #4f6276;
  font-size: clamp(0.88rem, 0.8vw, 0.96rem);
  font-weight: 700;
  line-height: 1.15;
}

#about-process .chello-badge-copy strong {
  width: max-content;
  max-width: 100%;
  color: var(--chello-blue);
  font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  font-weight: 850;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: left;
  background: linear-gradient(90deg, var(--chello-blue), #21864b, var(--chello-blue));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: chelloBadgeTextGlow 4.2s ease-in-out infinite;
}

#about-process .chello-badge-route {
  width: clamp(5.7rem, 8vw, 8.4rem);
  display: grid;
  grid-template-columns: auto minmax(1.8rem, 1fr) auto;
  align-items: center;
  gap: 0.38rem;
  color: var(--chello-blue);
}

#about-process .chello-badge-route .route-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--chello-green);
  box-shadow: 0 0 0 0.28rem rgba(33, 134, 75, 0.1);
  animation: chelloBadgePulse 2.6s ease-in-out infinite;
}

#about-process .chello-badge-route .route-line {
  position: relative;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(12, 98, 173, 0.22);
}

#about-process .chello-badge-route .route-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(12, 98, 173, 0), var(--chello-blue));
  animation: chelloBadgeRoute 2.2s ease-in-out infinite;
}

#about-process .chello-badge-route svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke-width: 1.9;
  filter: drop-shadow(0 0.35rem 0.75rem rgba(12, 98, 173, 0.18));
  animation: chelloBadgeTruck 2.2s ease-in-out infinite;
}

@keyframes chelloBadgeTextGlow {
  0%, 100% {
    background-position: 0% 50%;
    transform: translateY(0);
  }
  50% {
    background-position: 100% 50%;
    transform: translateY(-1px);
  }
}

@keyframes chelloBadgePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes chelloBadgeRoute {
  0% {
    transform: translateX(-115%);
  }
  100% {
    transform: translateX(230%);
  }
}

@keyframes chelloBadgeTruck {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0.2rem);
  }
}

#about-process .chello-benefit-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(33, 134, 75, 0.18);
  border-radius: 8px;
  box-shadow: var(--chello-soft-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#about-process .chello-benefit-bar div {
  min-height: 6.35rem;
  padding: 0.8rem 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.32rem;
  text-align: center;
}

#about-process .chello-benefit-bar div + div {
  border-left: 1px solid rgba(12, 98, 173, 0.12);
}

#about-process .chello-benefit-bar svg {
  width: 2.15rem;
  height: 2.15rem;
  padding: 0.32rem;
  border-radius: 50%;
  color: var(--chello-green);
  background: rgba(33, 134, 75, 0.09);
  box-shadow: inset 0 0 0 1px rgba(33, 134, 75, 0.08);
}

#about-process .chello-benefit-bar strong {
  color: var(--chello-green);
  font-size: clamp(0.84rem, 0.78vw, 0.92rem);
  font-weight: 800;
  line-height: 1.12;
}

#about-process .chello-benefit-bar span {
  color: #516173;
  font-size: clamp(0.72rem, 0.68vw, 0.78rem);
  font-weight: 500;
  line-height: 1.22;
}

#about-process .chello-process-board {
  --step-row: clamp(4.85rem, 5.35vw, 5.85rem);
  grid-area: board;
  display: grid;
  grid-template-columns: minmax(13.5rem, 18.2rem) minmax(0, 1fr);
  gap: clamp(0.9rem, 1.35vw, 1.25rem);
  align-items: stretch;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
  filter: blur(10px);
  transition: opacity 900ms var(--chello-ease) 220ms, transform 900ms var(--chello-ease) 220ms, filter 900ms var(--chello-ease) 220ms;
}

#about-process .chello-section-outer.is-visible .chello-process-board {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

#about-process .chello-step-images,
#about-process .chello-step-list {
  display: grid;
  grid-template-rows: repeat(6, var(--step-row));
  gap: 0.58rem;
}

#about-process .chello-step-images img {
  width: 100%;
  height: var(--step-row);
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 0.9rem 1.5rem rgba(7, 26, 51, 0.12);
  opacity: 0;
  transform: translate3d(-1.2rem, 0, 0) scale(0.98);
  transition: opacity 720ms var(--chello-ease), transform 720ms var(--chello-ease);
}

#about-process .chello-section-outer.is-visible .chello-step-images img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

#about-process .chello-step-list {
  position: relative;
}

#about-process .chello-step-list::before {
  content: "";
  position: absolute;
  top: calc(var(--step-row) / 2);
  bottom: calc(var(--step-row) / 2);
  left: 1.38rem;
  width: 2px;
  background: linear-gradient(180deg, var(--chello-green), var(--chello-blue), var(--chello-amber), var(--chello-violet), var(--chello-green), var(--chello-blue));
  opacity: 0.42;
}

#about-process .chello-step-card {
  position: relative;
  min-width: 0;
  min-height: var(--step-row);
  padding: 0.66rem 0.85rem 0.66rem 3.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(12, 98, 173, 0.1);
  border-radius: 8px;
  box-shadow: var(--chello-soft-shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(1.2rem, 0, 0);
  transition: opacity 720ms var(--chello-ease), transform 720ms var(--chello-ease), border-color 240ms ease, box-shadow 240ms ease;
}

#about-process .chello-step-card:hover {
  border-color: rgba(12, 98, 173, 0.24);
  box-shadow: 0 1rem 2.2rem rgba(10, 53, 101, 0.13);
}

#about-process .chello-section-outer.is-visible .chello-step-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

#about-process .chello-section-outer.is-visible .chello-step-images img:nth-child(1),
#about-process .chello-section-outer.is-visible .chello-step-card:nth-child(1) {
  transition-delay: 260ms;
}

#about-process .chello-section-outer.is-visible .chello-step-images img:nth-child(2),
#about-process .chello-section-outer.is-visible .chello-step-card:nth-child(2) {
  transition-delay: 340ms;
}

#about-process .chello-section-outer.is-visible .chello-step-images img:nth-child(3),
#about-process .chello-section-outer.is-visible .chello-step-card:nth-child(3) {
  transition-delay: 420ms;
}

#about-process .chello-section-outer.is-visible .chello-step-images img:nth-child(4),
#about-process .chello-section-outer.is-visible .chello-step-card:nth-child(4) {
  transition-delay: 500ms;
}

#about-process .chello-section-outer.is-visible .chello-step-images img:nth-child(5),
#about-process .chello-section-outer.is-visible .chello-step-card:nth-child(5) {
  transition-delay: 580ms;
}

#about-process .chello-section-outer.is-visible .chello-step-images img:nth-child(6),
#about-process .chello-section-outer.is-visible .chello-step-card:nth-child(6) {
  transition-delay: 660ms;
}

#about-process .chello-step-no {
  position: absolute;
  left: 0.65rem;
  top: 50%;
  z-index: 1;
  width: 1.95rem;
  height: 1.95rem;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--step-color, var(--chello-blue));
  border-radius: 8px;
  box-shadow: 0 0.55rem 1rem rgba(7, 26, 51, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
  transform: translateY(-50%);
}

#about-process .chello-step-card.green {
  --step-color: var(--chello-green);
}

#about-process .chello-step-card.blue {
  --step-color: var(--chello-blue);
}

#about-process .chello-step-card.amber {
  --step-color: var(--chello-amber);
}

#about-process .chello-step-card.violet {
  --step-color: var(--chello-violet);
}

#about-process .chello-step-card h3 {
  margin: 0 0 0.16rem;
  color: var(--step-color, var(--chello-blue));
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  font-weight: 850;
  line-height: 1.12;
}

#about-process .chello-step-card p {
  margin: 0;
  color: #506276;
  font-size: clamp(0.8rem, 0.78vw, 0.9rem);
  font-weight: 500;
  line-height: 1.28;
}

#about-process .chello-card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--step-color, var(--chello-blue));
  background: color-mix(in srgb, var(--step-color, var(--chello-blue)) 11%, white);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--step-color, var(--chello-blue)) 10%, white),
    0 0.5rem 1.2rem rgba(7, 26, 51, 0.06);
}

#about-process .chello-card-icon svg {
  width: 1.65rem;
  height: 1.65rem;
}

@supports not (background: color-mix(in srgb, #000 10%, white)) {
  #about-process .chello-card-icon {
    background: rgba(12, 98, 173, 0.09);
  }
}

@media (min-width: 1500px) and (max-height: 980px) {
  #about-process .chello-section-outer {
    min-height: 100vh;
    padding: 2.25rem clamp(1rem, 2vw, 2rem) 2rem;
  }

  #about-process .chello-journey-shell {
    width: min(100rem, calc(100vw - 4rem));
    grid-template-columns: minmax(0, 1.02fr) minmax(27.5rem, 0.98fr);
    gap: clamp(1rem, 1.55vw, 2rem);
  }

  #about-process .chello-pre-title {
    margin-bottom: 0.62rem;
    font-size: 0.82rem;
  }

  #about-process .chello-main-title {
    max-width: none;
    font-size: clamp(3rem, 3.4vw, 3.85rem);
    line-height: 0.96;
  }

  #about-process .chello-accent-line {
    margin: 0.78rem 0 0.72rem;
  }

  #about-process .chello-story-text {
    max-width: 43rem;
    font-size: 1.05rem;
    line-height: 1.45;
  }

  #about-process .chello-proof-grid {
    margin-top: 0.95rem;
  }

  #about-process .chello-proof-item {
    min-height: 4.45rem;
    padding: 0.58rem 0.68rem;
  }

  #about-process .chello-proof-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  #about-process .chello-proof-icon svg {
    width: 1.18rem;
    height: 1.18rem;
  }

  #about-process .chello-proof-item strong {
    font-size: 1.06rem;
  }

  #about-process .chello-proof-item span:last-child {
    font-size: 0.72rem;
  }

  #about-process .chello-visual-column {
    width: 100%;
    gap: 0.72rem;
  }

  #about-process .chello-hero-panel {
    aspect-ratio: 1386 / 1135;
    height: auto;
    padding: 0;
  }

  #about-process .chello-hero-badge {
    padding: 0.62rem 0.82rem;
  }

  #about-process .chello-badge-copy span {
    font-size: 0.84rem;
  }

  #about-process .chello-badge-copy strong {
    font-size: 1.04rem;
  }

  #about-process .chello-badge-route {
    width: 5.2rem;
  }

  #about-process .chello-badge-route svg {
    width: 1.32rem;
    height: 1.32rem;
  }

  #about-process .chello-benefit-bar div {
    min-height: 5.2rem;
    padding: 0.62rem 0.5rem;
  }

  #about-process .chello-benefit-bar svg {
    width: 1.85rem;
    height: 1.85rem;
    padding: 0.3rem;
  }

  #about-process .chello-benefit-bar strong {
    font-size: 0.82rem;
  }

  #about-process .chello-benefit-bar span {
    font-size: 0.72rem;
  }

  #about-process .chello-process-board {
    --step-row: clamp(4.25rem, 4.25vw, 4.85rem);
    gap: 0.86rem;
  }

  #about-process .chello-step-images,
  #about-process .chello-step-list {
    gap: 0.45rem;
  }

  #about-process .chello-step-card {
    padding: 0.5rem 0.68rem 0.5rem 3.35rem;
  }

  #about-process .chello-step-no {
    width: 1.7rem;
    height: 1.7rem;
    font-size: 0.68rem;
  }

  #about-process .chello-step-card h3 {
    font-size: 0.96rem;
  }

  #about-process .chello-step-card p {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  #about-process .chello-card-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  #about-process .chello-card-icon svg {
    width: 1.28rem;
    height: 1.28rem;
  }
}

@media (max-width: 1220px) {
  #about-process .chello-journey-shell {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "board";
  }

  #about-process .chello-journey-copy {
    max-width: 58rem;
  }

  #about-process .chello-main-title,
  #about-process .chello-story-text,
  #about-process .chello-proof-grid {
    max-width: 58rem;
  }

  #about-process .chello-visual-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  #about-process .chello-hero-panel {
    aspect-ratio: 1386 / 1135;
    height: auto;
    min-height: 0;
  }

  #about-process .chello-process-board {
    --step-row: clamp(5.9rem, 9vw, 6.7rem);
  }
}

@media (max-width: 820px) {
  #about-process .chello-section-outer {
    padding: 6rem 1rem 4rem;
  }

  #about-process .chello-proof-grid,
  #about-process .chello-benefit-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #about-process .chello-proof-item:nth-child(3),
  #about-process .chello-benefit-bar div:nth-child(3) {
    border-left: 0;
  }

  #about-process .chello-proof-item:nth-child(n + 3),
  #about-process .chello-benefit-bar div:nth-child(n + 3) {
    border-top: 1px solid rgba(12, 98, 173, 0.12);
  }

  #about-process .chello-hero-panel {
    min-height: 0;
    border-radius: 8px;
  }

  #about-process .chello-process-board {
    --step-row: auto;
    grid-template-columns: 1fr;
  }

  #about-process .chello-step-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 0.7rem;
  }

  #about-process .chello-step-images img {
    height: auto;
    aspect-ratio: 3 / 2;
  }

  #about-process .chello-step-list {
    grid-template-rows: none;
  }

  #about-process .chello-step-list::before {
    display: none;
  }

  #about-process .chello-step-card {
    min-height: 0;
    padding: 1rem 0.95rem 1rem 4rem;
  }
}

@media (max-width: 560px) {
  #about-process .chello-main-title {
    font-size: clamp(2.25rem, 12vw, 3.2rem);
  }

  #about-process .chello-proof-grid,
  #about-process .chello-benefit-bar {
    grid-template-columns: 1fr;
  }

  #about-process .chello-proof-item + .chello-proof-item,
  #about-process .chello-benefit-bar div + div {
    border-left: 0;
    border-top: 1px solid rgba(12, 98, 173, 0.12);
  }

  #about-process .chello-hero-panel {
    min-height: 0;
  }

  #about-process .chello-hero-img {
    object-position: center;
  }

  #about-process .chello-hero-badge {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    align-items: flex-start;
    padding: 0.7rem 0.8rem;
  }

  #about-process .chello-badge-copy strong {
    font-size: 0.94rem;
    text-align: left;
  }

  #about-process .chello-badge-route {
    width: min(7rem, 100%);
  }

  #about-process .chello-step-images {
    grid-template-columns: 1fr;
  }

  #about-process .chello-step-card {
    grid-template-columns: 1fr;
    padding-right: 0.95rem;
  }

  #about-process .chello-card-icon {
    display: none;
  }
}


/* Products */
#products * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
#products {
            margin: 0;
            background: #070707;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            color: #fff;
        }
#products .ambient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            background: radial-gradient(circle at 30% 50%, rgba(241, 104, 58, 0.1), transparent 70%);
        }
#products .carousel {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
#products .carousel .list {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 10;
        }
#products .carousel .list .item {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.5s;
        }
#products .carousel .list .item.active {
            opacity: 1;
            visibility: visible;
            z-index: 20;
        }
#products .carousel .list .item .bg-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.7) contrast(1.08);
            transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            transform: scale(1.02);
        }
#products .carousel .list .item.active .bg-image {
            transform: scale(1);
        }
#products .carousel .list .item .dark-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
            z-index: 1;
        }
#products .carousel .list .item .content {
            position: absolute;
            top: 50%;
            left: 6%;
            transform: translateY(-50%);
            width: 45%;
            max-width: 620px;
            z-index: 25;
            text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateX(-70px) translateY(-50%);
            transition: opacity 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
#products .carousel .list .item.active .content {
            opacity: 1;
            transform: translateX(0) translateY(-50%);
            transition-delay: 0.2s;
        }
#products .content .greeting {
            font-size: 0.9rem;
            letter-spacing: 6px;
            text-transform: uppercase;
            font-weight: 400;
            color: #f1683a;
            margin-bottom: 1rem;
        }
#products .content .title-main {
            font-size: 3.8rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 0.5rem;
        }
#products .content .brand-name {
            font-size: 4.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ffffff 30%, #f5b792 80%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }
#products .content .description {
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 400;
            color: #f0f0f0;
            margin: 1.2rem 0 1.8rem 0;
            opacity: 0.92;
            max-width: 90%;
        }
#products .btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            background: #f1683a;
            border: none;
            padding: 12px 30px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 1px;
            color: #fff;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(241, 104, 58, 0.3);
        }
#products .btn-modern:hover {
            background: #ff7f4a;
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(241, 104, 58, 0.4);
        }
#products .thumbnail-wrapper {
            position: absolute;
            bottom: 30px;
            left: 0;
            right: 0;
            z-index: 45;
            display: flex;
            justify-content: center;
            pointer-events: none;
        }
#products .thumbnail-strip-container {
            width: 550px;
            max-width: 85vw;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            white-space: nowrap;
            pointer-events: auto;
            padding: 10px 0;
            scrollbar-width: thin;
            scrollbar-color: #f1683a rgba(255, 255, 255, 0.2);
            border-radius: 70px;
        }
#products .thumbnail-strip-container::-webkit-scrollbar {
            height: 4px;
        }
#products .thumbnail-strip-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }
#products .thumbnail-strip-container::-webkit-scrollbar-thumb {
            background: #f1683a;
            border-radius: 10px;
        }
#products .thumbnail-strip {
            display: inline-flex;
            gap: 16px;
            padding: 0 20px;
            align-items: center;
        }
#products .thumb-item {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2);
            border: 2px solid rgba(255, 255, 255, 0.3);
            flex-shrink: 0;
            opacity: 0.55;
            filter: grayscale(0.3);
            background: #1a1a1a;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
#products .thumb-item:hover {
            transform: scale(1.08);
            opacity: 0.85;
            border-color: #f1683a;
        }
#products .thumb-item.active-thumb {
            opacity: 1;
            border: 3px solid #f1683a;
            transform: scale(1.08);
            filter: grayscale(0);
            box-shadow: 0 0 0 4px rgba(241, 104, 58, 0.3), 0 10px 25px rgba(0, 0, 0, 0.3);
        }
#products .thumb-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
#products .nav-arrows {
            position: absolute;
            bottom: 45%;
            right: 3%;
            z-index: 50;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
#products .nav-arrows button {
            width: 52px;
            height: 52px;
            border-radius: 60px;
            background: rgba(20, 20, 20, 0.75);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            font-size: 1.6rem;
            font-weight: 300;
            cursor: pointer;
            transition: all 0.25s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
#products .nav-arrows button:hover {
            background: #f1683a;
            border-color: #f1683a;
            transform: scale(1.05);
        }
#products .progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, #f1683a, #ff9a62);
            width: 0%;
            z-index: 55;
            transition: width linear 0.02s;
            border-radius: 2px;
        }
@keyframes slideBgFromRight {
            0% {
                transform: translateX(100%) scale(0.96);
                opacity: 0;
            }

            100% {
                transform: translateX(0) scale(1);
                opacity: 1;
            }
        }
@keyframes slideBgFromLeft {
            0% {
                transform: translateX(-100%) scale(0.96);
                opacity: 0;
            }

            100% {
                transform: translateX(0) scale(1);
                opacity: 1;
            }
        }
@keyframes slideTextFromLeft {
            0% {
                opacity: 0;
                transform: translateX(-80px) translateY(-50%);
            }

            100% {
                opacity: 1;
                transform: translateX(0) translateY(-50%);
            }
        }
#products .carousel.slide-direction-next .list .item.active .bg-image {
            animation: slideBgFromRight 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }
#products .carousel.slide-direction-prev .list .item.active .bg-image {
            animation: slideBgFromLeft 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }
#products .carousel.slide-direction-next .list .item.active .content,
#products .carousel.slide-direction-prev .list .item.active .content {
            animation: slideTextFromLeft 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }
@media (max-width: 900px) {
#products .carousel .list .item .content {
                width: 70%;
                left: 5%;
            }
#products .content .brand-name {
                font-size: 3rem;
            }
#products .content .title-main {
                font-size: 2.5rem;
            }
#products .thumb-item {
                width: 70px;
                height: 70px;
            }
#products .thumbnail-strip-container {
                max-width: 90vw;
            }
}
@media (max-width: 650px) {
#products .carousel .list .item .content {
                width: 85%;
                top: 55%;
            }
#products .content .brand-name {
                font-size: 2.3rem;
            }
#products .thumb-item {
                width: 60px;
                height: 60px;
            }
#products .nav-arrows {
                bottom: 38%;
                right: 4%;
                gap: 12px;
            }
#products .nav-arrows button {
                width: 44px;
                height: 44px;
                font-size: 1.3rem;
            }
}


/* ============================================================
   RED ATTENTION BANNER — Professional Cinematic Reveal
   Two red attention images at the top of the "Why Fresh Milk
   Changes Naturally?" section with animated red background
   ============================================================ */

/* --- Keyframe Animations --- */
@keyframes rab-bg-pulse-in {
    0%   { opacity: 0; transform: scale(1.08); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes rab-bg-breathe {
    0%, 100% { opacity: 0.88; }
    50%       { opacity: 1; }
}
@keyframes rab-shimmer-sweep {
    0%   { transform: translateX(-120%) skewX(-14deg); }
    100% { transform: translateX(220%) skewX(-14deg); }
}
@keyframes rab-scanline-move {
    0%   { top: -6px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.4; }
    100% { top: 100%; opacity: 0; }
}
@keyframes rab-img1-enter {
    0%   { opacity: 0; transform: translateX(-80px) scale(0.7) rotate(-12deg); filter: blur(8px); }
    60%  { opacity: 1; transform: translateX(6px) scale(1.06) rotate(2deg); filter: blur(0); }
    80%  { transform: translateX(-3px) scale(0.98) rotate(-1deg); }
    100% { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); filter: blur(0); }
}
@keyframes rab-img2-enter {
    0%   { opacity: 0; transform: translateX(100px) scale(0.72) rotate(10deg); filter: blur(8px); }
    65%  { opacity: 1; transform: translateX(-8px) scale(1.05) rotate(-2deg); filter: blur(0); }
    82%  { transform: translateX(4px) scale(0.99) rotate(1deg); }
    100% { opacity: 1; transform: translateX(0) scale(1) rotate(0deg); filter: blur(0); }
}
@keyframes rab-text-enter {
    0%   { opacity: 0; transform: translateY(28px) scale(0.92); }
    70%  { opacity: 1; transform: translateY(-4px) scale(1.02); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rab-glow-pulse {
    0%, 100% { opacity: 0.45; transform: scale(0.92); }
    50%       { opacity: 0.85; transform: scale(1.08); }
}
@keyframes rab-img-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33%       { transform: translateY(-6px) rotate(1.5deg); }
    66%       { transform: translateY(4px) rotate(-1deg); }
}
@keyframes rab-img2-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    40%       { transform: translateY(-8px) rotate(-1.5deg); }
    70%       { transform: translateY(3px) rotate(1deg); }
}
@keyframes rab-particle-drift {
    0%   { opacity: 0; transform: translateY(0) scale(0); }
    20%  { opacity: 1; transform: translateY(-30px) scale(1); }
    100% { opacity: 0; transform: translateY(-120px) scale(0.4); }
}
@keyframes rab-headline-glow {
    0%, 100% { text-shadow: 0 0 18px rgba(255,80,80,0.4), 0 2px 4px rgba(0,0,0,0.6); }
    50%       { text-shadow: 0 0 38px rgba(255,120,120,0.7), 0 0 60px rgba(255,40,40,0.3), 0 2px 4px rgba(0,0,0,0.6); }
}
@keyframes rab-label-blink {
    0%, 90%, 100% { opacity: 1; }
    95%            { opacity: 0.3; }
}

/* --- Main Banner Container --- */
.red-attention-banner {
    position: relative;
    width: 100%;
    min-height: clamp(104px, 11.5vw, 168px);
    margin: 0 auto clamp(14px, 1.6vw, 22px);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(12px, 1.8vw, 28px);
    padding: clamp(10px, 1.35vw, 18px) clamp(22px, 4vw, 56px);
    isolation: isolate;

    /* Initial hidden state — JS adds .rab-revealed to trigger animations */
    background: linear-gradient(
        135deg,
        #1a0000 0%,
        #5c0000 18%,
        #8b0000 36%,
        #c0392b 52%,
        #8b0000 68%,
        #5c0000 84%,
        #1a0000 100%
    );
    box-shadow:
        0 0 0 1px rgba(255, 80, 80, 0.25),
        0 8px 26px rgba(180, 20, 20, 0.42),
        0 24px 58px rgba(140, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 180, 180, 0.18),
        inset 0 -1px 0 rgba(80, 0, 0, 0.5);

    /* Section-level animated background pulse */
    animation: rab-bg-breathe 3.6s ease-in-out infinite;
}

/* Top accent line */
.red-attention-banner::before {
    content: "";
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, transparent, #ff6060, #ff0000, #ff6060, transparent);
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.6);
    z-index: 10;
}

/* Bottom accent line */
.red-attention-banner::after {
    content: "";
    position: absolute;
    left: clamp(20px, 3vw, 40px);
    right: clamp(20px, 3vw, 40px);
    bottom: 0;
    height: 2px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, transparent, rgba(255, 80, 80, 0.6), transparent);
    z-index: 10;
}

/* --- Background Layers --- */
.rab-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.rab-bg-pulse {
    background:
        radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200, 0, 0, 0.3) 0%, transparent 70%),
        radial-gradient(circle at 20% 50%, rgba(255, 40, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(180, 0, 40, 0.15) 0%, transparent 50%);
}
.rab-bg-shimmer {
    background: linear-gradient(
        105deg,
        transparent 35%,
        rgba(255, 180, 180, 0.12) 50%,
        transparent 65%
    );
    animation: rab-shimmer-sweep 3.2s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* --- Scanline Effect --- */
.rab-scanline {
    position: absolute;
    left: 0; right: 0;
    top: -6px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 180, 180, 0.5), transparent);
    z-index: 2;
    pointer-events: none;
    animation: rab-scanline-move 4s linear infinite;
    animation-delay: 0.8s;
}

/* --- Floating Particles --- */
.rab-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 120, 120, 0.9), rgba(255, 0, 0, 0.4));
    pointer-events: none;
    z-index: 1;
    animation: rab-particle-drift 4s ease-out infinite;
}
.rab-p1 { width: 8px; height: 8px; left: 15%; bottom: 20%; animation-delay: 0s; animation-duration: 3.5s; }
.rab-p2 { width: 5px; height: 5px; left: 32%; bottom: 10%; animation-delay: 0.8s; animation-duration: 4.2s; }
.rab-p3 { width: 6px; height: 6px; left: 50%; bottom: 15%; animation-delay: 1.6s; animation-duration: 3.8s; }
.rab-p4 { width: 4px; height: 4px; left: 70%; bottom: 8%; animation-delay: 0.4s; animation-duration: 4.6s; }
.rab-p5 { width: 7px; height: 7px; left: 85%; bottom: 22%; animation-delay: 1.2s; animation-duration: 3.2s; }

/* --- Image Wrappers --- */
.rab-image-wrapper {
    position: relative;
    flex: 0 0 auto;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Hidden state — animations triggered via .rab-revealed */
    opacity: 0;
}

.rab-img-1 {
    width: clamp(70px, 8.5vw, 120px);
}
.rab-img-2 {
    width: clamp(132px, 18vw, 260px);
}

/* Triggered animation states */
.red-attention-banner.rab-revealed .rab-img-1 {
    animation:
        rab-img1-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both,
        rab-img-float 5s ease-in-out 1.2s infinite;
}
.red-attention-banner.rab-revealed .rab-img-2 {
    animation:
        rab-img2-enter 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both,
        rab-img2-float 6s ease-in-out 1.9s infinite;
}
.red-attention-banner.rab-revealed .rab-center-text {
    animation: rab-text-enter 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

/* --- Image Glow --- */
.rab-image-glow {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: rab-glow-pulse 2.8s ease-in-out infinite;
}
.rab-glow-1 {
    background: radial-gradient(circle, rgba(220, 30, 30, 0.55) 0%, transparent 70%);
    animation-delay: 0s;
}
.rab-glow-2 {
    background: radial-gradient(circle, rgba(255, 60, 60, 0.45) 0%, rgba(180, 0, 0, 0.3) 30%, transparent 70%);
    animation-delay: 1.4s;
}

/* --- Image itself --- */
.rab-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 7px 18px rgba(180, 0, 0, 0.62)) drop-shadow(0 2px 5px rgba(0,0,0,0.45));
    user-select: none;
    -webkit-user-drag: none;
}

/* --- Center Text Block --- */
.rab-center-text {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
    z-index: 5;
    opacity: 0;
    padding: 0 clamp(6px, 1.15vw, 16px);
}

.rab-label-top {
    display: inline-block;
    padding: 3px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 160, 160, 0.35);
    background: rgba(255, 60, 60, 0.15);
    color: rgba(255, 200, 200, 0.9);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(0.58rem, 0.68vw, 0.72rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: clamp(6px, 0.75vw, 10px);
    animation: rab-label-blink 3s ease-in-out infinite;
    animation-delay: 2s;
}

.rab-headline {
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(1.18rem, 2.45vw, 2.28rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0;
    animation: rab-headline-glow 2.4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.rab-subline {
    margin-top: clamp(5px, 0.65vw, 9px);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: clamp(0.72rem, 0.82vw, 0.92rem);
    font-weight: 500;
    color: rgba(255, 200, 200, 0.78);
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
    .red-attention-banner {
        flex-direction: column;
        min-height: auto;
        padding: clamp(14px, 3.4vw, 20px) clamp(14px, 4vw, 24px);
        gap: 10px;
    }
    .rab-img-1 {
        width: clamp(68px, 20vw, 112px);
    }
    .rab-img-2 {
        width: clamp(145px, 52vw, 240px);
    }
    .rab-center-text {
        order: -1;
    }
}

@media (max-width: 480px) {
    .rab-headline {
        font-size: clamp(1.1rem, 5.5vw, 1.6rem);
    }
}

/* Section red flash — triggered when banner enters view */
@keyframes fresh-care-section-flash {
    0%   { box-shadow: inset 0 0 0 0 rgba(180, 0, 0, 0); }
    15%  { box-shadow: inset 0 0 120px 40px rgba(180, 0, 0, 0.22); }
    40%  { box-shadow: inset 0 0 80px 20px rgba(140, 0, 0, 0.14); }
    100% { box-shadow: inset 0 0 0 0 rgba(180, 0, 0, 0); }
}
#fresh-care.fresh-care-red-flash {
    animation: fresh-care-section-flash 2.8s ease-out forwards;
}

/* Fresh Milk Customer Care Notice */
.fresh-care-section,
.fresh-care-section * {
    box-sizing: border-box;
}

.fresh-care-section {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 8vw, 104px) clamp(14px, 2.2vw, 32px);
    font-family: 'Inter', 'Outfit', Arial, sans-serif;
    color: #0f1f3d;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 38%, #ffffff 100%),
        linear-gradient(90deg, rgba(30, 99, 214, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(30, 99, 214, 0.04) 1px, transparent 1px);
    background-size: auto, 54px 54px, 54px 54px;
}

.fresh-care-shell {
    position: relative;
    width: min(1540px, 100%);
    margin: 0 auto;
    padding: clamp(18px, 2.2vw, 28px);
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(22px, 2.4vw, 34px);
    align-items: start;
    border: 1px solid rgba(37, 99, 235, 0.24);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 255, 0.86)),
        linear-gradient(120deg, rgba(14, 165, 233, 0.12), transparent 46%, rgba(22, 163, 74, 0.08));
    box-shadow:
        0 28px 90px rgba(37, 99, 235, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    isolation: isolate;
}

.fresh-care-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background:
        linear-gradient(90deg, rgba(37, 99, 235, 0.09), transparent 32%, rgba(14, 165, 233, 0.12) 58%, transparent 100%);
    opacity: 0.72;
}

.fresh-care-shell::after {
    content: "";
    position: absolute;
    left: clamp(18px, 2.2vw, 28px);
    right: clamp(18px, 2.2vw, 28px);
    top: 0;
    height: 4px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #1d4ed8, #2dd4bf, #16a34a);
    box-shadow: 0 12px 32px rgba(29, 78, 216, 0.28);
}

.fresh-care-orbit {
    position: absolute;
    inset: 14px;
    z-index: -1;
    border-radius: 18px;
    background:
        linear-gradient(115deg, transparent 4%, rgba(37, 99, 235, 0.08) 18%, transparent 34%),
        linear-gradient(295deg, transparent 14%, rgba(20, 184, 166, 0.08) 42%, transparent 64%);
    pointer-events: none;
}

.fresh-care-intro {
    position: relative;
    min-width: 0;
    min-height: clamp(420px, 38vw, 550px);
    padding: clamp(24px, 3vw, 46px);
    display: grid;
    grid-template-columns: minmax(270px, 0.72fr) minmax(620px, 1.28fr);
    grid-template-rows: auto auto auto 1fr;
    column-gap: clamp(20px, 3vw, 48px);
    row-gap: 0;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(245, 250, 255, 0.72)),
        linear-gradient(180deg, rgba(37, 99, 235, 0.05), transparent);
}

.fresh-care-intro::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 10px;
    background:
        linear-gradient(90deg, rgba(20, 86, 217, 0.1), transparent 38%, rgba(45, 212, 191, 0.1)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent 42%);
    opacity: 0.75;
    pointer-events: none;
}

.fresh-care-eyebrow {
    position: relative;
    z-index: 2;
    width: fit-content;
    max-width: 100%;
    min-height: 30px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    color: #9E1946;
    background: rgba(158, 25, 70, 0.08);
    border: 1px solid rgba(158, 25, 70, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
    font-size: clamp(0.7rem, 0.75vw, 0.82rem);
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.fresh-care-eyebrow:hover {
    transform: translateY(-1px);
    background: rgba(158, 25, 70, 0.14);
    border-color: rgba(158, 25, 70, 0.25);
    box-shadow: 0 6px 16px rgba(158, 25, 70, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.fresh-care-eyebrow svg {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fresh-care-intro h2 {
    position: relative;
    z-index: 2;
    margin: clamp(16px, 2vw, 24px) 0 12px;
    color: #102044;
    font-family: 'Sora', 'Inter', sans-serif;
    font-size: clamp(2.15rem, 3.45vw, 4.1rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

.fresh-care-intro h2 span {
    display: block;
    color: #1456d9;
}

/* Premium text gradient sweep animation */
.animated-changes {
    background: linear-gradient(90deg, #1456d9, #9E1946, #710627, #9E1946, #1456d9);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: textGradientSweep 4s linear infinite;
    display: inline;
}

.red-question {
    display: inline;
    color: #9E1946;
    -webkit-text-fill-color: #9E1946;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    font-weight: 900;
    animation: none;
}

@keyframes textGradientSweep {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.fresh-care-intro p {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0;
    color: #44546f;
    font-size: clamp(1rem, 1.12vw, 1.18rem);
    line-height: 1.58;
    font-weight: 500;
}

.fresh-care-intro strong {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 480px;
    margin-top: 12px;
    color: #064dcc;
    font-size: clamp(1rem, 1.12vw, 1.15rem);
    line-height: 1.35;
    font-weight: 900;
}

.fresh-care-visual {
    position: relative;
    z-index: 2;
    grid-column: 2;
    grid-row: 1 / -1;
    min-width: 0;
    margin-top: 0;
    padding-top: 0;
    display: grid;
    grid-template-columns: minmax(310px, 0.92fr) minmax(260px, 1fr);
    align-items: center;
    gap: clamp(12px, 1.5vw, 22px);
    width: 100%;
}

.fresh-care-visual img {
    position: relative;
    z-index: 2;
    width: clamp(310px, 25vw, 420px);
    max-width: 100%;
    justify-self: center;
    align-self: center;
    transform: translateX(clamp(-34px, -2vw, -16px)) scale(1.22);
    filter: drop-shadow(0 34px 40px rgba(18, 41, 91, 0.2));
    transform-origin: center center;
}

.fresh-care-splash {
    position: absolute;
    left: 28%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(330px, 28vw, 470px);
    aspect-ratio: 1.2;
    z-index: 1;
    border-radius: 48% 52% 42% 58%;
    background:
        radial-gradient(circle at 18% 48%, rgba(255, 255, 255, 0.94) 0 8px, transparent 9px),
        radial-gradient(circle at 78% 24%, rgba(255, 255, 255, 0.92) 0 6px, transparent 7px),
        radial-gradient(circle at 95% 58%, rgba(255, 255, 255, 0.86) 0 4px, transparent 5px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(226, 240, 255, 0.74));
    box-shadow:
        inset 0 -18px 34px rgba(191, 219, 254, 0.55),
        0 24px 60px rgba(59, 130, 246, 0.12);
}

.fresh-care-mini-card {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 360px;
    padding: clamp(14px, 1.4vw, 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    justify-self: start;
    border: 1px solid rgba(37, 99, 235, 0.16);
    border-radius: 12px;
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.84)),
        rgba(255, 255, 255, 0.8);
    box-shadow:
        0 22px 58px rgba(15, 44, 92, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.fresh-care-mini-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 8px 10px;
    border-radius: 10px;
    color: #0f1e3d;
    background: rgba(255, 255, 255, 0.68);
    font-family: 'Outfit', 'Inter', sans-serif;
    font-style: italic;
    font-size: clamp(0.88rem, 0.92vw, 1rem);
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
}

.fresh-care-mini-card svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: #1e63e9;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fresh-care-guides {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.6vw, 24px);
    overflow: visible;
    align-items: stretch;
    perspective: 1400px;
}

.fresh-care-guide {
    --care-art-left: 34%;
    --care-text-width: 52%;
    --care-bg-position: center;
    --care-bg-size: cover;
    --care-wash-solid: 36%;
    --care-wash-feather: 72%;
    position: relative;
    isolation: isolate;
    min-width: 0;
    min-height: clamp(236px, 18vw, 292px);
    padding: clamp(18px, 1.6vw, 24px);
    display: grid;
    grid-template-columns: minmax(0, var(--care-text-width));
    grid-template-rows: auto auto 1fr;
    align-content: start;
    border: 1px solid rgba(177, 203, 235, 0.76);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.92) 42%, rgba(237, 247, 255, 0.86) 100%),
        linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.04));
    box-shadow:
        0 18px 44px rgba(30, 64, 175, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 260ms cubic-bezier(0.2, 1, 0.3, 1),
        border-color 260ms ease,
        background 260ms ease,
        box-shadow 260ms ease,
        filter 260ms ease;
}

.fresh-care-guide:nth-child(2) { --reveal-delay: 0.04s; }
.fresh-care-guide:nth-child(3) { --reveal-delay: 0.08s; }
.fresh-care-guide:nth-child(4) { --reveal-delay: 0.12s; }
.fresh-care-guide:nth-child(5) { --reveal-delay: 0.16s; }
.fresh-care-guide:nth-child(6) { --reveal-delay: 0.2s; }
.fresh-care-guide:nth-child(7) { --reveal-delay: 0.24s; }
.fresh-care-guide:nth-child(8) { --reveal-delay: 0.28s; }
.fresh-care-guide:nth-child(9) { --reveal-delay: 0.32s; }
.fresh-care-guide:nth-child(10) { --reveal-delay: 0.36s; }
.fresh-care-guide:nth-child(11) { --reveal-delay: 0.4s; }
.fresh-care-guide:nth-child(12) { --reveal-delay: 0.44s; }

.fresh-care-guide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    border-top: 3px solid transparent;
    background: linear-gradient(90deg, #dc2626, #1d4ed8) top / 100% 3px no-repeat; /* Red to Blue top border gradient */
    opacity: 0;
    transition: opacity 240ms ease;
    pointer-events: none;
}

.fresh-care-guide::after {
    content: "";
    position: absolute;
    inset: 10px;
    z-index: -1;
    border-radius: 10px;
    background: radial-gradient(circle at 18% 20%, rgba(220, 38, 38, 0.18), transparent 36%), /* Red glow on left */
        radial-gradient(circle at 88% 12%, rgba(29, 78, 216, 0.18), transparent 34%); /* Blue glow on right */
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 260ms ease, transform 260ms ease;
    pointer-events: none;
}

.fresh-care-section .fresh-care-guide:hover,
.fresh-care-section .fresh-care-guide:focus-visible {
    z-index: 2;
    transform: translateY(-8px);
    background:
        linear-gradient(155deg, #ffffff, #f3f9ff),
        linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.04));
    border-color: rgba(29, 78, 216, 0.24);
    box-shadow:
        0 24px 62px rgba(29, 78, 216, 0.14),
        0 10px 22px rgba(15, 44, 92, 0.08);
}

.fresh-care-section .fresh-care-guide:focus {
    outline: none;
}

.fresh-care-section .fresh-care-guide:focus-visible {
    outline: 3px solid rgba(29, 78, 216, 0.34);
    outline-offset: 4px;
}

.fresh-care-section .fresh-care-guide:hover::before,
.fresh-care-section .fresh-care-guide:focus-visible::before {
    opacity: 1;
}

.fresh-care-section .fresh-care-guide.is-selected {
    z-index: 4;
    transform: translateY(-12px) scale(1.015);
    border-color: rgba(37, 99, 235, 0.34);
    background:
        linear-gradient(150deg, #ffffff 0%, #f1f8ff 62%, #fff5f5 100%), /* Subtle blue to red background */
        linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.06));
    box-shadow:
        0 26px 68px rgba(29, 78, 216, 0.16),
        -8px 8px 30px rgba(220, 38, 38, 0.12),  /* Red glow on the left */
        8px 8px 30px rgba(29, 78, 216, 0.12),   /* Blue glow on the right */
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.fresh-care-section .fresh-care-guide.is-selected::before,
.fresh-care-section .fresh-care-guide.is-selected::after {
    opacity: 1;
}

.fresh-care-section .fresh-care-guide.is-selected::after {
    transform: scale(1);
}

.fresh-care-section .fresh-care-guide.is-selected .fresh-care-number {
    background: linear-gradient(135deg, #dc2626, #1d4ed8); /* Red/Blue gradient for card number */
    box-shadow: 0 12px 22px rgba(220, 38, 38, 0.3);
}

.fresh-care-section .fresh-care-guide.is-selected .fresh-care-icon {
    transform: scale(1.025);
    box-shadow:
        -18px 0 34px rgba(29, 78, 216, 0.08),
        0 20px 48px rgba(15, 44, 92, 0.12);
}

.fresh-care-number {
    grid-column: 1;
    grid-row: 1;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
    box-shadow: 0 12px 22px rgba(29, 78, 216, 0.24);
    font-size: 0.86rem;
    line-height: 1;
    font-weight: 900;
    z-index: 3;
}

.fresh-care-icon {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border-radius: inherit;
    background-color: transparent;
    background-position: var(--care-bg-position);
    background-size: var(--care-bg-size);
    background-repeat: no-repeat;
    box-shadow: none;
    overflow: hidden;
    pointer-events: none;
    transform: translateZ(0);
    transform-origin: center right;
    filter: saturate(1.04) contrast(0.98);
    transition: transform 280ms cubic-bezier(0.2, 1, 0.3, 1), box-shadow 280ms ease;
}

.fresh-care-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.96) var(--care-wash-solid), rgba(255, 255, 255, 0.68) 52%, rgba(255, 255, 255, 0.18) var(--care-wash-feather), rgba(255, 255, 255, 0) 88%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.42) 100%),
        linear-gradient(270deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 18%);
    pointer-events: none;
}

.fresh-care-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.36) 48%, transparent 68%);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 560ms ease, opacity 260ms ease;
}

.fresh-care-icon svg {
    display: none;
}

.fresh-care-guide:nth-child(1) .fresh-care-icon { background-image: url("images/1.png"); }
.fresh-care-guide:nth-child(2) .fresh-care-icon { background-image: url("images/2.png"); }
.fresh-care-guide:nth-child(3) .fresh-care-icon { background-image: url("images/3.png"); }
.fresh-care-guide:nth-child(4) .fresh-care-icon { background-image: url("images/4.png"); }
.fresh-care-guide:nth-child(5) .fresh-care-icon { background-image: url("images/5.png"); }
.fresh-care-guide:nth-child(6) .fresh-care-icon { background-image: url("images/6.png"); }
.fresh-care-guide:nth-child(7) .fresh-care-icon { background-image: url("images/7.png"); }
.fresh-care-guide:nth-child(8) .fresh-care-icon { background-image: url("images/8.png"); }
.fresh-care-guide:nth-child(9) .fresh-care-icon { background-image: url("images/9.png"); }
.fresh-care-guide:nth-child(10) .fresh-care-icon { background-image: url("images/10.png"); }
.fresh-care-guide:nth-child(11) .fresh-care-icon { background-image: url("images/11.png"); }
.fresh-care-guide:nth-child(12) .fresh-care-icon { background-image: url("images/12.png"); }

.fresh-care-guide:nth-child(5) {
    --care-text-width: 43%;
    --care-bg-position: center 50%;
    --care-bg-size: cover;
    --care-wash-solid: 24%;
    --care-wash-feather: 60%;
    min-height: clamp(264px, 18.5vw, 304px);
}

.fresh-care-guide:nth-child(11) {
    --care-text-width: 48%;
    --care-bg-position: 55% 52%;
    --care-bg-size: cover;
    --care-wash-solid: 32%;
    --care-wash-feather: 70%;
    min-height: clamp(268px, 19vw, 312px);
}

.fresh-care-guide:nth-child(12) {
    --care-text-width: 43%;
    --care-bg-position: 52% 54%;
    --care-bg-size: cover;
    --care-wash-solid: 28%;
    --care-wash-feather: 66%;
    min-height: clamp(268px, 19vw, 312px);
}

/* Standard Care Guide Cards (1, 2, 3, 4, 6, 7, 8, 9, 10) styling to match the second screenshot */
.fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)) .fresh-care-icon {
    position: absolute;
    inset: auto;
    right: clamp(10px, 1vw, 20px);
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 78%;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 0;
    overflow: visible; /* to allow drop shadow to bleed out */
    filter: saturate(1.04) contrast(0.98) drop-shadow(0 12px 24px rgba(15, 44, 92, 0.13));
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 15%, #000000 55%, #000000 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 15%, #000000 55%, #000000 100%);
    transition: transform 280ms cubic-bezier(0.2, 1, 0.3, 1), filter 280ms ease;
}

#fresh-care .fresh-care-guide:nth-child(1) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(2) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(3) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(4) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(6) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(7) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(8) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(9) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(10) .fresh-care-icon {
    right: clamp(16px, 1.4vw, 26px);
    width: 43%;
    height: 84%;
    background-size: auto 94%;
    background-position: center;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.22) 14%, #000000 42%, #000000 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.22) 14%, #000000 42%, #000000 100%);
}

#fresh-care .fresh-care-guide:nth-child(6) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(7) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(8) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(9) .fresh-care-icon,
#fresh-care .fresh-care-guide:nth-child(10) .fresh-care-icon {
    background-size: auto 90%;
}

.fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)) .fresh-care-icon::before {
    display: none; /* Hide the white gradient wash for standard cards */
}

/* Hover and Focus states for standard cards */
.fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)):hover .fresh-care-icon,
.fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)):focus-visible .fresh-care-icon {
    transform: translateY(-55%) scale(1.06); /* Lift slightly up and scale */
    filter: saturate(1.08) contrast(1.02) drop-shadow(0 16px 32px rgba(15, 44, 92, 0.18));
}

/* Selected state for standard cards */
.fresh-care-section .fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)).is-selected .fresh-care-icon {
    transform: translateY(-55%) scale(1.08); /* Lift higher on select */
    filter: saturate(1.1) contrast(1.04) drop-shadow(0 20px 38px rgba(15, 44, 92, 0.24));
}

/* Full Bleed Cards (5, 11, 12) styling with professional fade to match the third screenshot */
.fresh-care-guide:nth-child(5) .fresh-care-icon,
.fresh-care-guide:nth-child(11) .fresh-care-icon,
.fresh-care-guide:nth-child(12) .fresh-care-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: var(--care-bg-size, cover);
    background-position: var(--care-bg-position, center);
    border-radius: inherit;
    -webkit-mask-image: none;
    mask-image: none;
    filter: saturate(1.08) contrast(1.03) brightness(1.02);
}

.fresh-care-guide:nth-child(5) .fresh-care-icon::before,
.fresh-care-guide:nth-child(11) .fresh-care-icon::before,
.fresh-care-guide:nth-child(12) .fresh-care-icon::before {
    display: block;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) var(--care-wash-solid), rgba(255, 255, 255, 0.46) 48%, rgba(255, 255, 255, 0.1) var(--care-wash-feather), rgba(255, 255, 255, 0) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(14, 42, 84, 0.08) 100%);
    backdrop-filter: blur(0.3px);
    -webkit-backdrop-filter: blur(0.3px);
}

.fresh-care-guide:nth-child(5) h3,
.fresh-care-guide:nth-child(5) p,
.fresh-care-guide:nth-child(11) h3,
.fresh-care-guide:nth-child(11) p,
.fresh-care-guide:nth-child(12) h3,
.fresh-care-guide:nth-child(12) p {
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.82),
        0 8px 20px rgba(255, 255, 255, 0.72);
}


.fresh-care-guide h3 {
    grid-column: 1;
    grid-row: 2;
    min-width: 0;
    margin: 16px 0 12px;
    color: #101d3c;
    font-size: clamp(0.98rem, 0.98vw, 1.14rem);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    z-index: 3;
}

.fresh-care-guide p {
    grid-column: 1;
    grid-row: 3;
    min-width: 0;
    margin: 0;
    color: #243657;
    font-size: clamp(0.84rem, 0.86vw, 0.96rem);
    line-height: 1.5;
    font-weight: 500;
    overflow-wrap: anywhere;
    z-index: 3;
}

.fresh-care-guide:hover .fresh-care-icon,
.fresh-care-guide:focus-visible .fresh-care-icon {
    transform: scale(1.025);
}

.fresh-care-guide:hover .fresh-care-icon::after,
.fresh-care-guide:focus-visible .fresh-care-icon::after,
.fresh-care-guide.is-selected .fresh-care-icon::after {
    opacity: 1;
    transform: translateX(120%);
}

@keyframes noteGradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes noteGlowPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(158, 25, 70, 0.22), 0 4px 10px rgba(113, 6, 39, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    }
    50% {
        box-shadow: 0 16px 42px rgba(158, 25, 70, 0.38), 0 6px 18px rgba(113, 6, 39, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

@keyframes shimmerSweep {
    0% {
        left: -150%;
    }
    25% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

.fresh-care-note {
    grid-column: 1 / -1;
    width: min(760px, 100%);
    min-height: 42px;
    margin: 16px auto 0;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #710627, #9E1946, #c52758, #9E1946, #710627);
    background-size: 300% 300%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: 
        noteGradientFlow 8s ease infinite,
        noteGlowPulse 4s ease-in-out infinite;
    text-align: center;
    font-size: clamp(0.92rem, 1vw, 1.02rem);
    line-height: 1.4;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease;
}

.fresh-care-note:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(158, 25, 70, 0.45), 0 8px 22px rgba(113, 6, 39, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.fresh-care-note::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.18),
        transparent
    );
    transform: skewX(-25deg);
    animation: shimmerSweep 7s infinite ease-in-out;
}

.fresh-care-note svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1120px) {
    .fresh-care-intro {
        min-height: auto;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .fresh-care-visual {
        grid-column: 1;
        grid-row: auto;
        min-height: auto;
        display: grid;
        grid-template-columns: minmax(220px, 0.82fr) minmax(260px, 1fr);
        align-items: center;
        gap: 20px;
        margin-top: 10px;
    }

    .fresh-care-mini-card {
        width: 100%;
    }
}

@media (max-width: 1020px) {
    .fresh-care-guides {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fresh-care-section {
        padding: 54px 12px 64px;
    }

    .fresh-care-shell {
        padding: 14px;
        border-radius: 18px;
        gap: 14px;
    }

    .fresh-care-intro {
        padding: 22px 18px;
    }

    .fresh-care-eyebrow {
        letter-spacing: 0.08em;
    }

    .fresh-care-visual {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: 16px;
        padding-top: 16px;
    }

    .fresh-care-visual img {
        width: min(78vw, 300px);
        transform: translateX(0);
    }

    .fresh-care-splash {
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
        width: 78%;
        max-width: 320px;
    }

    .fresh-care-mini-card {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }

    .fresh-care-guides {
        grid-template-columns: 1fr;
    }

    .fresh-care-guide,
    .fresh-care-guide:nth-child(4n),
    .fresh-care-guide:nth-child(2n) {
        --care-art-left: 38%;
        --care-text-width: 54%;
        min-height: 222px;
        padding: 16px;
        grid-template-columns: minmax(0, var(--care-text-width));
        border: 1px solid rgba(203, 213, 225, 0.74);
    }

    .fresh-care-icon {
        inset: 0;
        margin: 0;
    }

    .fresh-care-guide h3 {
        margin-top: 14px;
    }

    .fresh-care-note {
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
        padding: 14px 16px;
    }
}

@media (max-width: 430px) {
    .fresh-care-shell {
        width: 100%;
    }

    .fresh-care-guide,
    .fresh-care-guide:nth-child(4n),
    .fresh-care-guide:nth-child(2n) {
        --care-art-left: 0;
        --care-text-width: 100%;
        --care-bg-position: center;
        --care-bg-size: cover;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        min-height: auto;
        padding: 0;
        column-gap: 0;
    }

    .fresh-care-guide:nth-child(5),
    .fresh-care-guide:nth-child(11),
    .fresh-care-guide:nth-child(12) {
        --care-bg-position: center;
        --care-bg-size: cover;
    }

    .fresh-care-number {
        position: absolute;
        top: 14px;
        left: 14px;
        width: 36px;
        height: 36px;
    }

    .fresh-care-icon {
        position: relative;
        inset: auto;
        grid-column: 1;
        grid-row: 1;
        min-height: 214px;
        margin: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(177, 203, 235, 0.56);
        border-radius: 8px 8px 0 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .fresh-care-icon::before {
        display: block;
        background:
            linear-gradient(180deg, rgba(4, 24, 54, 0.08), rgba(4, 24, 54, 0) 42%, rgba(4, 24, 54, 0.32)),
            linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    }

    /* Reset desktop standard card styles for mobile view */
    .fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)) .fresh-care-icon {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 214px;
        background-size: contain;
        background-position: center;
        filter: none;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .fresh-care-guide:not(:nth-child(5)):not(:nth-child(11)):not(:nth-child(12)) .fresh-care-icon::before {
        display: block;
    }

    #fresh-care .fresh-care-guide:nth-child(1) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(2) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(3) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(4) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(6) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(7) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(8) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(9) .fresh-care-icon,
    #fresh-care .fresh-care-guide:nth-child(10) .fresh-care-icon {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: 214px;
        background-position: center;
        -webkit-mask-image: none;
        mask-image: none;
    }

    /* Reset desktop full-bleed card styles for mobile view */
    .fresh-care-guide:nth-child(5) .fresh-care-icon,
    .fresh-care-guide:nth-child(11) .fresh-care-icon,
    .fresh-care-guide:nth-child(12) .fresh-care-icon {
        position: relative;
        inset: auto;
        top: auto;
        right: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 214px;
        background-size: cover;
        background-position: center;
        border-radius: 8px 8px 0 0;
        -webkit-mask-image: none;
        mask-image: none;
    }

    .fresh-care-guide:nth-child(5) .fresh-care-icon::before,
    .fresh-care-guide:nth-child(11) .fresh-care-icon::before,
    .fresh-care-guide:nth-child(12) .fresh-care-icon::before {
        display: block;
    }

    .fresh-care-guide h3 {
        grid-column: 1;
        grid-row: 2;
        margin: 18px 16px 10px;
        padding-top: 0;
    }

    .fresh-care-guide p {
        grid-column: 1;
        grid-row: 3;
        margin: 0 16px 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fresh-care-guide,
    .fresh-care-guide::before {
        transition: none;
    }

    .fresh-care-guide:hover {
        transform: none;
    }
}

/* Nutritional Information */
#nutrition {
            --primary: #3B82F6;
            --primary-glow: #60A5FA;
            --navy: #1E293B;
            --white: #FFFFFF;
            --bg-soft: #F8FAFC;
            --text-main: #1E293B;
            --text-muted: #64748B;
            --glass: rgba(255, 255, 255, 0.6);
            --glass-border: rgba(255, 255, 255, 0.4);
            --shadow-premium: 0 30px 60px rgba(59, 130, 246, 0.12);
            --transition-apple: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
#nutrition * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }
#nutrition {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background: var(--white);
            overflow-x: hidden;
        }
#nutrition .showcase-section {
            position: relative;
            min-height: 100vh;
            width: 100vw;
            background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
#nutrition .container {
            max-width: 1500px;
            width: 100%;
            height: 90vh;
            position: relative;
            z-index: 10;
            display: flex;
            align-items: center;
            padding: 0 60px;
        }
#nutrition .glow-bg-main {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70vw;
            height: 70vh;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
        }
#nutrition .content-left {
            flex: 1;
            z-index: 20;
            transition: var(--transition-apple);
        }
#nutrition .label-top {
            font-family: 'Sora', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 5px;
            color: var(--primary);
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
        }
#nutrition .main-title {
            font-family: 'Sora', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            letter-spacing: -2px;
            background: linear-gradient(135deg, #0c62ad 0%, #1d6fcf 40%, #3B82F6 80%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 16px rgba(12, 98, 173, 0.18));
            line-height: 1;
            margin-bottom: 24px;
        }
#nutrition .main-subtitle {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 450px;
            line-height: 1.6;
            margin-bottom: 40px;
        }
#nutrition .bottle-container {
            position: absolute;
            right: -2%;
            top: 50%;
            transform: translateY(-50%) scale(1.4);
            width: 500px;
            z-index: 50;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transform-origin: center center;
        }
#nutrition .bottle-wrapper {
            position: relative;
            width: 100%;
            filter: drop-shadow(0 60px 100px rgba(0, 0, 0, 0.2));
            animation: floatBottle 6s ease-in-out infinite;
        }
#nutrition .main-bottle {
            width: 100%;
            height: auto;
            display: block;
        }
#nutrition .bottle-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 40%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: skewX(-20deg);
            z-index: 3;
            pointer-events: none;
        }
@keyframes floatBottle {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }
#nutrition .bottle-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            filter: blur(50px);
            opacity: 0.5;
            z-index: -1;
        }
#nutrition .serving-header-title {
            position: absolute;
            top: 35px;
            left: 50%;
            transform: translateX(-50%) translateY(-20px) scale(0.95);
            opacity: 0;
            pointer-events: none;
            z-index: 75;
            white-space: nowrap;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
        }
#nutrition .serving-header-inner {
            display: inline-flex;
            align-items: center;
            gap: 14px;
            padding: 14px 34px;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            border-radius: 100px;
            box-shadow:
                0 16px 40px rgba(59, 130, 246, 0.12),
                0 4px 14px rgba(0, 0, 0, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transition: all 0.3s ease;
        }
#nutrition .serving-header-inner:hover {
            box-shadow:
                0 20px 48px rgba(59, 130, 246, 0.18),
                0 6px 18px rgba(0, 0, 0, 0.06),
                inset 0 1px 0 rgba(255, 255, 255, 1);
        }
#nutrition .serving-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #3B82F6;
            box-shadow: 0 0 10px #3B82F6, 0 0 0 3px rgba(59, 130, 246, 0.2);
            flex-shrink: 0;
            animation: pulseDot 2s infinite ease-in-out;
        }
@keyframes pulseDot {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.35);
                opacity: 0.7;
            }
        }
#nutrition .serving-main-text {
            font-family: 'Sora', 'Inter', sans-serif;
            font-size: 1.15rem;
            font-weight: 700;
            color: #1E293B;
            letter-spacing: -0.2px;
        }
#nutrition .serving-main-text .highlight {
            color: #0C62AD;
            font-weight: 800;
        }
#nutrition .info-pill {
            position: absolute;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            padding: 10px 22px;
            border-radius: 100px;
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--navy);
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow:
                0 10px 30px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.4);
            z-index: 60;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }
#nutrition .info-pill:hover {
            background: var(--white);
            transform: scale(1.05) translateY(-2px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
        }
#nutrition .pill-cold {
            top: 35%;
            right: 8%;
        }
#nutrition .pill-pure {
            bottom: 35%;
            left: 6%;
        }
#nutrition .cards-container {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 40;
        }
#nutrition .nutri-card {
            position: absolute;
            width: 220px;
            padding: 18px;
            background: var(--glass);
            backdrop-filter: blur(25px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
            pointer-events: auto;
            transition: all 0.5s ease;
        }
#nutrition .card-label {
            font-size: 0.65rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 5px;
            display: block;
        }
#nutrition .card-val {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            font-family: 'Sora';
        }
#nutrition .card-unit {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-left: 3px;
        }
#nutrition .card-desc {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-top: 5px;
            line-height: 1.4;
        }
#nutrition .l-1 {
            left: 15%;
            top: 10%;
        }
#nutrition .l-2 {
            left: 10%;
            top: 31%;
        }
#nutrition .l-3 {
            left: 10%;
            bottom: 31%;
        }
#nutrition .l-4 {
            left: 15%;
            bottom: 10%;
        }
#nutrition .r-1 {
            right: 15%;
            top: 10%;
        }
#nutrition .r-2 {
            right: 10%;
            top: 31%;
        }
#nutrition .r-3 {
            right: 10%;
            bottom: 31%;
        }
#nutrition .r-4 {
            right: 15%;
            bottom: 10%;
        }
#nutrition .connection-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 30;
        }
#nutrition .connector-line {
            fill: none;
            stroke: var(--primary);
            stroke-width: 1.5;
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            opacity: 0.4;
            filter: drop-shadow(0 0 3px var(--primary));
        }
#nutrition .feature-footer {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 30px;
            z-index: 70;
        }
#nutrition .f-item {
            background: var(--white);
            padding: 12px 24px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--navy);
            border: 1px solid rgba(0, 0, 0, 0.02);
            transition: all 0.4s ease;
        }
#nutrition .f-item:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
#nutrition .wave-wrapper {
            position: absolute;
            bottom: 0;
            width: 100%;
            line-height: 0;
        }
@media (min-width: 1101px) and (max-width: 1500px), (min-width: 1101px) and (max-height: 820px) {
#nutrition .showcase-section {
                min-height: 100svh;
                padding: clamp(8px, 1.8vh, 18px) 0;
            }
#nutrition .container {
                width: min(1380px, calc(100vw - clamp(32px, 4vw, 64px)));
                height: min(760px, calc(100svh - clamp(30px, 5vh, 48px)));
                min-height: 640px;
                padding: 0 clamp(22px, 3vw, 44px);
            }
#nutrition .content-left {
                max-width: 430px;
            }
#nutrition .label-top {
                font-size: 0.72rem;
                letter-spacing: 4px;
                margin-bottom: 14px;
            }
#nutrition .main-title {
                font-size: clamp(2.65rem, 4.65vw, 3.75rem);
                margin-bottom: 16px;
            }
#nutrition .main-subtitle {
                max-width: 380px;
                font-size: 0.96rem;
                line-height: 1.55;
                margin-bottom: 28px;
            }
#nutrition .bottle-container {
                right: -1%;
                width: clamp(320px, 27vw, 395px);
                transform: translateY(-50%) scale(1.22);
            }
#nutrition .bottle-wrapper {
                filter: drop-shadow(0 42px 74px rgba(0, 0, 0, 0.18));
            }
#nutrition .info-pill {
                padding: 8px 18px;
                font-size: 0.78rem;
                gap: 10px;
            }
#nutrition .pill-cold {
                top: 35%;
                right: 4%;
            }
#nutrition .pill-pure {
                bottom: 35%;
                left: 4%;
            }
#nutrition .nutri-card {
                width: clamp(190px, 15.5vw, 214px);
                padding: 15px 16px;
                border-radius: 18px;
            }
#nutrition .card-label {
                font-size: 0.6rem;
                letter-spacing: 1.35px;
            }
#nutrition .card-val {
                font-size: 1.62rem;
            }
#nutrition .card-unit {
                font-size: 0.82rem;
            }
#nutrition .card-desc {
                font-size: 0.7rem;
                line-height: 1.34;
            }
#nutrition .l-1 {
                left: 12%;
                top: 7.5%;
            }
#nutrition .l-2 {
                left: 6.5%;
                top: 28.5%;
            }
#nutrition .l-3 {
                left: 6.5%;
                bottom: 28.5%;
            }
#nutrition .l-4 {
                left: 12%;
                bottom: 7.5%;
            }
#nutrition .r-1 {
                right: 12%;
                top: 7.5%;
            }
#nutrition .r-2 {
                right: 6.5%;
                top: 28.5%;
            }
#nutrition .r-3 {
                right: 6.5%;
                bottom: 28.5%;
            }
#nutrition .r-4 {
                right: 12%;
                bottom: 7.5%;
            }
#nutrition .connector-line {
                stroke-width: 1.35;
            }
#nutrition .feature-footer {
                bottom: clamp(18px, 3vh, 26px);
                gap: clamp(14px, 2vw, 24px);
            }
#nutrition .f-item {
                padding: 10px 20px;
                border-radius: 14px;
                font-size: 0.84rem;
                gap: 10px;
            }
}
@media (max-width: 1100px) {
#nutrition .showcase-section {
                height: auto;
                min-height: auto;
                padding: 120px 0;
            }
#nutrition .container {
                flex-direction: column;
                justify-content: flex-start;
                height: auto;
                padding: 0 24px;
                gap: 60px;
            }
#nutrition .content-left {
                text-align: center;
            }
#nutrition .main-subtitle {
                margin: 0 auto;
            }
#nutrition .bottle-container {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin: 0 auto;
                width: 100%;
                max-width: 320px;
                z-index: 50;
            }
#nutrition .serving-header-title {
                position: relative;
                top: auto;
                left: auto;
                transform: translateY(-10px);
                margin: -20px auto 10px auto;
                text-align: center;
                width: fit-content;
            }
#nutrition .serving-header-inner {
                padding: 11px 24px;
            }
#nutrition .serving-main-text {
                font-size: 0.95rem;
            }
#nutrition .connection-canvas {
                display: none;
            }
#nutrition .cards-container {
                position: relative;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
                width: 100%;
                max-width: 700px;
                margin: 0 auto;
                pointer-events: auto;
            }
#nutrition .nutri-card {
                position: relative;
                width: 100%;
                left: auto !important;
                right: auto !important;
                top: auto !important;
                bottom: auto !important;
                transform: translateY(30px);
                opacity: 0;
            }
#nutrition .feature-footer {
                position: relative;
                bottom: auto;
                left: auto;
                transform: none;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
                width: 100%;
                margin-top: 20px;
            }
#nutrition .f-item {
                font-size: 0.85rem;
                padding: 10px 18px;
            }
}
@media (max-width: 640px) {
#nutrition .cards-container {
                grid-template-columns: 1fr;
            }
#nutrition .bottle-container {
                max-width: 260px;
            }
#nutrition .info-pill {
                padding: 8px 16px;
                font-size: 0.75rem;
            }
#nutrition .pill-cold {
                right: -5%;
            }
#nutrition .pill-pure {
                left: -5%;
            }
}


/* Recipes */
#recipes * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
#recipes {
            --bg-light: #F9FAFA;
            --primary: #0C62AD;
            --primary-light: #CEF2FF;
            --primary-glow: rgba(12, 98, 173, 0.15);
            --secondary: #007bff;
            --text-main: #1A1C1E;
            --text-dim: #5F6368;
            --glass-bg: rgba(255, 255, 255, 0.5);
            --glass-border: rgba(12, 98, 173, 0.1);
            --transition-smooth: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            --wheel-size: 500px;
        }
#recipes {
            font-family: 'Outfit', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
        }
#recipes .bg-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: radial-gradient(circle at 70% 30%, var(--primary-light) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, var(--glow-color) 0%, transparent 50%);
            transition: var(--transition-smooth);
            pointer-events: none;
            z-index: -1;
            filter: blur(80px);
        }
#recipes .container {
            max-width: 1200px;
            width: 100%;
            padding: 2rem;
        }
#recipes .feature-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
#recipes .content-panel {
            position: relative;
            z-index: 10;
        }
#recipes .badge {
            display: inline-block;
            padding: 0.6rem 1.2rem;
            background: var(--primary-light);
            border: 1px solid var(--primary-glow);
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(12, 98, 173, 0.1);
        }
#recipes .content-slider {
            position: relative;
            height: 300px;
        }
#recipes .content-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateY(20px);
            transition: var(--transition-smooth);
            pointer-events: none;
        }
#recipes .content-item.active {
            opacity: 1;
            transform: translateY(0);
            pointer-events: all;
        }
#recipes .main-title {
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #0C62AD 0%, #CEF2FF 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -2.5px;
            filter: drop-shadow(0 2px 4px rgba(12, 98, 173, 0.1));
        }
#recipes .sinhala-title {
            font-family: 'Gemunu Libre', sans-serif;
            font-weight: 600;
            letter-spacing: 0.3px;
            background: linear-gradient(135deg, #0C62AD, #2A27DA);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
#recipes .sinhala-text {
            font-family: 'Noto Sans Sinhala', sans-serif;
            line-height: 1.9;
            font-size: 1.05rem;
            color: #444;
        }
#recipes .sinhala-text strong {
            font-family: 'Gemunu Libre', sans-serif;
            color: #0C62AD;
            font-weight: 600;
        }
#recipes .brand {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.5px;
        }
#recipes .step-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }
#recipes .step-title.sinhala-title {
            font-size: 2.2rem;
            line-height: 1.3;
        }
#recipes .step-title::before {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            border-radius: 2px;
        }
#recipes .content-item p {
            font-size: 1.15rem;
            color: var(--text-dim);
            line-height: 1.7;
            margin-bottom: 2.5rem;
            max-width: 480px;
        }
#recipes .btn-more {
            padding: 1.1rem 2.8rem;
            background: linear-gradient(135deg, #2A27DA 0%, #1a1891 100%);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            font-weight: 700;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            box-shadow: 0 12px 30px rgba(42, 39, 218, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(5px);
        }
#recipes .btn-more:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 45px rgba(42, 39, 218, 0.45);
            filter: brightness(1.15);
        }
#recipes .wheel-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
#recipes .controls {
            position: absolute;
            left: -60px;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            z-index: 20;
        }
#recipes .arrow-btn {
            width: 54px;
            height: 54px;
            background: #fff;
            border: 1px solid var(--glass-border);
            border-radius: 50%;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-smooth);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
#recipes .arrow-btn:hover {
            background: var(--primary);
            color: #fff;
            transform: scale(1.1);
            box-shadow: 0 8px 25px var(--primary-glow);
        }
#recipes .arrow-btn svg {
            width: 26px;
            height: 26px;
        }
#recipes .wheel-wrapper {
            position: relative;
            width: var(--wheel-size);
            height: var(--wheel-size);
        }
#recipes .wheel-outer-glow {
            position: absolute;
            top: -30px;
            left: -30px;
            right: -30px;
            bottom: -30px;
            border-radius: 50%;
            background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 70%);
            opacity: 0.5;
            z-index: 0;
        }
#recipes .wheel-highlight-frame {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: var(--wheel-size);
            height: calc(var(--wheel-size) / 2);
            z-index: 10;
            pointer-events: none;
            clip-path: polygon(50% 100%, 0 0, 100% 0);
            border-radius: calc(var(--wheel-size) / 2) calc(var(--wheel-size) / 2) 0 0;
            border: 2px solid rgba(42, 39, 218, 0.4);
            border-bottom: none;
            box-shadow: 0 -15px 45px rgba(42, 39, 218, 0.1);
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            background: transparent;
        }
#recipes .wheel-container:has(.segment.active:hover) .wheel-highlight-frame {
            transform: translateX(-50%) translateY(-20px);
            background: linear-gradient(180deg, rgba(42, 39, 218, 0.05) 0%, transparent 100%);
            border-color: rgba(42, 39, 218, 0.8);
            box-shadow: 0 -25px 60px rgba(42, 39, 218, 0.3);
        }
#recipes .wheel-highlight-frame::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: calc((var(--wheel-size) / 2) + 20px) calc((var(--wheel-size) / 2) + 20px) 0 0;
            background: linear-gradient(180deg, rgba(42, 39, 218, 0.1) 0%, transparent 100%);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            padding: 2px;
        }
#recipes .wheel-top-indicator {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 14px;
            height: 14px;
            background: #fff;
            border: 3px solid #2A27DA;
            border-radius: 50%;
            z-index: 20;
            box-shadow: 0 0 20px rgba(42, 39, 218, 0.5);
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
#recipes .wheel-container:has(.segment.active:hover) .wheel-top-indicator {
            transform: translateX(-50%) translateY(-15px);
        }
#recipes .wheel-top-indicator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: rgba(42, 39, 218, 0.3);
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
        }
@keyframes pulse-ring {
            0% {
                transform: translate(-50%, -50%) scale(0.5);
                opacity: 1;
            }

            100% {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }
#recipes .wheel {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(30px);
            transition: var(--transition-smooth);
            transform: rotate(0deg);
            z-index: 2;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }
#recipes .segment {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 0.5px solid rgba(12, 98, 173, 0.05);
            z-index: 1;
        }
#recipes .segment.active {
            z-index: 3;
        }
#recipes .segment.active:hover {
            filter: brightness(1.1);
        }
#recipes .seg-0 {
            clip-path: polygon(50% 50%, 0 0, 100% 0, 50% 50%);
        }
#recipes .seg-1 {
            clip-path: polygon(50% 50%, 100% 0, 100% 100%, 50% 50%);
        }
#recipes .seg-2 {
            clip-path: polygon(50% 50%, 100% 100%, 0 100%, 50% 50%);
        }
#recipes .seg-3 {
            clip-path: polygon(50% 50%, 0 100%, 0 0, 50% 50%);
        }
#recipes .segment::before {
            content: '';
            position: absolute;
            inset: 2px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
            border-radius: 50%;
            transition: var(--transition-smooth);
            opacity: 0;
        }
#recipes .segment.active::before {
            opacity: 1;
            background: radial-gradient(circle at top, rgba(42, 39, 218, 0.15), transparent 70%);
            box-shadow: inset 0 0 40px rgba(42, 39, 218, 0.05);
        }
#recipes .segment-content {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            width: 140px;
            text-align: center;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            pointer-events: none;
        }
#recipes .seg-0 .segment-content {
            top: 10%;
            left: 50%;
            transform: translateX(-50%);
        }
#recipes .seg-1 .segment-content {
            top: 50%;
            right: 10%;
            transform: translateY(-50%);
        }
#recipes .seg-2 .segment-content {
            bottom: 10%;
            left: 50%;
            transform: translateX(-50%);
        }
#recipes .seg-3 .segment-content {
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
        }
#recipes .segment-content .num {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
            opacity: 0.4;
        }
#recipes .segment-content .icon {
            width: 76px;
            height: 76px;
            border-radius: 50%;
            padding: 5px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(206, 242, 255, 0.65));
            border: 1px solid rgba(255, 255, 255, 0.9);
            opacity: 0.82;
            overflow: hidden;
            position: relative;
            box-shadow: 0 12px 28px rgba(12, 98, 173, 0.16);
            transition: var(--transition-smooth);
        }
#recipes .segment-content .icon::after {
            content: '';
            position: absolute;
            inset: 6px;
            border-radius: 50%;
            background: linear-gradient(140deg, rgba(255, 255, 255, 0.45), transparent 48%);
            pointer-events: none;
        }
#recipes .segment-content .icon img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            border-radius: 50%;
            filter: saturate(1.08) contrast(1.03);
        }
#recipes .segment-content .label {
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.7;
            transition: var(--transition-smooth);
        }
#recipes .seg-0 .segment-content {
            transform: translateX(-50%) scale(1);
        }
#recipes .seg-1 .segment-content {
            transform: translateY(-50%) rotate(-90deg);
        }
#recipes .seg-2 .segment-content {
            transform: translateX(-50%) rotate(-180deg);
        }
#recipes .seg-3 .segment-content {
            transform: translateY(-50%) rotate(-270deg);
        }
#recipes .segment.active .icon {
            opacity: 1;
            transform: scale(1.1);
            border-color: rgba(42, 39, 218, 0.35);
            box-shadow: 0 16px 34px rgba(42, 39, 218, 0.24),
                0 0 0 5px rgba(42, 39, 218, 0.08);
        }
#recipes .segment.active .label {
            opacity: 1;
            color: #2A27DA;
            font-weight: 700;
            letter-spacing: 1.5px;
        }
#recipes .segment.active .num {
            opacity: 1;
        }
#recipes .wheel-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.9);
            box-shadow: 0 4px 20px rgba(12, 98, 173, 0.1);
            backdrop-filter: blur(15px);
            overflow: hidden;
            isolation: isolate;
        }
#recipes .inner-circle {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-light) 0%, #fff 50%, var(--primary-light) 100%);
            position: absolute;
            inset: 0;
            animation: liquidMove 8s infinite alternate ease-in-out;
            opacity: 0.8;
            filter: contrast(1.2) brightness(1.1);
        }
#recipes .inner-circle::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
            border-radius: 50%;
        }
#recipes .center-logo {
            position: relative;
            z-index: 2;
            width: 84%;
            height: auto;
            max-height: 72%;
            object-fit: contain;
            filter: drop-shadow(0 3px 6px rgba(12, 98, 173, 0.22));
        }
@keyframes liquidMove {
            0% {
                border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
                transform: scale(1) rotate(0deg);
                background-position: 0% 0%;
            }

            33% {
                border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
            }

            66% {
                border-radius: 30% 70% 70% 30% / 50% 40% 30% 60%;
            }

            100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
                transform: scale(1.1) rotate(360deg);
                background-position: 100% 100%;
            }
        }
#recipes .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            perspective: 2000px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
#recipes .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
#recipes .modal-content {
            background: #ffffff;
            width: 95%;
            max-width: 1100px;
            height: 700px;
            border-radius: 40px;
            position: relative;
            display: flex;
            flex-direction: column;
            transform: translateY(60px) scale(0.92) rotateX(8deg);
            opacity: 0;
            filter: blur(15px);
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
            transform-origin: bottom center;
            box-shadow: 0 50px 150px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            z-index: 1001;
        }
#recipes .modal-body {
            display: grid !important;
            grid-template-columns: 1fr 1fr !important; 
            height: 100% !important;
            width: 100% !important;
            overflow: hidden !important;
        }
#recipes .recipe-details-panel {
            display: flex;
            flex-direction: column;
            height: 100%;
            background: #ffffff;
            position: relative;
            overflow: hidden;
            z-index: 2;
            transform: translateX(-40px);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s;
        }
#recipes .modal-overlay.active .recipe-details-panel {
            transform: translateX(0);
            opacity: 1;
        }
#recipes .recipe-visual-panel {
            height: 100%;
            position: relative;
            z-index: 1;
            background: #1A1C1E;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border-left: none;
            perspective: 1000px; 
            transform: translateX(40px) scale(0.95);
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
        }
#recipes .modal-overlay.active .recipe-visual-panel {
            transform: translateX(0) scale(1);
            opacity: 1;
        }
#recipes .image-bg-blur {
            position: absolute;
            inset: -30px;
            background-size: cover;
            background-position: center;
            filter: blur(40px) brightness(1.1);
            opacity: 0.15; 
            z-index: 0;
        }
#recipes .image-main {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            background-size: cover !important;
            background-repeat: no-repeat !important;
            background-position: center !important;
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); 
            opacity: 0;
            transform: translateY(20px); 
        }
#recipes .recipe-visual-panel:hover .image-main {
            transform: translateY(-15px) scale(1.02); 
            filter: drop-shadow(0 40px 80px rgba(0,0,0,0.3));
        }
#recipes .modal-close-icon {
            position: absolute;
            top: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
#recipes .modal-close-icon:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: rotate(90deg) scale(1.1);
        }
#recipes .modal-close-icon svg stroke {
            stroke: white;
        }
#recipes .modal-close-icon:hover svg stroke {
            stroke: #1A1C1E;
        }
#recipes .recipe-visual-panel:hover .image-main {
            transform: translateY(-5px); 
        }
#recipes .creative-header {
            padding: 50px 40px 30px;
            background: #ffffff;
            position: relative;
            flex-shrink: 0;
            overflow: hidden;
        }
#recipes .liquid-wave {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            fill: rgba(206, 242, 255, 0.5);
            z-index: 0;
            animation: waveFlow 6s linear infinite;
        }
@keyframes waveFlow {
            0% { transform: translateX(-10%) skewY(-1deg); }
            50% { transform: translateX(0%) skewY(1deg); }
            100% { transform: translateX(-10%) skewY(-1deg); }
        }
#recipes .bubble {
            position: absolute;
            background: rgba(12, 98, 173, 0.05);
            border-radius: 50%;
            animation: driftUp var(--d) linear infinite;
            z-index: 1;
        }
@keyframes driftUp {
            from { transform: translateY(100px); opacity: 0; }
            50% { opacity: 0.5; }
            to { transform: translateY(-100px); opacity: 0; }
        }
#recipes .modal-description {
            flex: 1;
            overflow-y: auto;
            padding: 0 40px 30px;
            scroll-behavior: smooth;
        }
#recipes .modal-footer {
            padding: 25px 40px;
            background: #ffffff;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-shrink: 0;
        }
@media (max-width: 600px) {
#recipes .modal-body { 
                grid-template-columns: 1fr !important; 
                overflow-y: auto !important; 
            }
#recipes .recipe-visual-panel { height: 300px; grid-row: 1; }
#recipes .recipe-details-panel { height: auto; grid-row: 2; overflow: visible; }
#recipes .modal-description { overflow: visible; padding-bottom: 20px; }
#recipes .modal-content { max-width: 95%; max-height: 95vh; overflow-y: auto; }
}
#recipes .modal-content::before {
            background: #2A27DA;
            top: -100px;
            left: -100px;
            animation: blobMove 10s infinite alternate ease-in-out;
        }
#recipes .modal-content::after {
            background: #CEF2FF;
            bottom: -100px;
            right: -100px;
            animation: blobMove 12s infinite alternate-reverse ease-in-out;
        }
@keyframes blobMove {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(100px, 50px) scale(1.2);
            }
        }
#recipes .modal-overlay.active .modal-content {
            transform: translateY(0) scale(1) rotateX(0deg);
            opacity: 1;
            filter: blur(0);
        }
#recipes .modal-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--text-dim);
            cursor: pointer;
            transition: 0.3s;
        }
#recipes .modal-close:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
#recipes .modal-close svg {
            width: 24px;
            height: 24px;
        }
#recipes .modal-header {
            display: flex;
            align-items: flex-end;
            gap: 20px;
            margin-bottom: 0;
            padding: 0;
            background: none;
            box-shadow: none;
            backdrop-filter: none;
        }
#recipes .modal-icon {
            width: 60px;
            height: 60px;
            background: var(--white);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.8);
            z-index: 3;
            overflow: hidden;
        }
#recipes .modal-icon img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
#recipes .modal-badge {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
#recipes .modal-description::-webkit-scrollbar {
            width: 8px;
        }
#recipes .modal-description::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.03);
            border-radius: 10px;
        }
#recipes .modal-description::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
            border-radius: 10px;
            border: 2px solid #fff;
        }
#recipes .recipe-content {
            font-family: 'Noto Sans Sinhala', sans-serif;
            animation: modalContentFade 0.6s ease-out;
        }
@keyframes modalContentFade {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
#recipes .recipe-section-head {
            font-family: 'Gemunu Libre', sans-serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin: 25px 0 15px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
#recipes .recipe-section-head::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--primary-light));
            border-radius: 2px;
        }
#recipes .ingredients-list {
            list-style: none;
            padding-left: 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
#recipes .ingredients-list li {
            background: rgba(12, 98, 173, 0.04);
            margin-bottom: 0;
            padding: 12px 18px;
            border-radius: 14px;
            font-size: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid rgba(12, 98, 173, 0.05);
            transition: all 0.3s ease;
        }
#recipes .ingredients-list li:hover {
            background: rgba(12, 98, 173, 0.08);
            transform: translateX(5px);
            border-color: var(--primary-glow);
        }
#recipes .recipe-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 1.5rem;
        }
#recipes .meta-tag {
            padding: 0.5rem 1rem;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
        }
#recipes .recipe-highlight {
            background: linear-gradient(135deg, rgba(12, 98, 173, 0.08), rgba(42, 39, 218, 0.08));
            padding: 15px 20px;
            border-left: 5px solid var(--primary);
            border-radius: 12px;
            margin-bottom: 20px;
            font-family: 'Gemunu Libre', sans-serif;
            font-size: 1.1rem;
            color: var(--primary);
            line-height: 1.4;
        }
#recipes .premium-badge {
            font-family: 'Outfit', sans-serif;
            font-size: 0.7rem;
            background: #FFD700;
            color: #000;
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
            margin-bottom: 5px;
            display: inline-block;
        }
#recipes .recipe-image {
            width: 100%;
            height: 220px;
            border-radius: 24px;
            background-size: cover;
            background-position: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }
#recipes .recipe-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
        }
#recipes .chefs-tip {
            margin-top: 2rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(42, 39, 218, 0.05), rgba(206, 242, 255, 0.1));
            border: 1px dashed var(--primary-glow);
            border-radius: 20px;
        }
#recipes .chefs-tip h4 {
            font-family: 'Gemunu Libre', sans-serif;
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
#recipes .chefs-tip p {
            font-size: 0.95rem;
            color: #555;
            margin: 0;
            font-style: italic;
        }
#recipes .modal-cta {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            border: none;
            border-radius: 16px;
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px var(--primary-glow);
            margin-top: 10px;
        }
#recipes .modal-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px var(--primary-glow);
            filter: brightness(1.1);
        }
#recipes .ingredients-list li .brand-tag {
            font-family: 'Outfit', sans-serif;
            font-weight: 700;
            color: var(--primary);
            font-size: 0.9rem;
        }
#recipes .steps-list {
            padding-left: 0;
            list-style: none;
            counter-reset: recipe-step;
        }
#recipes .steps-list li {
            counter-increment: recipe-step;
            margin-bottom: 18px;
            line-height: 1.8;
            position: relative;
            padding-left: 50px;
            font-size: 1.05rem;
            color: #444;
        }
#recipes .steps-list li::before {
            content: counter(recipe-step);
            position: absolute;
            left: 0;
            top: 2px;
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #fff;
            font-weight: 700;
            font-size: 0.9rem;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px var(--primary-glow);
        }
#recipes #modalTitle {
            font-family: 'Gemunu Libre', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-top: 5px;
        }
#recipes .btn-primary {
            padding: 1rem 2.5rem;
            background: #2A27DA;
            color: #fff;
            border: none;
            border-radius: 14px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition-smooth);
            box-shadow: 0 8px 20px rgba(42, 39, 218, 0.2);
        }
#recipes .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(42, 39, 218, 0.35);
        }
@media (max-width: 1024px) {
#recipes {
                --wheel-size: 420px;
            }
#recipes .feature-section {
                grid-template-columns: minmax(0, 1fr);
                text-align: center;
                gap: 2rem;
                justify-items: center;
            }
#recipes .content-panel {
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
                min-width: 0;
            }
#recipes .content-slider {
                height: 250px;
            }
#recipes .content-item p {
                margin-left: auto;
                margin-right: auto;
            }
#recipes .wheel-container {
                transform: none;
                margin-bottom: 5rem;
                min-width: 0;
            }
#recipes .controls {
                left: 50%;
                bottom: -80px;
                flex-direction: row;
                transform: translateX(-50%);
            }
}
@media (max-width: 600px) {
#recipes {
                --wheel-size: min(330px, calc(100vw - 2rem));
            }
#recipes {
                align-items: flex-start;
            }
#recipes .container {
                padding: 2rem 1rem 4rem;
                overflow: hidden;
            }
#recipes .feature-section {
                gap: 1.5rem;
            }
#recipes .main-title {
                font-size: 2.05rem;
                line-height: 1.15;
                letter-spacing: 0;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }
#recipes .content-slider {
                width: 100%;
                max-width: 310px;
                height: 360px;
                min-width: 0;
            }
#recipes .step-title,
#recipes .step-title.sinhala-title {
                justify-content: center;
                flex-direction: column;
                gap: 0.75rem;
                font-size: 1.45rem;
                line-height: 1.35;
                max-width: 310px;
            }
#recipes .step-title::before {
                width: 32px;
                height: 3px;
                flex: 0 0 auto;
            }
#recipes .content-item p {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
                max-width: 300px;
            }
#recipes .btn-more {
                padding: 0.95rem 2.2rem;
                border-radius: 14px;
            }
#recipes .wheel-container {
                width: 100%;
                margin-bottom: 5rem;
            }
#recipes .wheel-wrapper {
                margin-left: auto;
                margin-right: auto;
                max-width: 100%;
            }
#recipes .segment-content {
                width: 112px;
                gap: 0.35rem;
            }
#recipes .segment-content .icon {
                width: 62px;
                height: 62px;
                padding: 4px;
            }
#recipes .segment-content .num {
                font-size: 0.75rem;
            }
#recipes .segment-content .label {
                font-size: 0.72rem;
                letter-spacing: 0.7px;
            }
#recipes .wheel-center {
                width: 84px;
                height: 84px;
            }
}


/* Distribution Network */
#distribution * { margin: 0; padding: 0; box-sizing: border-box; }
#distribution {
            background: linear-gradient(135deg, #f5f8fc 0%, #e4edf8 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Plus Jakarta Sans', sans-serif;
            padding: 20px;
            overflow-x: hidden;
            position: relative;
        }
#distribution::before,
#distribution::after {
            content: '';
            position: absolute;
            width: 450px;
            height: 450px;
            border-radius: 50%;
            filter: blur(140px);
            opacity: 0.35;
            z-index: -1;
            pointer-events: none;
            animation: pulse-ambient 15s infinite alternate ease-in-out;
        }
#distribution::before {
            background: #2596be;
            top: 5%;
            left: 5%;
        }
#distribution::after {
            background: #CEF2FF;
            bottom: 5%;
            right: 5%;
            animation-delay: -7.5s;
        }
@keyframes pulse-ambient {
            0% { transform: scale(1) translate(0, 0); }
            100% { transform: scale(1.15) translate(40px, 30px); }
        }
#distribution #chello-weekly-routine-widget {
            --primary: #064571;
            --secondary: #2596be;
            --highlight: #CEF2FF;
            --text-dark: #1a2a3a;
            --glass: rgba(255, 255, 255, 0.55);
            --frost-border: rgba(255,255,255,0.65);
            --font-main: 'Outfit', sans-serif;
            --ease: cubic-bezier(0.23, 1, 0.32, 1);
            --region-offset: 330px;
            
            position: relative;
            width: 100%;
            max-width: 1480px;
            min-height: 780px;
            background: transparent;
            color: var(--text-dark);
            font-family: var(--font-main);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 20px 0 40px;
            margin: 0 auto;
            
            
            --city-x: 0px;
            --city-y: 0px;
            --city-s: 1;
            --city-o: 1;
            --table-x: 280px;
            --table-y: 0px;
            --table-s: 0.92;
            --table-o: 0;
            --ref-x: 520px;
            --ref-y: 0px;
            --ref-s: 0.92;
            --ref-o: 0;
            --days-x: 700px;
            --days-y: 0px;
            --days-s: 0.92;
            --days-o: 0;
        }
#distribution #chello-weekly-routine-widget * { box-sizing: border-box; }
#distribution #chello-weekly-routine-widget::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1100px;
            height: 1100px;
            background: radial-gradient(circle, rgba(37,150,190,0.08) 0%, transparent 75%);
            z-index: 0;
            pointer-events: none;
        }
@keyframes slide-up-entrance {
            from {
                opacity: 0;
                transform: translateY(25px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
#distribution .header {
            text-align: center;
            margin-bottom: 1.5rem;
            z-index: 10;
            position: relative;
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            opacity: 1;
            max-height: 150px;
            transform: translateY(0);
            animation: slide-up-entrance 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .header,
#distribution #chello-weekly-routine-widget.hide-header .header {
            opacity: 0;
            max-height: 0;
            margin-bottom: 0;
            transform: translateY(-40px);
            pointer-events: none;
            animation: none !important;
        }
#distribution .header h1 {
            font-weight: 800;
            font-size: clamp(1.8rem, 3.5vw, 3.2rem);
            text-transform: uppercase;
            letter-spacing: -1px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 0.2rem;
            filter: drop-shadow(0 10px 20px rgba(6,69,113,0.12));
        }
#distribution .header p { color: rgba(26,42,58,0.65); font-weight: 600; font-size: 1rem; letter-spacing: 1.2px; }
#distribution .back-btn {
            position: absolute; top: 28px; left: 28px;
            background: rgba(255,255,255,0.92); backdrop-filter: blur(18px);
            border: 1px solid rgba(6,69,113,0.18); border-radius: 40px;
            padding: 10px 24px; font-weight: 700; font-family: var(--font-main);
            color: var(--primary); cursor: pointer; opacity: 0; pointer-events: none;
            transition: all 0.5s var(--ease); z-index: 200;
            display: flex; align-items: center; gap: 8px; font-size: 0.9rem;
            box-shadow: 0 8px 20px rgba(6,69,113,0.08);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .back-btn { opacity: 0; pointer-events: none; }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .back-btn { opacity: 1; pointer-events: all; }
#distribution .back-btn:hover { background: var(--primary); color: white; transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 28px rgba(6,69,113,0.25); border-color: transparent; }
#distribution .ui-container { 
            position: relative; 
            width: 100%; 
            height: 600px; 
            margin: 0 auto; 
            z-index: 5; 
            transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        }
@media (min-width: 901px) {
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .ui-container,
#distribution #chello-weekly-routine-widget.hide-header .ui-container {
                height: 660px;
            }
}
#distribution #connections-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 50; }
#distribution .carousel-container {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            display: flex; justify-content: center; align-items: center;
            perspective: 2500px; z-index: 60;
        }
#distribution .days-wrapper { position: relative; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; transform-style: preserve-3d; }
#distribution .nav-btn {
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 60px; height: 60px; border-radius: 50%;
            background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.7); color: var(--primary);
            cursor: pointer; z-index: 200; display: flex; justify-content: center; align-items: center;
            transition: all 0.4s var(--ease); box-shadow: 0 12px 28px rgba(6,69,113,0.12);
        }
#distribution #chello-weekly-routine-widget:not([data-mode="carousel"]) .nav-btn { opacity: 0; pointer-events: none; }
#distribution .nav-btn:hover { background: var(--primary); color: white; transform: translateY(-50%) scale(1.08); }
#distribution .nav-btn.left { left: 20px; }
#distribution .nav-btn.right { right: 20px; }
#distribution .day-card {
            position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
            width: 220px; height: 220px; border-radius: 50%; cursor: pointer;
            transition: all 0.8s var(--ease); user-select: none;
            box-shadow: 0 15px 35px rgba(6,69,113,0.12); text-align: center; z-index: 1;
            border: 3px solid rgba(255,255,255,0.9); overflow: visible; background: transparent;
        }
#distribution .card-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #ffffff; border-radius: inherit; transition: all 0.5s var(--ease); }
#distribution .card-content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .day-card:not(.active):hover { transform: translate(-50%, -50%) scale(1.05) !important; box-shadow: 0 18px 45px rgba(37,150,190,0.3); }
#distribution .day-card .day-label { font-size: 4rem; margin-bottom: 8px; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.05)); }
#distribution .day-card .day-sub { font-size: 1.1rem; text-transform: uppercase; font-weight: 800; letter-spacing: 1.2px; color: #064571; }
#distribution #chello-weekly-routine-widget[data-mode="city-preview"] {
            --city-x: -460px; --city-s: 1.0; --city-o: 1;
            --table-x: 180px; --table-o: 1; --table-s: 1;
            --ref-o: 0; --days-o: 0;
        }
#distribution #chello-weekly-routine-widget[data-mode="route-expanded"] {
            --city-x: -600px; --city-s: 0.5; --city-o: 0;
            --table-x: -290px; --table-o: 1; --table-s: 0.94;
            --ref-x: 410px; --ref-o: 1; --ref-s: 1.05;
            --days-o: 0;
        }
#distribution #chello-weekly-routine-widget[data-mode="day-visualization"] {
            --city-x: -600px; --city-s: 0.5; --city-o: 0;
            --table-x: -600px; --table-s: 0.85; --table-o: 0;
            --ref-x: -195px; --ref-o: 1; --ref-s: 0.98;
            --days-x: 330px; --days-o: 1; --days-s: 1;
        }
@media (max-width: 1200px) {
#distribution #chello-weekly-routine-widget[data-mode="city-preview"] { --city-x: -280px; --table-x: 130px; --table-s: 0.9; }
#distribution #chello-weekly-routine-widget[data-mode="route-expanded"] { --city-x: -450px; --table-x: -270px; --table-s: 0.8; --ref-x: 280px; --ref-s: 0.85; }
#distribution #chello-weekly-routine-widget[data-mode="day-visualization"] { --ref-x: -120px; --ref-s: 0.85; --days-x: 270px; --days-s: 0.9; }
}
@media (max-width: 900px) {
#distribution .ui-container { height: 820px; }
#distribution #chello-weekly-routine-widget { --city-x: 0px; --city-y: 0px; --table-x: 0px; --table-y: 150px; --ref-x: 0px; --ref-y: 360px; --days-x: 0px; --days-y: 570px; }
#distribution #chello-weekly-routine-widget[data-mode="city-preview"] { --city-y: -260px; --city-x: 0px; --table-y: 140px; --table-x: 0px; --table-o: 1; --table-s: 1; }
#distribution #chello-weekly-routine-widget[data-mode="route-expanded"] { --city-o: 0; --table-y: -220px; --table-x: 0px; --table-o: 1; --table-s: 1; --ref-y: 180px; --ref-x: 0px; --ref-o: 1; }
#distribution #chello-weekly-routine-widget[data-mode="day-visualization"] { --table-o: 0; --ref-y: -60px; --ref-x: 0px; --days-y: 240px; --days-x: 0px; --days-o: 1; }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                width: 200px;
                height: 200px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-label {
                font-size: 4rem;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked {
                width: 150px;
                height: 150px;
            }
}
#distribution #chello-weekly-routine-widget:not([data-mode="carousel"]):not([data-mode="region-select"]) .day-card.active {
            transform: translate(calc(-50% + var(--city-x)), calc(-50% + var(--city-y))) scale(var(--city-s)) !important;
            opacity: var(--city-o) !important;
            cursor: default;
            transition: all 0.9s var(--ease) !important;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="carousel"]):not([data-mode="region-select"]) .day-card:not(.active) { opacity: 0 !important; pointer-events: none !important; }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 320px;
            height: 320px;
            transform: translate(var(--region-x), -50%) scale(1);
            opacity: 1;
            pointer-events: all;
            transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
            border: 4px solid rgba(255,255,255,0.95);
            box-shadow: 0 20px 50px rgba(6,69,113,0.18), inset 0 0 0 1px rgba(255,255,255,0.4);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card::before {
            content: '';
            position: absolute;
            inset: -12px;
            border-radius: 50%;
            padding: 0;
            border: 3px dashed rgba(37,150,190,0.62);
            background: none;
            -webkit-mask: none;
            mask: none;
            pointer-events: none;
            opacity: 1;
            z-index: -1;
            transition: opacity 0.5s;
            animation: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card::after {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            padding: 0;
            border: 1px solid rgba(6,69,113,0.08);
            background: none;
            -webkit-mask: none;
            mask: none;
            pointer-events: none;
            opacity: 1;
            z-index: 0;
            filter: none;
            transition: opacity 0.5s;
            animation: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-label {
            font-size: 7.5rem;
            margin-bottom: 8px;
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.06));
            transition: all 0.6s var(--ease);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
            font-size: 1.8rem;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            color: #064571;
            transition: all 0.6s var(--ease);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked {
            width: 220px;
            height: 220px;
            transform: translate(var(--region-x), -50%) scale(1) !important;
            box-shadow: 0 15px 35px rgba(6,69,113,0.12) !important;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked::before,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked::after {
            opacity: 0;
            animation: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked .day-label {
            font-size: 4rem;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked .day-sub {
            font-size: 1.1rem;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered {
            transform: translate(var(--region-x), -50%) scale(1.06) !important;
            box-shadow: 0 30px 70px rgba(6,69,113,0.35), 0 0 0 10px rgba(37,150,190,0.15);
            border-color: #ffffff;
            z-index: 10;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .card-bg {
            background: linear-gradient(135deg, #2596be, #064571, #2596be);
            background-size: 200% 200%;
            animation: gradient-flow 6s ease infinite;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .day-label {
            transform: scale(1.1) translateY(-5px);
            filter: drop-shadow(0 15px 25px rgba(0,0,0,0.25));
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .day-sub {
            color: white;
            text-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.dimmed {
            opacity: 0.3 !important;
            transform: translate(var(--region-x), -50%) scale(0.9) !important;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.entering {
            opacity: 0 !important;
            transform: translate(var(--region-x), -50%) scale(0.4) rotateY(45deg) !important;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.fade-completely {
            opacity: 0 !important;
            transform: translate(var(--region-x), -50%) scale(0.6) !important;
            filter: blur(12px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }
#distribution .panel { position: absolute; top: 50%; left: 50%; pointer-events: none; z-index: 100; transition: all 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1); }
#distribution #chello-weekly-routine-widget[data-mode="city-preview"] #route-table-panel,
#distribution #chello-weekly-routine-widget[data-mode="route-expanded"] #route-table-panel { pointer-events: all; }
#distribution #chello-weekly-routine-widget[data-mode="route-expanded"] #ref-details-panel,
#distribution #chello-weekly-routine-widget[data-mode="day-visualization"] #ref-details-panel { pointer-events: all; }
#distribution #chello-weekly-routine-widget[data-mode="day-visualization"] #day-nodes-container { pointer-events: all; }
#distribution .route-table-panel {
            width: 820px;
            height: 500px;
            display: flex;
            flex-direction: column;
            transform: translate(-50%, -50%) translate(var(--table-x), var(--table-y)) scale(var(--table-s));
            opacity: var(--table-o);
            background: rgba(255, 255, 255, 0.42);
            backdrop-filter: blur(28px) saturate(180%);
            -webkit-backdrop-filter: blur(28px) saturate(180%);
            border-radius: 32px;
            border: 1.2px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 30px 70px rgba(6, 69, 113, 0.06), inset 0 0 0 1.5px rgba(255, 255, 255, 0.6);
            padding: 32px 28px;
            transition: all 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            overflow: hidden;
        }
#distribution .table-scroll-container {
            flex: 1;
            overflow-y: auto;
            margin-right: -10px;
            padding-right: 10px;
        }
#distribution .table-scroll-container::-webkit-scrollbar {
            width: 6px;
        }
#distribution .table-scroll-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
        }
#distribution .table-scroll-container::-webkit-scrollbar-thumb {
            background: rgba(6, 69, 113, 0.2);
            border-radius: 10px;
            transition: all 0.3s;
        }
#distribution .table-scroll-container::-webkit-scrollbar-thumb:hover {
            background: rgba(6, 69, 113, 0.4);
        }
#distribution .route-table-panel::after {
            content: ''; position: absolute; top: 0; left: 0; right: 0; height: 45px;
            background: linear-gradient(to bottom, rgba(255,255,255,0.3) 0%, transparent 100%);
            pointer-events: none; z-index: 1;
        }
#distribution .panel-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; position: relative; z-index: 2; }
#distribution .panel-icon { width: 52px; height: 52px; background: rgba(6,69,113,0.12); border-radius: 28px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; backdrop-filter: blur(5px); }
#distribution .panel-icon svg { width: 26px; height: 26px; display: block; color: var(--primary); }
#distribution .ph-title { font-size: 1.55rem; font-weight: 800; color: var(--primary); letter-spacing: -0.3px; }
#distribution .ph-sub { font-size: 0.85rem; font-weight: 600; color: rgba(26,42,58,0.65); letter-spacing: 0.8px; margin-top: 4px; }
#distribution .route-table { width: 100%; border-collapse: separate; border-spacing: 0 10px; position: relative; z-index: 2; }
#distribution .route-table th { 
            text-align: left; padding: 12px 20px; color: #245e8a; font-size: 0.75rem; 
            font-weight: 800; text-transform: uppercase; letter-spacing: 1.6px; 
            border-bottom: 1.2px solid rgba(6,69,113,0.15); font-family: var(--font-main); 
        }
#distribution .route-table td { padding: 18px 20px; font-weight: 700; font-size: 0.95rem; color: #0b3b55; background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(4px); transition: all 0.35s; }
@keyframes row-entrance {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
#distribution .route-row { 
            cursor: pointer; 
            transition: all 0.35s var(--ease); 
            overflow: hidden; 
            opacity: 0;
            animation: row-entrance 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }
#distribution .route-row td:first-child { border-radius: 24px 0 0 24px; }
#distribution .route-row td:last-child { border-radius: 0 24px 24px 0; }
#distribution .route-row:hover td { background: rgba(255, 255, 255, 0.75); transform: scale(1.005); color: #064571; }
#distribution .route-row.active td { background: linear-gradient(105deg, rgba(6,69,113,0.88), rgba(37,150,190,0.88)); color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.1); box-shadow: 0 12px 22px rgba(6,69,113,0.2); }
#distribution .live-tag-mini { display: inline-flex; align-items: center; gap: 6px; background: #2ecc71; color: white; padding: 4px 12px; border-radius: 40px; font-size: 0.7rem; font-weight: 800; margin-left: 12px; box-shadow: 0 4px 12px rgba(46,204,113,0.3); }
#distribution .live-tag-mini::before { content: ''; width: 6px; height: 6px; background: white; border-radius: 50%; animation: live-blink 1.2s infinite; }
@keyframes live-blink { 0% { opacity: 0.4; } 100% { opacity: 1; } }
#distribution .ref-details-panel {
            width: 400px;
            transform: translate(-50%, -50%) translate(var(--ref-x), var(--ref-y)) scale(var(--ref-s));
            opacity: var(--ref-o);
            background: rgba(245, 249, 255, 0.48);
            backdrop-filter: blur(30px) saturate(190%);
            -webkit-backdrop-filter: blur(30px) saturate(190%);
            border-radius: 28px;
            border: 1.2px solid rgba(255,255,255,0.7);
            box-shadow: 0 35px 80px rgba(6, 69, 113, 0.08), inset 0 1px 0 rgba(255,255,255,0.5);
            padding: 26px 26px 30px;
        }
@keyframes detail-fade-in {
            from {
                opacity: 0;
                transform: translateY(12px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
#distribution .ref-details-panel.active .ref-header,
#distribution .ref-details-panel.active .dairy-badges,
#distribution .ref-details-panel.active .ref-stats-grid,
#distribution .ref-details-panel.active .route-progress,
#distribution .ref-details-panel.active .view-schedule-btn,
#distribution .ref-details-panel.active .ref-footer-days {
            opacity: 0;
            animation: detail-fade-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }
#distribution .ref-details-panel.active .ref-header { animation-delay: 0.05s; }
#distribution .ref-details-panel.active .dairy-badges { animation-delay: 0.1s; }
#distribution .ref-details-panel.active .ref-stats-grid { animation-delay: 0.15s; }
#distribution .ref-details-panel.active .route-progress { animation-delay: 0.2s; }
#distribution .ref-details-panel.active .view-schedule-btn { animation-delay: 0.25s; }
#distribution .ref-details-panel.active .ref-footer-days { animation-delay: 0.3s; }
#distribution .ref-header { display: flex; align-items: center; gap: 18px; margin-bottom: 18px; }
#distribution .ref-avatar-wrapper { position: relative; width: 68px; height: 68px; }
#distribution .ref-avatar-cool { width: 100%; height: 100%; border-radius: 50%; background: linear-gradient(135deg, #f0f9ff, var(--primary)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: white; border: 3px solid white; box-shadow: 0 12px 24px rgba(6,69,113,0.2); overflow: hidden; }
#distribution .ref-avatar-cool img { width: 100%; height: 100%; object-fit: cover; }
#distribution .online-indicator {
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 18px;
            height: 18px;
            background: #2ecc71;
            border-radius: 50%;
            border: 3px solid white;
            z-index: 2;
            animation: status-pulse 2s infinite ease-in-out;
        }
@keyframes status-pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.8);
            }
            70% {
                box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
            }
        }
#distribution .ref-title h3 { font-size: 1.45rem; font-weight: 800; color: var(--primary); letter-spacing: -0.3px; }
#distribution .ref-phone { font-size: 0.8rem; color: var(--text-dark); font-weight: 600; opacity: 0.75; }
#distribution .dairy-badges { display: flex; gap: 12px; margin-bottom: 16px; }
#distribution .d-badge { padding: 6px 14px; border-radius: 40px; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.55); backdrop-filter: blur(5px); color: #064571; border: 0.5px solid rgba(255,255,255,0.7); }
#distribution .ref-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
#distribution .stat-box { background: rgba(255,255,255,0.65); backdrop-filter: blur(8px); padding: 10px 12px; border-radius: 24px; border: 0.5px solid rgba(255,255,255,0.7); }
#distribution .s-label { display: block; font-size: 0.68rem; text-transform: uppercase; color: #2596be; font-weight: 800; letter-spacing: 1px; }
#distribution .s-value { font-size: 1.05rem; font-weight: 800; color: #064571; }
#distribution .route-progress { margin-bottom: 22px; }
#distribution .route-progress-header { display: flex; justify-content: space-between; font-size: 0.7rem; font-weight: 800; margin-bottom: 6px; color: var(--primary); }
#distribution .progress-bar { width: 100%; height: 7px; background: rgba(6,69,113,0.15); border-radius: 12px; overflow: hidden; }
#distribution .progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 12px; width: 0%; transition: width 1s cubic-bezier(0.2, 0.9, 0.4, 1.1); }
#distribution .view-schedule-btn { width: 100%; padding: 12px; border-radius: 30px; border: none; background: linear-gradient(105deg, var(--primary), var(--secondary)); color: white; font-weight: 800; font-size: 0.9rem; cursor: pointer; box-shadow: 0 8px 22px rgba(6,69,113,0.3); transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
#distribution .view-schedule-btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(6,69,113,0.4); }
#distribution .day-nodes-container { transform: translate(-50%, -50%) translate(var(--days-x), var(--days-y)) scale(var(--days-s)); opacity: var(--days-o); z-index: 120; }
#distribution .day-nodes-list { display: flex; flex-direction: column; gap: 16px; }
@keyframes day-node-entrance {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(12px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
#distribution .mini-day-node {
            width: 68px; height: 68px; border-radius: 50%; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px);
            display: flex; justify-content: center; align-items: center; font-weight: 800; font-size: 1rem;
            color: var(--secondary); cursor: pointer; transition: all 0.3s var(--ease);
            border: 2px solid white; position: relative; box-shadow: 0 8px 18px rgba(0,0,0,0.08);
            opacity: 0;
            animation: day-node-entrance 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
        }
#distribution .mini-day-node.active-day { background: linear-gradient(145deg, var(--primary), var(--secondary)); color: white; border-color: #CEF2FF; box-shadow: 0 10px 25px rgba(6,69,113,0.35); }
#distribution .mini-day-node.holiday-day { 
            background: linear-gradient(145deg, #ff4b4b, #cc0000); 
            color: white; 
            border-color: #ffe6e6; 
            box-shadow: 0 10px 25px rgba(204, 0, 0, 0.35);
            cursor: default;
        }
#distribution .mini-day-node.holiday-day::before {
            content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; border-radius: 50%;
            border: 2.5px solid #ff4b4b; animation: pulse-holiday 2s infinite cubic-bezier(0.2, 0.9, 0.4, 1);
            pointer-events: none;
        }
@keyframes pulse-holiday {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.45); opacity: 0; }
        }
#distribution .holiday-badge-label {
            position: absolute; left: 130%; top: 50%; transform: translateY(-50%);
            background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); color: #cc0000; padding: 6px 18px;
            border-radius: 34px; font-size: 0.8rem; font-weight: 800; white-space: nowrap;
            box-shadow: 0 15px 32px rgba(204, 0, 0, 0.2); border: 1.5px solid #ffe6e6;
            opacity: 1; pointer-events: none; z-index: 10;
        }
#distribution .time-badge {
            position: absolute; left: 130%; top: 50%; transform: translateY(-50%) translateX(-20px);
            background: rgba(255,255,255,0.98); backdrop-filter: blur(12px); color: #064571; padding: 6px 18px;
            border-radius: 34px; font-size: 0.8rem; font-weight: 800; white-space: nowrap;
            box-shadow: 0 15px 32px rgba(0,0,0,0.15); opacity: 0; pointer-events: none;
            transition: all 0.4s cubic-bezier(0.2,0.9,0.4,1.2); border: 1px solid white;
        }
#distribution .mini-day-node.show-time .time-badge { opacity: 1; transform: translateY(-50%) translateX(0); pointer-events: auto; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes fadeIn { to { opacity: 1; } }
#distribution .connection-path,
#distribution .connection-path-glow,
#distribution .connection-track { fill: none; stroke-linecap: round; }
#distribution .connection-path { stroke: url(#lineGradientWidget); stroke-width: 4; }
#distribution .connection-path-glow { stroke: var(--secondary); stroke-width: 10; opacity: 0.35; filter: blur(5px); }
#distribution .connection-track { stroke: rgba(6,69,113,0.25); stroke-width: 2.5; stroke-dasharray: 6 10; }
#distribution .connection-end-dot { fill: white; stroke: var(--primary); stroke-width: 3; transform-origin: center; animation: pulse-dot 2.2s infinite alternate; }
@keyframes pulse-dot { 0% { r: 4; opacity: 0.7; } 100% { r: 6; opacity: 1; } }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active {
            width: 220px !important;
            height: 220px !important;
            border-width: 2px !important;
            box-shadow: 0 15px 35px rgba(6,69,113,0.1) !important;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .city-svg-icon,
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .tree-svg-icon {
            width: 64px !important;
            height: 64px !important;
            margin-bottom: 8px !important;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .day-sub {
            font-size: 1.25rem !important;
            margin-bottom: 2px !important;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .city-desc,
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .city-divider {
            opacity: 0 !important;
            max-height: 0 !important;
            margin: 0 !important;
            overflow: hidden;
            transition: all 0.4s var(--ease);
        }
#distribution .top-divider-flow {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            width: 100%;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.6s var(--ease);
        }
#distribution .divider-dot-line {
            flex: 1;
            height: 2px;
            position: relative;
        }
#distribution .divider-dot-line::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            border-top: 2px dotted rgba(6,69,113,0.3);
        }
#distribution .divider-drop-circle {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            border: 1.5px solid rgba(6,69,113,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(6,69,113,0.08);
        }
#distribution .divider-drop-circle .drop-svg {
            width: 14px;
            height: 14px;
        }
#distribution .central-flow-elements {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            width: 100%;
            height: 100%;
            transition: all 0.6s var(--ease);
        }
#distribution .center-column {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            gap: 20px;
        }
#distribution .center-flow-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1.5px solid rgba(255, 255, 255, 0.85);
            border-radius: 20px;
            padding: 10px 18px;
            width: 240px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 10px 30px rgba(6, 69, 113, 0.05);
            transition: all 0.4s var(--ease);
            pointer-events: all;
        }
#distribution .center-flow-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(6, 69, 113, 0.1);
            background: rgba(255, 255, 255, 0.9);
            border-color: rgba(37, 150, 190, 0.3);
        }
#distribution .cf-icon-wrapper {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(37, 150, 190, 0.1);
            color: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.15rem;
            flex-shrink: 0;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.03);
        }
#distribution .cf-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
            text-align: left;
        }
#distribution .cf-title {
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--primary);
        }
#distribution .cf-desc {
            font-size: 0.72rem;
            font-weight: 600;
            color: rgba(26, 42, 58, 0.6);
        }
#distribution .center-truck-node {
            position: relative;
            width: 88px;
            height: 88px;
            z-index: 5;
            transition: all 0.4s var(--ease);
        }
#distribution .truck-circle-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid rgba(6, 69, 113, 0.1);
            box-shadow: 0 10px 25px rgba(6, 69, 113, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s var(--ease);
        }
#distribution .center-truck-node::before {
            content: '';
            position: absolute;
            inset: -7px;
            border-radius: 50%;
            border: 2px dashed rgba(37, 150, 190, 0.45);
            animation: none;
        }
#distribution .bottom-stats-bar {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 60px);
            max-width: 1100px;
            background: rgba(255, 255, 255, 0.45);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-radius: 24px;
            border: 1.2px solid rgba(255, 255, 255, 0.75);
            box-shadow: 0 15px 35px rgba(6, 69, 113, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 14px 20px;
            gap: 15px;
            z-index: 10;
            transition: all 0.6s var(--ease);
        }
#distribution .stat-bar-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 12px;
        }
#distribution .stat-bar-item:not(:last-child) {
            border-right: 1.5px solid rgba(6, 69, 113, 0.08);
        }
#distribution .sbi-icon-wrapper {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(37, 150, 190, 0.15), rgba(6, 69, 113, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--primary);
            box-shadow: 0 4px 10px rgba(6, 69, 113, 0.05);
            flex-shrink: 0;
        }
#distribution .sbi-text {
            display: flex;
            flex-direction: column;
            gap: 1px;
            text-align: left;
        }
#distribution .sbi-val {
            font-size: 1.1rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.3px;
        }
#distribution .sbi-label {
            font-size: 0.75rem;
            font-weight: 600;
            color: rgba(26, 42, 58, 0.6);
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .central-flow-elements,
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .bottom-stats-bar,
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .top-divider-flow {
            opacity: 0 !important;
            visibility: hidden !important;
            transform: translate(-50%, calc(-50% + 20px)) scale(0.95);
            pointer-events: none !important;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .top-divider-flow {
            transform: translateY(-10px);
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .bottom-stats-bar {
            transform: translate(-50%, 20px);
        }
@media (max-width: 1200px) {
#distribution #chello-weekly-routine-widget {
                --region-offset: 260px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                width: 250px;
                height: 250px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-svg-icon,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .tree-svg-icon {
                width: 75px;
                height: 75px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
                font-size: 1.4rem;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-desc {
                font-size: 0.8rem;
            }
#distribution .center-flow-card {
                width: 200px;
                padding: 8px 12px;
            }
#distribution .cf-title { font-size: 0.82rem; }
#distribution .cf-desc { font-size: 0.68rem; }
#distribution .center-truck-node { width: 75px; height: 75px; }
}
@media (max-width: 900px) {
#distribution #chello-weekly-routine-widget {
                --region-offset: 190px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                width: 190px;
                height: 190px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-svg-icon,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .tree-svg-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 8px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
                font-size: 1.1rem;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-desc {
                display: none;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-divider {
                display: none;
            }
#distribution .central-flow-elements {
                display: none !important;
            }
#distribution .bottom-stats-bar {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 12px;
                width: calc(100% - 30px);
                bottom: 10px;
            }
#distribution .stat-bar-item:nth-child(2) {
                border-right: none;
            }
#distribution .stat-bar-item {
                padding: 0 5px;
            }
}
@media (max-width: 500px) {
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .carousel-container {
                align-items: flex-start;
                padding-top: 30px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .days-wrapper {
                flex-direction: column;
                justify-content: flex-start;
                gap: 20px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                position: relative !important;
                left: auto !important;
                top: auto !important;
                transform: none !important;
                width: 160px !important;
                height: 160px !important;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.clicked {
                transform: scale(0.9) !important;
            }
#distribution .bottom-stats-bar {
                grid-template-columns: 1fr;
                gap: 8px;
            }
#distribution .stat-bar-item {
                border-right: none !important;
            }
}

/* Door-to-Door town route search */
#distribution .town-route-search {
    position: relative;
    z-index: 230;
    width: min(700px, calc(100% - 30px));
    margin: 24px auto 18px;
    padding: 8px;
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.58), rgba(232,246,253,0.32));
    border: 1px solid rgba(255,255,255,0.72);
    box-shadow:
        0 24px 54px rgba(6,69,113,0.1),
        inset 0 1px 0 rgba(255,255,255,0.8);
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    text-align: left;
}
#distribution .town-route-search > label {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    margin: 0 0 6px 18px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.66);
    color: #064571;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
#distribution .town-search-form { position: relative; }
#distribution .town-search-control {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    min-height: 58px;
    padding: 6px 7px 6px 12px;
    border: 1px solid rgba(6, 69, 113, 0.11);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 13px 32px rgba(6, 69, 113, 0.12);
    backdrop-filter: blur(18px);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
#distribution .town-search-control:focus-within {
    border-color: rgba(37, 150, 190, 0.62);
    box-shadow: 0 22px 55px rgba(6, 69, 113, 0.19), 0 0 0 4px rgba(37, 150, 190, 0.1);
    transform: translateY(-2px);
}
#distribution .town-search-icon {
    width: 23px;
    height: 23px;
    color: #2596be;
    justify-self: center;
}
#distribution #townSearchInput {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0b3b55;
    font: 700 0.98rem/1.35 var(--font-main);
    padding: 10px 12px 10px 2px;
}
#distribution #townSearchInput::placeholder { color: rgba(26, 42, 58, 0.47); font-weight: 600; }
#distribution #townSearchInput::-webkit-search-cancel-button { cursor: pointer; }
#distribution .town-search-btn {
    border: 0;
    border-radius: 16px;
    padding: 14px 21px;
    background: linear-gradient(135deg, #064571, #2596be);
    color: #fff;
    font: 800 0.86rem/1 var(--font-main);
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(6, 69, 113, 0.23);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
#distribution .town-search-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 27px rgba(6, 69, 113, 0.3); }
#distribution .town-search-hint {
    min-height: 20px;
    margin: 8px 14px 0;
    color: rgba(26, 42, 58, 0.62);
    font-size: 0.76rem;
    font-weight: 700;
    text-align: center;
}
#distribution .town-search-hint.search-success,
#distribution .town-search-hint.search-error {
    width: fit-content;
    max-width: calc(100% - 24px);
    margin-left: auto;
    margin-right: auto;
    padding: 5px 12px;
    border-radius: 999px;
}
#distribution .town-search-hint.search-success {
    color: #087a5c;
    background: rgba(15, 166, 116, 0.1);
}
#distribution .town-search-hint.search-error {
    color: #b33a3a;
    background: rgba(179, 58, 58, 0.1);
}
#distribution .town-search-suggestions {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    max-height: 330px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(6, 69, 113, 0.14);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 25px 60px rgba(6, 69, 113, 0.22);
    backdrop-filter: blur(22px);
}
#distribution .town-search-suggestions.open { display: block; animation: townSuggestionsIn 0.22s ease both; }
@keyframes townSuggestionsIn { from { opacity: 0; transform: translateY(-7px); } to { opacity: 1; transform: translateY(0); } }
#distribution .town-suggestion-item {
    width: 100%;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    color: #0b3b55;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
#distribution .town-suggestion-item:hover,
#distribution .town-suggestion-item:focus-visible { background: rgba(37, 150, 190, 0.1); transform: translateX(3px); outline: 0; }
#distribution .town-suggestion-pin {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(37, 150, 190, 0.12);
    color: #064571;
    font-weight: 900;
}
#distribution .town-suggestion-copy { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
#distribution .town-suggestion-copy strong { font-size: 0.91rem; }
#distribution .town-suggestion-copy small { color: rgba(26, 42, 58, 0.62); font-size: 0.74rem; font-weight: 600; }
#distribution .town-suggestion-zone {
    max-width: 170px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #edf8fc;
    color: #17698d;
    font-size: 0.68rem;
    font-weight: 800;
    text-align: center;
}
#distribution .town-no-result { padding: 18px 14px; color: #8a4d4d; font-size: 0.82rem; font-weight: 700; text-align: center; }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .town-route-search,
#distribution #chello-weekly-routine-widget.hide-header .town-route-search { display: none; }

#distribution .matched-town-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: -4px 0 12px;
    padding: 10px 14px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(37, 150, 190, 0.13), rgba(206, 242, 255, 0.45));
    border: 1px solid rgba(37, 150, 190, 0.18);
    color: #17698d;
    font-size: 0.75rem;
    font-weight: 700;
}
#distribution .matched-town-banner strong { color: #064571; font-size: 0.9rem; }
#distribution .route-region-cell { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
#distribution .route-town-preview {
    margin-top: 5px;
    color: #24789b;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.25;
}
#distribution .searched-town-confirmation {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3px 10px;
    align-items: center;
    margin: 0 0 13px;
    padding: 12px 14px;
    border-radius: 17px;
    background: linear-gradient(135deg, rgba(22, 156, 111, 0.11), rgba(255, 255, 255, 0.58));
    border: 1px solid rgba(22, 156, 111, 0.17);
}
#distribution .searched-town-confirmation span { color: #087a5c; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
#distribution .searched-town-confirmation strong { color: #064571; font-size: 1rem; }
#distribution .searched-town-confirmation small { grid-column: 1 / -1; color: rgba(26, 42, 58, 0.6); font-size: 0.72rem; font-weight: 700; }
#distribution .route-coverage-card {
    margin: 0 0 15px;
    padding: 12px 13px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(6, 69, 113, 0.1);
}
#distribution .coverage-label { display: block; margin-bottom: 8px; color: #17698d; font-size: 0.67rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
#distribution .coverage-chips { display: flex; flex-wrap: wrap; gap: 6px; }
#distribution .coverage-chips span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #eef8fc;
    color: #0c5b7d;
    font-size: 0.67rem;
    font-weight: 800;
}
@media (max-width: 700px) {
    #distribution .town-route-search { width: calc(100% - 12px); margin-top: 16px; padding: 6px; border-radius: 24px; }
    #distribution .town-route-search > label { margin-left: 12px; font-size: 0.66rem; }
    #distribution .town-search-control { grid-template-columns: 36px minmax(0, 1fr); padding: 7px 9px; border-radius: 18px; }
    #distribution .town-search-btn { grid-column: 1 / -1; width: 100%; margin-top: 3px; padding: 12px; }
    #distribution .town-suggestion-item { grid-template-columns: 32px minmax(0, 1fr); }
    #distribution .town-suggestion-zone { grid-column: 2; justify-self: start; max-width: 100%; }
}

#distribution {
            align-items: flex-start;
            justify-content: center;
            padding: 34px 24px;
            background:
                linear-gradient(135deg, #f8fbff 0%, #edf5fb 48%, #eaf4f9 100%);
        }
#distribution::before,
#distribution::after,
#distribution #chello-weekly-routine-widget::before {
            display: none;
        }
#distribution #chello-weekly-routine-widget {
            --region-offset: 365px;
            max-width: 1500px;
            min-height: 980px;
            justify-content: flex-start;
            padding: 0 0 34px;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] * {
            letter-spacing: 0;
        }
#distribution .header {
            width: 100%;
            margin-bottom: 6px;
            padding-top: 10px;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .header {
            max-height: none;
            overflow: visible;
            margin-bottom: 18px;
        }
#distribution .header h1 {
            font-size: 3.75rem;
            line-height: 1;
            letter-spacing: 0;
            margin-bottom: 12px;
            text-shadow: 0 16px 32px rgba(6, 69, 113, 0.16);
        }
#distribution .header p {
            font-size: 1.05rem;
            letter-spacing: 0;
            color: rgba(26, 42, 58, 0.66);
        }
#distribution .top-divider-flow {
            max-width: 325px;
            gap: 18px;
            margin-top: 18px;
        }
#distribution .divider-dot-line::before {
            border-top: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(37, 150, 190, 0.78));
        }
#distribution .divider-dot-line:last-child::before {
            background: linear-gradient(90deg, rgba(37, 150, 190, 0.78), transparent);
        }
#distribution .divider-drop-circle {
            width: 34px;
            height: 34px;
            border: 2px solid rgba(6, 69, 113, 0.28);
            box-shadow: 0 10px 22px rgba(6, 69, 113, 0.12);
        }
#distribution .ui-container {
            height: 780px;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
            top: 300px;
            width: 360px;
            height: 360px;
            border: 1px solid rgba(255, 255, 255, 0.96);
            background: rgba(255, 255, 255, 0.82);
            box-shadow:
                0 28px 70px rgba(6, 69, 113, 0.11),
                inset 0 0 0 1px rgba(255, 255, 255, 0.72);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card::before {
            content: '';
            position: absolute;
            inset: -12px;
            border: 3px dashed rgba(37, 150, 190, 0.65);
            border-radius: 50%;
            padding: 0;
            background: none;
            -webkit-mask: none;
            mask: none;
            pointer-events: none;
            opacity: 1;
            z-index: -1;
            filter: none;
            animation: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card::after {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            border: 1px solid rgba(6, 69, 113, 0.08);
            padding: 0;
            background: none;
            -webkit-mask: none;
            mask: none;
            pointer-events: none;
            opacity: 1;
            z-index: 0;
            filter: none;
            animation: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .card-bg {
            background:
                radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82) 62%, rgba(239, 247, 252, 0.82));
            box-shadow: inset 0 -22px 42px rgba(6, 69, 113, 0.035);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .card-content {
            z-index: 2;
            gap: 0;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-svg-icon,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .tree-svg-icon {
            width: 116px;
            height: 116px;
            margin-bottom: 18px;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
            font-size: 1.8rem;
            line-height: 1.05;
            letter-spacing: 0;
            color: var(--primary);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-desc {
            display: block;
            max-width: 215px;
            margin-top: 12px;
            color: rgba(26, 42, 58, 0.72);
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.42;
            text-align: center;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-divider {
            width: 54px;
            height: 3px;
            margin-top: 16px;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, var(--secondary), transparent);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered {
            transform: translate(var(--region-x), -50%) scale(1.025) !important;
            border-color: rgba(255, 255, 255, 1);
            box-shadow:
                0 36px 82px rgba(6, 69, 113, 0.18),
                0 0 0 9px rgba(37, 150, 190, 0.08);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .card-bg {
            background:
                radial-gradient(circle at 50% 35%, #ffffff, rgba(246, 252, 255, 0.93) 58%, rgba(227, 243, 251, 0.86));
            animation: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .day-label,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .city-svg-icon,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .tree-svg-icon {
            transform: translateY(-4px) scale(1.04);
            filter: drop-shadow(0 16px 24px rgba(6, 69, 113, 0.16));
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .day-sub {
            color: var(--primary);
            text-shadow: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.dimmed {
            opacity: 0.42 !important;
            transform: translate(var(--region-x), -50%) scale(0.94) !important;
        }
#distribution .central-flow-elements {
            inset: 0;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            transform: none;
            z-index: 70;
        }
#distribution .center-column {
            position: absolute;
            left: 50%;
            top: 0;
            width: 330px;
            height: 100%;
            transform: translateX(-50%);
            display: block;
        }
#distribution .center-flow-card {
            position: absolute;
            left: 50%;
            width: 286px;
            min-height: 76px;
            transform: translateX(-50%);
            padding: 14px 20px;
            border-radius: 24px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.94);
            box-shadow:
                0 20px 42px rgba(6, 69, 113, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.78);
        }
#distribution .top-flow-card {
            top: 28px;
        }
#distribution .middle-flow-card {
            top: 390px;
        }
#distribution .bottom-flow-card {
            top: 488px;
        }
#distribution .center-flow-card:hover {
            transform: translateX(-50%) translateY(-4px);
            box-shadow: 0 24px 48px rgba(6, 69, 113, 0.13);
        }
#distribution .cf-icon-wrapper {
            width: 42px;
            height: 42px;
            color: var(--primary);
            font-size: 0;
            background: rgba(37, 150, 190, 0.1);
        }
#distribution .cf-title {
            font-size: 1rem;
            line-height: 1.12;
            white-space: nowrap;
        }
#distribution .cf-desc {
            margin-top: 4px;
            font-size: 0.78rem;
        }
#distribution .center-truck-node {
            position: absolute;
            left: 50%;
            top: 300px;
            width: 96px;
            height: 96px;
            transform: translate(-50%, -50%);
        }
#distribution .center-truck-node::before {
            inset: -12px;
            border: 2px dashed rgba(37, 150, 190, 0.48);
            animation: none;
        }
#distribution .truck-circle-inner {
            border: 1px solid rgba(37, 150, 190, 0.24);
            box-shadow:
                0 18px 42px rgba(6, 69, 113, 0.12),
                inset 0 0 0 8px rgba(206, 242, 255, 0.22);
        }
#distribution .center-truck-node {
            width: 148px;
            height: 148px;
            filter: drop-shadow(0 24px 36px rgba(6, 69, 113, 0.2));
            isolation: isolate;
        }
#distribution .center-truck-node::before {
            inset: -16px;
            border: 2px dashed rgba(37, 150, 190, 0.56);
            box-shadow:
                0 0 0 8px rgba(206, 242, 255, 0.2),
                0 20px 42px rgba(6, 69, 113, 0.1);
            z-index: -1;
        }
#distribution .center-truck-node::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 50%;
            background: conic-gradient(from 140deg, rgba(37, 150, 190, 0.08), rgba(37, 150, 190, 0.42), rgba(255, 255, 255, 0.64), rgba(37, 150, 190, 0.1));
            z-index: -2;
        }
#distribution .truck-circle-inner {
            position: relative;
            overflow: hidden;
            padding: 9px;
            background:
                radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.98), rgba(235, 249, 255, 0.92) 56%, rgba(195, 232, 246, 0.82)),
                linear-gradient(145deg, #ffffff, #ddf5ff);
            border: 1px solid rgba(255, 255, 255, 0.98);
            box-shadow:
                0 24px 52px rgba(6, 69, 113, 0.18),
                inset 0 0 0 9px rgba(255, 255, 255, 0.5),
                inset 0 -18px 28px rgba(6, 69, 113, 0.08);
        }
#distribution .truck-circle-inner::before,
#distribution .truck-circle-inner::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: inherit;
            pointer-events: none;
            z-index: 2;
        }
#distribution .truck-circle-inner::before {
            background:
                linear-gradient(140deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0) 43%),
                radial-gradient(circle at 50% 100%, rgba(6, 69, 113, 0.28), rgba(6, 69, 113, 0) 46%);
        }
#distribution .truck-circle-inner::after {
            inset: 8px;
            border: 1px solid rgba(255, 255, 255, 0.86);
            box-shadow: inset 0 0 0 1px rgba(37, 150, 190, 0.1);
        }
#distribution .truck-photo {
            position: relative;
            z-index: 1;
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 50%;
            object-fit: contain;
            object-position: center center;
            transform: scale(1.18) translateY(2px);
            transform-origin: center;
            filter: saturate(1.12) contrast(1.06) brightness(1.05);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-track {
            stroke: rgba(6, 69, 113, 0.18);
            stroke-width: 2;
            stroke-dasharray: none;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-path {
            stroke-width: 3;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-path-glow {
            stroke-width: 8;
            opacity: 0.18;
            filter: blur(4px);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-line-horizontal .connection-track {
            stroke: rgba(37, 150, 190, 0.1);
            stroke-width: 1.5;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-line-horizontal .connection-path {
            stroke: rgba(83, 190, 228, 0.48);
            stroke-width: 2;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-line-horizontal .connection-path-glow {
            stroke: rgba(113, 207, 240, 0.5);
            stroke-width: 5;
            opacity: 0.12;
            filter: blur(3px);
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-line-horizontal > circle {
            fill: rgba(73, 183, 224, 0.7);
            opacity: 0.82;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .connection-end-dot {
            display: none;
        }
#distribution .bottom-stats-bar {
            bottom: 18px;
            width: calc(100% - 170px);
            max-width: 1180px;
            min-height: 136px;
            padding: 24px 32px;
            gap: 0;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.92);
            box-shadow:
                0 26px 65px rgba(6, 69, 113, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.85);
        }
#distribution .stat-bar-item {
            gap: 18px;
            padding: 0 28px;
            min-width: 0;
        }
#distribution .sbi-icon-wrapper {
            width: 66px;
            height: 66px;
            color: #ffffff;
            font-size: 0;
            background: linear-gradient(145deg, #61c2ef 0%, #258fe3 100%);
            box-shadow:
                0 16px 28px rgba(37, 150, 190, 0.22),
                inset 0 1px 0 rgba(255, 255, 255, 0.45);
        }
#distribution .sbi-val {
            font-size: 1.38rem;
            line-height: 1.1;
            letter-spacing: 0;
            white-space: nowrap;
        }
#distribution .sbi-label {
            margin-top: 8px;
            font-size: 0.96rem;
            line-height: 1.36;
        }
#distribution .cf-icon-wrapper::before,
#distribution .sbi-icon-wrapper::before {
            content: '';
            display: block;
            width: 25px;
            height: 25px;
            background: currentColor;
            -webkit-mask: var(--icon) center / contain no-repeat;
            mask: var(--icon) center / contain no-repeat;
        }
#distribution .sbi-icon-wrapper::before {
            width: 31px;
            height: 31px;
        }
#distribution .top-flow-card .cf-icon-wrapper,
#distribution .stat-bar-item:nth-child(4) .sbi-icon-wrapper {
            --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z'/%3E%3Cpath d='m3.3 7 8.7 5 8.7-5'/%3E%3Cpath d='M12 22V12'/%3E%3C/svg%3E");
        }
#distribution .middle-flow-card .cf-icon-wrapper,
#distribution .stat-bar-item:nth-child(2) .sbi-icon-wrapper {
            --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E");
        }
#distribution .bottom-flow-card .cf-icon-wrapper {
            --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Crect x='7' y='12' width='3' height='6'/%3E%3Crect x='12' y='8' width='3' height='10'/%3E%3Crect x='17' y='5' width='3' height='13'/%3E%3C/svg%3E");
        }
#distribution .stat-bar-item:nth-child(1) .sbi-icon-wrapper {
            --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 14.76V5a4 4 0 0 0-8 0v9.76a6 6 0 1 0 8 0Z'/%3E%3Cpath d='M10 5v9'/%3E%3Cpath d='M10 19a2 2 0 0 0 0-4'/%3E%3C/svg%3E");
        }
#distribution .stat-bar-item:nth-child(3) .sbi-icon-wrapper {
            --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
        }
@media (max-width: 1280px) {
#distribution #chello-weekly-routine-widget {
                --region-offset: 300px;
                min-height: 920px;
            }
#distribution .header h1 {
                font-size: 3.2rem;
            }
#distribution .ui-container {
                height: 720px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                top: 285px;
                width: 310px;
                height: 310px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-svg-icon,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .tree-svg-icon {
                width: 94px;
                height: 94px;
            }
#distribution .center-flow-card {
                width: 252px;
            }
#distribution .bottom-stats-bar {
                width: calc(100% - 80px);
                padding: 22px 20px;
            }
#distribution .stat-bar-item {
                padding: 0 18px;
            }
}
@media (max-width: 900px) {
#distribution {
                padding: 24px 16px;
            }
#distribution #chello-weekly-routine-widget {
                min-height: auto;
            }
#distribution .header h1 {
                font-size: 2.3rem;
                line-height: 1.08;
            }
#distribution .ui-container {
                height: auto;
                min-height: 820px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .carousel-container {
                position: relative;
                height: auto;
                padding-top: 24px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .days-wrapper {
                height: auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 28px;
                align-items: center;
                justify-items: center;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                position: relative;
                left: auto;
                top: auto;
                width: 250px;
                height: 250px;
                transform: none !important;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-svg-icon,
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .tree-svg-icon {
                width: 76px;
                height: 76px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
                font-size: 1.35rem;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-desc {
                display: block;
                font-size: 0.88rem;
                max-width: 170px;
            }
#distribution .central-flow-elements {
                display: none !important;
            }
#distribution .bottom-stats-bar {
                position: relative;
                left: auto;
                bottom: auto;
                transform: none;
                width: 100%;
                min-height: 0;
                margin-top: 34px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                padding: 20px;
            }
#distribution .stat-bar-item {
                padding: 12px;
            }
#distribution .stat-bar-item:nth-child(2) {
                border-right: none;
            }
}
@media (max-width: 560px) {
#distribution .header h1 {
                font-size: 1.85rem;
            }
#distribution .header p {
                font-size: 0.92rem;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .days-wrapper {
                grid-template-columns: 1fr;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
                width: 230px !important;
                height: 230px !important;
            }
#distribution .bottom-stats-bar {
                grid-template-columns: 1fr;
            }
#distribution .stat-bar-item {
                border-right: none !important;
            }
}
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card,
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active {
            overflow: hidden;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .card-content,
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .card-content {
            justify-content: flex-start;
            padding: 0 34px 34px;
            overflow: hidden;
        }
#distribution .city-photo-frame {
            width: calc(100% + 68px);
            height: 52%;
            flex: 0 0 52%;
            border-radius: 0;
            padding: 0;
            background: #dff5ff;
            border: 0;
            box-shadow: inset 0 -1px 0 rgba(6, 69, 113, 0.16);
            position: relative;
            margin: 0 -34px 22px;
            overflow: hidden;
            transition: all 0.55s var(--ease);
        }
#distribution .city-photo-frame::before {
            content: '';
            position: absolute;
            left: 13%;
            right: 13%;
            bottom: 0;
            height: 2px;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, rgba(6, 69, 113, 0.42), rgba(37, 150, 190, 0.7), transparent);
            box-shadow: 0 0 18px rgba(37, 150, 190, 0.28);
            pointer-events: none;
            z-index: 3;
        }
#distribution .city-photo-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(160deg, rgba(255, 255, 255, 0.34), transparent 42%),
                linear-gradient(0deg, rgba(6, 69, 113, 0.36), transparent 38%);
            pointer-events: none;
            z-index: 2;
        }
#distribution .city-photo-frame img {
            width: 100%;
            height: 100%;
            display: block;
            border-radius: 0;
            object-fit: cover;
            filter: saturate(1.14) contrast(1.04) brightness(1.02);
            transform: scale(1.01);
            transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
        }
#distribution .city-photo-frame[data-city="Colombo"] img {
            object-position: 52% 50%;
        }
#distribution .city-photo-frame[data-city="Gampaha"] img {
            object-position: 50% 54%;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered .city-photo-frame img {
            transform: scale(1.08);
            filter: saturate(1.2) contrast(1.06) brightness(1.04);
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .city-photo-frame {
            width: calc(100% + 40px);
            height: 50%;
            flex-basis: 50%;
            padding: 0;
            margin: 0 -20px 14px;
        }
#distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active .card-content {
            padding: 0 20px 22px;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .day-sub {
            margin-top: 0;
            position: relative;
            z-index: 4;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-desc {
            position: relative;
            z-index: 4;
        }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .city-divider {
            position: absolute;
            top: 52%;
            left: 16%;
            right: 16%;
            width: auto;
            margin: 0;
            z-index: 4;
        }
#distribution .panel-header {
            flex-shrink: 0;
            padding: 12px 14px;
            margin: -10px -6px 18px;
            border-radius: 24px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(232, 246, 253, 0.52));
            border: 1px solid rgba(255, 255, 255, 0.78);
            box-shadow:
                0 14px 30px rgba(6, 69, 113, 0.07),
                inset 0 1px 0 rgba(255,255,255,0.72);
        }
#distribution .table-scroll-container {
            position: relative;
            border-radius: 24px;
        }
#distribution .route-table thead {
            position: sticky;
            top: 0;
            z-index: 28;
        }
#distribution .route-table th {
            position: sticky;
            top: 0;
            z-index: 29;
            background:
                linear-gradient(180deg, rgba(246, 252, 255, 0.98), rgba(232, 245, 252, 0.94));
            backdrop-filter: blur(16px) saturate(170%);
            -webkit-backdrop-filter: blur(16px) saturate(170%);
            color: #064571;
            box-shadow:
                0 12px 22px rgba(6, 69, 113, 0.08),
                inset 0 -1px 0 rgba(6, 69, 113, 0.12);
        }
#distribution .route-table th:first-child {
            border-radius: 18px 0 0 18px;
        }
#distribution .route-table th:last-child {
            border-radius: 0 18px 18px 0;
        }
#distribution .ref-details-panel {
            width: 430px;
            padding: 28px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(232, 246, 253, 0.56));
            box-shadow:
                0 36px 86px rgba(6, 69, 113, 0.12),
                inset 0 1px 0 rgba(255,255,255,0.68);
        }
#distribution .ref-details-panel.active .ref-contact-stack,
#distribution .ref-details-panel.active .view-schedule-btn,
#distribution .ref-details-panel.active .ref-footer-days {
            opacity: 0;
            animation: detail-fade-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }
#distribution .ref-details-panel.active .ref-contact-stack {
            animation-delay: 0.12s;
        }
#distribution .ref-contact-stack {
            display: grid;
            gap: 12px;
            margin: 18px 0;
        }
#distribution .ref-details-panel.active .ref-contact-stack,
#distribution .ref-details-panel.active .ref-route-note,
#distribution .ref-details-panel.active .view-schedule-btn,
#distribution .ref-details-panel.active .ref-footer-days {
            opacity: 1;
            transform: none;
            animation: none;
        }
#distribution .contact-action-card {
            display: flex;
            align-items: center;
            gap: 14px;
            min-height: 82px;
            padding: 14px 16px;
            border-radius: 24px;
            text-decoration: none;
            color: var(--primary);
            background:
                linear-gradient(145deg, rgba(255,255,255,0.86), rgba(246,252,255,0.68));
            border: 1px solid rgba(255,255,255,0.9);
            box-shadow:
                0 16px 30px rgba(6, 69, 113, 0.08),
                inset 0 1px 0 rgba(255,255,255,0.8);
            transition: all 0.28s var(--ease);
        }
#distribution .contact-action-card:hover {
            transform: translateY(-3px);
            box-shadow:
                0 22px 42px rgba(6, 69, 113, 0.14),
                0 0 0 4px rgba(206, 242, 255, 0.42);
        }
#distribution .contact-action-card.whatsapp {
            color: #075e54;
            background:
                linear-gradient(145deg, rgba(241, 255, 247, 0.94), rgba(221, 250, 234, 0.72));
        }
#distribution .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 14px 24px rgba(6, 69, 113, 0.2);
        }
#distribution .contact-action-card.whatsapp .contact-icon {
            background: linear-gradient(145deg, #25d366, #128c7e);
            box-shadow: 0 14px 24px rgba(18, 140, 126, 0.22);
        }
#distribution .contact-icon svg {
            width: 25px;
            height: 25px;
            display: block;
        }
#distribution .contact-copy {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
        }
#distribution .contact-kicker {
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--secondary);
        }
#distribution .contact-action-card.whatsapp .contact-kicker {
            color: #128c7e;
        }
#distribution .contact-number {
            font-size: 1.24rem;
            line-height: 1.1;
            font-weight: 900;
            color: currentColor;
            white-space: nowrap;
        }
#distribution .contact-note {
            font-size: 0.78rem;
            font-weight: 700;
            color: rgba(26, 42, 58, 0.62);
        }
#distribution .ref-route-note {
            margin: 2px 0 14px;
            padding: 12px 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.52);
            border: 1px solid rgba(255,255,255,0.72);
            color: rgba(26,42,58,0.72);
            font-size: 0.82rem;
            font-weight: 800;
            line-height: 1.45;
        }
#distribution #chello-weekly-routine-widget[data-mode="route-expanded"] {
            --ref-y: 22px;
            --ref-s: 1;
        }
#distribution .ref-details-panel {
            width: 456px;
            padding: 24px;
            overflow: visible;
            background:
                linear-gradient(145deg, rgba(255,255,255,0.88), rgba(234,248,254,0.74));
            backdrop-filter: blur(14px) saturate(150%);
            -webkit-backdrop-filter: blur(14px) saturate(150%);
            border: 1px solid rgba(255,255,255,0.95);
            border-radius: 28px;
            box-shadow:
                0 30px 72px rgba(6,69,113,0.13),
                inset 0 1px 0 rgba(255,255,255,0.88);
        }
#distribution .ref-header {
            margin-bottom: 14px;
            padding: 10px;
            border-radius: 24px;
            background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(232,246,253,0.42));
            border: 1px solid rgba(255,255,255,0.82);
        }
#distribution .ref-avatar-wrapper {
            width: 58px;
            height: 58px;
            flex: 0 0 auto;
        }
#distribution .ref-avatar-cool {
            border-width: 2px;
            box-shadow: 0 12px 22px rgba(6,69,113,0.16);
        }
#distribution .online-indicator {
            width: 15px;
            height: 15px;
            border-width: 2px;
        }
#distribution .ref-title {
            min-width: 0;
        }
#distribution .ref-eyebrow,
#distribution .route-note-label {
            display: block;
            color: #2596be;
            font-size: 0.68rem;
            font-weight: 900;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }
#distribution .ref-title h3 {
            margin-top: 2px;
            font-size: 1.28rem;
            line-height: 1.1;
        }
#distribution .ref-phone {
            display: block;
            margin-top: 3px;
            font-size: 0.78rem;
            opacity: 0.68;
        }
#distribution .searched-town-confirmation {
            grid-template-columns: 1fr;
            gap: 2px;
            margin: 0 0 10px;
            padding: 11px 14px;
            border-radius: 18px;
        }
#distribution .searched-town-confirmation strong {
            font-size: 1.08rem;
            line-height: 1.1;
        }
#distribution .searched-town-confirmation small {
            grid-column: auto;
        }
#distribution .ref-route-note {
            display: grid;
            gap: 4px;
            margin: 0 0 12px;
            padding: 14px 16px;
            border-radius: 20px;
            background:
                linear-gradient(145deg, rgba(255,255,255,0.82), rgba(237,248,253,0.6));
            border: 1px solid rgba(255,255,255,0.86);
            box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
            color: rgba(26,42,58,0.7);
        }
#distribution .ref-route-note strong {
            color: #064571;
            font-size: 1rem;
            line-height: 1.2;
        }
#distribution .ref-route-note span:not(.route-note-label) {
            color: rgba(26,42,58,0.72);
            font-size: 0.82rem;
            font-weight: 800;
        }
#distribution .ref-route-note small {
            color: rgba(26,42,58,0.56);
            font-size: 0.74rem;
            font-weight: 800;
        }
#distribution .ref-contact-stack {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin: 12px 0;
        }
#distribution .contact-action-card {
            min-height: 74px;
            padding: 12px;
            border-radius: 20px;
            gap: 10px;
            background:
                linear-gradient(145deg, rgba(255,255,255,0.92), rgba(244,251,254,0.74));
        }
#distribution .contact-action-card.whatsapp {
            background:
                linear-gradient(145deg, rgba(243,255,248,0.95), rgba(221,250,234,0.78));
        }
#distribution .contact-icon {
            width: 42px;
            height: 42px;
            box-shadow: 0 12px 20px rgba(6,69,113,0.18);
        }
#distribution .contact-icon svg {
            width: 21px;
            height: 21px;
        }
#distribution .contact-kicker {
            font-size: 0.66rem;
            letter-spacing: 0.08em;
        }
#distribution .contact-number {
            font-size: 1.02rem;
            line-height: 1.08;
        }
#distribution .route-coverage-card {
            margin: 0 0 12px;
            padding: 12px 14px;
            border-radius: 20px;
            background: rgba(255,255,255,0.68);
            border: 1px solid rgba(255,255,255,0.82);
        }
#distribution .coverage-label {
            margin-bottom: 9px;
            color: #17698d;
        }
#distribution .coverage-chips span {
            padding: 6px 9px;
            background: rgba(221,244,252,0.82);
        }
#distribution .ref-footer-days {
            margin: 0 0 12px;
            padding: 12px 14px;
            border-radius: 18px;
            text-align: center;
            background: linear-gradient(145deg, rgba(232,246,253,0.72), rgba(255,255,255,0.76));
            border: 1px solid rgba(255,255,255,0.84);
        }
#distribution .ref-footer-days span {
            display: block;
            color: var(--secondary);
            font-size: 0.72rem;
            font-weight: 900;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
#distribution .ref-footer-days strong {
            display: block;
            margin-top: 3px;
            color: var(--primary);
            font-size: 0.98rem;
            line-height: 1.2;
        }
#distribution .view-schedule-btn {
            min-height: 48px;
            padding: 13px 18px;
            border-radius: 20px;
            font-size: 0.98rem;
            box-shadow: 0 18px 32px rgba(6,69,113,0.22);
        }
@media (max-width: 1280px) {
#distribution .ref-details-panel {
                width: 420px;
                padding: 22px;
            }
#distribution .contact-number {
                font-size: 0.94rem;
            }
#distribution .city-photo-frame {
                width: calc(100% + 60px);
                height: 52%;
                flex-basis: 52%;
                margin: 0 -30px 20px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .card-content {
                padding: 0 30px 30px;
            }
}
@media (max-width: 900px) {
#distribution .ref-contact-stack {
                grid-template-columns: 1fr;
            }
#distribution .contact-action-card {
                min-height: 70px;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .card-content {
                padding: 0 22px 22px;
            }
#distribution .city-photo-frame {
                width: calc(100% + 44px);
                height: 50%;
                flex-basis: 50%;
                margin: 0 -22px 12px;
            }
#distribution .ref-details-panel {
                width: min(430px, calc(100vw - 32px));
            }
}
@media (max-width: 560px) {
#distribution .header {
                width: 100%;
                padding: 0 8px;
            }
#distribution .header h1 {
                max-width: 340px;
                margin-left: auto;
                margin-right: auto;
                font-size: 1.5rem;
                line-height: 1.18;
                letter-spacing: 0;
                overflow-wrap: break-word;
            }
#distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card .card-content {
                padding: 0 18px 20px;
            }
#distribution .city-photo-frame {
                width: calc(100% + 36px);
                height: 48%;
                flex-basis: 48%;
                margin: 0 -18px 10px;
                padding: 0;
            }
#distribution .contact-action-card {
                min-height: 76px;
                padding: 12px;
            }
#distribution .contact-number {
                font-size: 1.06rem;
            }
}


/* Leaflet */
#leaflet {
            --primary-blue: #0A6EFF;
            --secondary-blue: #89CFF0;
            --dark-blue: #0C62AD;
            --milk-white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.35);
            --transition-smooth: all 1s cubic-bezier(0.19, 1, 0.22, 1);
        }
#leaflet * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
#leaflet {
            scroll-behavior: smooth;
        }
#leaflet {
            font-family: 'Outfit', sans-serif;
            background-color: #f0f7ff;
            overflow-x: hidden;
            color: #1a1a1a;
            min-height: 100vh;
        }
#leaflet #milk-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.4;
        }
#leaflet .milk-bg-waves {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            background: linear-gradient(135deg, #ffffff 0%, #e6f0ff 100%);
        }
#leaflet .milk-section {
            position: relative;
            padding: 15px 5% 200px;
            max-width: 1400px;
            margin: 0 auto;
        }
#leaflet .header {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 1.2s forwards;
        }
@keyframes fadeInDown {
            to { opacity: 1; transform: translateY(0); }
        }
#leaflet .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 6vw, 4.5rem);
            font-weight: 900;
            background: linear-gradient(135deg, #0c62ad 0%, #1d6fcf 40%, #3B82F6 80%, #60A5FA 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 2px 16px rgba(12, 98, 173, 0.18));
            letter-spacing: -1px;
            display: inline-block;
        }
#leaflet .liquid-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 150px 80px;
            position: relative;
        }
#leaflet .liquid-grid.focus-mode .card-trigger:not(.active) .liquid-card {
            opacity: 0;
            transform: scale(0.8) translateY(50px);
            pointer-events: none;
            filter: blur(8px);
        }
#leaflet .focus-overlay {
            position: fixed;
            inset: 0;
            background: rgba(240, 247, 255, 0.5);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            pointer-events: none;
            z-index: 990;
            transition: opacity 0.8s ease;
        }
#leaflet .liquid-grid.focus-mode ~ .focus-overlay {
            opacity: 1;
        }
#leaflet .card-trigger {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
            margin: 0 auto;
            max-width: 450px;
            cursor: pointer;
        }
#leaflet .card-trigger:nth-child(even) { margin-top: 100px; }
#leaflet .liquid-card {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transform: scale(0.95);
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 1;
            pointer-events: auto;
        }
#leaflet .card-trigger.show .liquid-card {
            opacity: 1;
            transform: scale(1);
        }
#leaflet .photo-section {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            
            
            box-shadow: 
                0 0 0 5px #ffffff, 
                0 0 0 7px var(--primary-blue), 
                0 15px 35px rgba(10, 110, 255, 0.25), 
                0 20px 50px rgba(10, 110, 255, 0.15);
                
            animation: breathe 8s ease-in-out infinite;
        }
#leaflet .card-trigger:nth-child(1) .photo-section { border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%; }
#leaflet .card-trigger:nth-child(2) .photo-section { border-radius: 40% 60% 30% 70% / 60% 40% 70% 30%; animation-delay: -2s; }
#leaflet .card-trigger:nth-child(3) .photo-section { border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%; animation-delay: -4s; }
#leaflet .card-trigger:nth-child(4) .photo-section { border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%; animation-delay: -6s; }
@keyframes breathe {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.03) rotate(2deg); }
        }
#leaflet .photo-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }
#leaflet .card-trigger:hover .photo-section img {
            transform: scale(1.1);
        }
#leaflet .photo-section::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            border-radius: inherit;
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5); 
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
        }
#leaflet .card-trigger:nth-child(odd) .photo-section::before {
            background: radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.7) 0%, rgba(0,0,0,0) 60%, transparent 100%);
        }
#leaflet .card-trigger:nth-child(even) .photo-section::before {
            background: radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.7) 0%, rgba(0,0,0,0) 60%, transparent 100%);
        }
#leaflet .text-section {
            position: absolute;
            bottom: -40px;
            right: -40px;
            width: 85%;
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            padding: 35px;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.7);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            z-index: 3;
            transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: none;
            transform: translateY(var(--parallax-y, 0px));
        }
#leaflet .card-trigger:nth-child(even) .text-section {
            right: auto;
            left: -40px;
        }
#leaflet .card-trigger:hover .text-section {
            transform: translateY(calc(var(--parallax-y, 0px) - 15px));
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 30px 50px rgba(10, 110, 255, 0.15);
        }
#leaflet .highlight-badge {
            display: inline-block;
            padding: 6px 14px;
            background: linear-gradient(135deg, var(--primary-blue), #0051cc);
            color: white;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-radius: 30px;
            margin-bottom: 15px;
            box-shadow: 0 4px 15px rgba(10, 110, 255, 0.3);
            transition: all 0.8s ease;
        }
#leaflet .text-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            color: var(--dark-blue);
            margin-bottom: 12px;
            font-weight: 800;
            line-height: 1.1;
            transition: color 0.8s ease;
        }
#leaflet .subtitle {
            font-size: 1.05rem;
            color: #444;
            line-height: 1.6;
            font-weight: 500;
            margin-bottom: 0;
            transition: all 0.8s ease;
        }
#leaflet .extra-text {
            display: grid;
            grid-template-rows: 0fr;
            transition: grid-template-rows 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
            opacity: 0;
        }
#leaflet .extra-text-inner {
            overflow: hidden;
        }
#leaflet .extra-text-inner p {
            font-size: 1rem;
            color: #dcdcdc;
            line-height: 1.7;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            margin-bottom: 0;
        }
#leaflet .center-btn {
            position: absolute;
            top: 40px;
            right: 40px;
            padding: 12px 30px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            backdrop-filter: blur(15px);
            cursor: pointer;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease 0s, background 0.3s;
            z-index: 10;
        }
#leaflet .center-btn:hover {
            background: white;
            color: var(--primary-blue);
        }
#leaflet .card-trigger.active .liquid-card {
            position: fixed;
            top: var(--leaflet-open-top, 50%) !important;
            left: var(--leaflet-open-left, 50%) !important;
            transform: translate(var(--leaflet-open-x, -50%), var(--leaflet-open-y, -50%)) scale(1) !important;
            width: var(--leaflet-open-width, 70vw);
            height: var(--leaflet-open-height, 75vh);
            max-width: min(1200px, calc(100vw - 48px));
            max-height: min(800px, calc(100vh - 48px));
            margin: 0 !important;
            z-index: 1000;
            cursor: default;
        }
#leaflet .card-trigger.active .photo-section {
            border-radius: 32px !important;
            animation: none !important;
            transform: scale(1) rotate(0deg) !important;
            box-shadow: 
                0 0 0 3px #ffffff, 
                0 0 0 5px var(--primary-blue), 
                0 0 0px rgba(10, 110, 255, 0), 
                0 40px 100px rgba(0, 0, 0, 0.4);
        }
#leaflet .card-trigger.active .photo-section img {
            transform: scale(1.15);
        }
#leaflet .card-trigger:nth-child(odd).active .photo-section::before {
            background: radial-gradient(circle at 100% 100%, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%) !important;
        }
#leaflet .card-trigger:nth-child(even).active .photo-section::before {
            background: radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%) !important;
        }
#leaflet .card-trigger.active .text-section {
            bottom: 50px;
            width: 500px;
            max-width: 90%;
            max-height: calc(100% - 100px);
            overflow-y: auto;
            overscroll-behavior: contain;
            background: rgba(12, 18, 30, 0.65);
            backdrop-filter: blur(30px);
            -webkit-backdrop-filter: blur(30px);
            border-color: rgba(255, 255, 255, 0.15);
            transform: none !important;
            padding: 45px;
            pointer-events: auto;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }
#leaflet .card-trigger:nth-child(odd).active .text-section {
            right: 50px;
            left: auto;
        }
#leaflet .card-trigger:nth-child(even).active .text-section {
            left: 50px;
            right: auto;
        }
#leaflet .card-trigger.active .highlight-badge {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
        }
#leaflet .card-trigger.active .text-section h3 {
            color: white;
            font-size: 3.2rem;
        }
#leaflet .card-trigger.active .subtitle {
            color: #f0f0f0;
            font-size: 1.2rem;
        }
#leaflet .card-trigger.active .extra-text {
            grid-template-rows: 1fr;
            opacity: 1;
        }
#leaflet .card-trigger.active .extra-text-inner p {
            color: #e0e0e0;
            border-top-color: rgba(255, 255, 255, 0.2);
        }
#leaflet .card-trigger.locked .center-btn {
            opacity: 1;
            pointer-events: auto;
            transition: opacity 0.6s ease 0.6s, background 0.3s;
        }
#leaflet .photo-section::after {
            content: '';
            position: absolute;
            top: 0; left: -150%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: skewX(-25deg);
            z-index: 2;
            transition: none;
        }
#leaflet .card-trigger.active .photo-section::after {
            left: 150%;
            transition: left 1.5s ease-in-out 0.4s;
        }
@media (max-width: 992px) {
#leaflet .liquid-grid { grid-template-columns: 1fr; gap: 100px; }
#leaflet .card-trigger:nth-child(even) { margin-top: 50px; }
#leaflet .card-trigger.show:nth-child(even) .liquid-card { transform: scale(1); }
#leaflet .text-section { position: relative; width: 100%; bottom: 0; right: 0; left: 0; margin-top: -40px; }
#leaflet .card-trigger.active .liquid-card {
                width: var(--leaflet-open-width, 90vw);
                height: var(--leaflet-open-height, 80vh);
                max-width: calc(100vw - 24px);
                max-height: calc(100vh - 24px);
            }
#leaflet .card-trigger.active .text-section,
#leaflet .card-trigger:nth-child(odd).active .text-section,
#leaflet .card-trigger:nth-child(even).active .text-section { 
                position: absolute;
                bottom: 20px; 
                left: 20px; 
                right: auto;
                padding: 30px; 
                width: calc(100% - 40px); 
                max-height: calc(100% - 40px);
                max-width: none; 
            }
#leaflet .logo-text { font-size: 3rem; }
}


/* Contact */
#contact {
    --primary: #2596be;
    --primary-light: #67bed9;
    --accent: #ef4444;
    --text-main: #0f172a;
    --text-muted: #475569;
    --surface: #ffffff;
    --shadow: rgba(37, 150, 190, 0.12);
  }
#contact {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    color: var(--text-main);
    overflow-x: hidden;
  }
#contact .layout-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 100px;
  }
#contact .top-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }
@keyframes gradientText {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
#contact .animated-chello {
    background: linear-gradient(90deg, #2596be, #67bed9, #2596be);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s linear infinite;
    display: inline-block;
    font-weight: 900;
  }
#contact .left-form-section {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 40px 100px var(--shadow);
    border: 1px solid rgba(37, 150, 190, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
#contact .left-form-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, #2596be, #67bed9);
    border-radius: 24px 24px 0 0;
  }
#contact .form-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -1px;
  }
#contact .form-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
  }
#contact .input-group {
    position: relative;
    margin-bottom: 22px;
  }
#contact .input-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--primary);
  }
#contact .input-group label span { color: var(--accent); }
#contact .input-group input,
#contact .input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    box-sizing: border-box;
  }
#contact .input-group textarea { min-height: 120px; resize: none; }
#contact .input-group input:focus,
#contact .input-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(37, 150, 190, 0.1);
  }
#contact .submit-btn {
    background: linear-gradient(90deg, #2596be, #67bed9);
    color: white;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(37, 150, 190, 0.3);
  }
#contact .submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 150, 190, 0.4);
  }
#contact .right-content-section {
    position: relative;
    padding: 50px;
    background: rgba(248, 250, 252, 0.5);
    border-radius: 30px;
    text-align: justify; 
  }
#contact .right-content-section::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(37, 150, 190, 0.15);
    border-radius: 30px;
    pointer-events: none;
  }
#contact .corner-frame {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--primary);
    pointer-events: none;
    opacity: 0;
  }
#contact .corner-tl { top: -10px; left: -10px; border-right: 0; border-bottom: 0; border-radius: 15px 0 0 0; }
#contact .corner-br { bottom: -10px; right: -10px; border-left: 0; border-top: 0; border-radius: 0 0 15px 0; }
#contact .content-title {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 35px;
    color: var(--text-main);
    line-height: 1.1;
    letter-spacing: -1.5px;
    text-align: left; 
  }
#contact .content-paragraphs p {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    line-height: 2;
    color: #334155;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
  }
#contact .highlight-keyword {
    background: rgba(37, 150, 190, 0.08);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    display: inline-block;
    transition: transform 0.3s ease;
  }
#contact .highlight-keyword:hover { transform: scale(1.05); }
#contact .bottom-hub-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 20px;
  }
#contact .contact-header-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
#contact .contact-section-title {
    background: #64748b;
    color: white;
    padding: 8px 20px;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
#contact .header-line {
    flex: 1;
    height: 1px;
    background: #e2e8f0;
    margin-left: 20px;
  }
#contact .interactive-hub-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
    min-height: 450px;
  }
#contact .hub-details-col {
    flex: 1;
    max-width: 500px;
    padding-top: 40px;
  }
#contact .details-content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
#contact .details-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
  }
#contact .detail-row {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 10px 0;
  }
#contact .icon-circle {
    width: 48px; height: 48px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    flex-shrink: 0;
  }
#contact .theme-qa .icon-circle,
#contact .theme-hoh .icon-circle { border-color: #2F80ED; color: #2F80ED; }
#contact .detail-text { font-size: 1.05rem; font-weight: 500; color: var(--text-muted); line-height: 1.4; }
#contact .hub-circle-col { flex-shrink: 0; display: flex; justify-content: center; align-items: center; padding-right: 40px; }
#contact .wheel-container { width: 450px; height: 450px; position: relative; display: flex; justify-content: center; align-items: center; }
#contact .slice-path { fill: #f8fafc; stroke: #ffffff; stroke-width: 8px; transition: all 0.3s ease; }
#contact .wheel-segment { cursor: pointer; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
#contact .wheel-segment.active { transform: translateY(-20px) scale(1.05); }
#contact .wheel-segment[data-id="support"].active .slice-path { fill: var(--accent); filter: drop-shadow(0 15px 30px rgba(239, 68, 68, 0.3)); }
#contact .wheel-segment[data-id="qa"].active .slice-path,
#contact .wheel-segment[data-id="hoh"].active .slice-path { fill: #2F80ED; filter: drop-shadow(0 15px 30px rgba(47, 128, 237, 0.3)); }
#contact .slice-title { fill: #94a3b8; font-family: 'Inter', sans-serif; font-weight: 800; font-size: 14px; text-transform: uppercase; transition: fill 0.3s ease; pointer-events: none; }
#contact .slice-icon { color: #94a3b8; pointer-events: none; }
#contact .wheel-segment.active .slice-title,
#contact .wheel-segment.active .slice-icon { fill: #ffffff !important; color: #ffffff !important; }
#contact .center-hub { fill: #ffffff; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.05)); }
#contact .center-dot { fill: #e2e8f0; }
@media (max-width: 1000px) {
#contact .top-section { grid-template-columns: 1fr; gap: 60px; }
#contact .interactive-hub-container { flex-direction: column; }
#contact .wheel-container { width: 350px; height: 350px; }
}


/* Premium Footer */
.footer-symbols {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.d2d-footer-cta,
.d2d-footer-cta *,
.d2d-footer-cta *::before,
.d2d-footer-cta *::after,
.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after,
.floating-whatsapp,
.floating-whatsapp * {
    box-sizing: border-box;
}

.d2d-footer-cta {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    background: #062c28;
    isolation: isolate;
}

.d2d-footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 24, 30, 0.92), rgba(4, 42, 35, 0.78), rgba(6, 25, 48, 0.68)),
        url("images/milk_farm_premium_1777518050425.png") center / cover no-repeat;
    transform: scale(1.02);
    z-index: -2;
}

.d2d-footer-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 28%),
        linear-gradient(120deg, rgba(246, 198, 91, 0.22), transparent 34%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px);
    opacity: 0.62;
    z-index: -1;
}

.d2d-cta-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 88px;
    color: #ffffff;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.d2d-cta-wave svg {
    display: block;
    width: 100%;
    height: 100%;
}

.d2d-cta-wave path {
    fill: currentColor;
}

.d2d-cta-inner {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 128px 0 76px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 34px;
    align-items: end;
}

.d2d-cta-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    margin-bottom: 18px;
    border: 1px solid rgba(246, 198, 91, 0.5);
    border-radius: 8px;
    color: #f8db8c;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    font-weight: 800;
}

.d2d-cta-copy h2 {
    max-width: 720px;
    margin: 0;
    color: #ffffff;
    font-size: 3.25rem;
    line-height: 1.02;
    font-weight: 900;
}

.d2d-cta-copy p {
    max-width: 610px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.7;
}

.d2d-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.d2d-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.d2d-btn svg {
    width: 21px;
    height: 21px;
    flex: 0 0 21px;
}

.d2d-btn:hover {
    transform: translateY(-2px);
}

.d2d-btn-primary {
    color: #082b25;
    background: #f6c65b;
    box-shadow: 0 18px 42px rgba(246, 198, 91, 0.26);
}

.d2d-btn-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.d2d-btn-secondary:hover {
    border-color: rgba(246, 198, 91, 0.72);
    background: rgba(255, 255, 255, 0.18);
}

.d2d-cta-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(3, 23, 28, 0.54);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(18px);
}

.d2d-stat-strip {
    overflow: hidden;
    width: 100%;
    padding: 2px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000000 9%, #000000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000000 9%, #000000 91%, transparent);
}

.d2d-stat-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: footerStats 24s linear infinite;
}

.d2d-stat {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.09);
    white-space: nowrap;
}

.d2d-stat strong {
    color: #f8db8c;
    font-size: 1.1rem;
}

.d2d-mini-proof {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.d2d-mini-proof span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.d2d-mini-proof svg {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    color: #f8db8c;
}

@keyframes footerStats {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(135deg, #071d28 0%, #0a3b2e 54%, #081b33 100%);
    isolation: isolate;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 29, 40, 0.95), rgba(10, 59, 46, 0.9)),
        url("images/milk_pour_premium_1777518318450.png") center / cover no-repeat;
    opacity: 0.46;
    z-index: -2;
}

.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 22%),
        repeating-linear-gradient(45deg, rgba(246, 198, 91, 0.06) 0 1px, transparent 1px 20px);
    z-index: -1;
}

.footer-main {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(160px, 0.72fr) minmax(180px, 0.72fr) minmax(250px, 1fr);
    gap: 34px;
    align-items: start;
}

.footer-brand-card {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.footer-logo-row img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    padding: 7px;
    border-radius: 8px;
    background: #ffffff;
}

.footer-logo-name,
.footer-logo-subtitle {
    display: block;
}

.footer-logo-name {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-logo-subtitle {
    margin-top: 4px;
    color: #f8db8c;
    font-size: 0.9rem;
    font-weight: 800;
}

.footer-brand-card h3,
.footer-column h3,
.footer-newsletter h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.25;
    font-weight: 900;
}

.footer-brand-card h3 {
    font-size: 1.55rem;
}

.footer-brand-card p,
.footer-newsletter p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    line-height: 1.75;
}

.footer-trust-list,
.footer-links,
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.footer-trust-list {
    display: grid;
    gap: 10px;
}

.footer-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.footer-trust-list svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    color: #f8db8c;
}

.footer-column {
    padding-top: 8px;
}

.footer-links {
    display: grid;
    gap: 9px;
}

.footer-links a,
.footer-contact a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 200ms ease, transform 200ms ease;
}

.footer-links a {
    min-height: 34px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-legal a:hover {
    color: #f8db8c;
}

.footer-links a:hover {
    transform: translateX(3px);
}

.footer-links svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    color: #f8db8c;
}

.footer-contact-list {
    display: grid;
    gap: 16px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
}

.footer-contact-list strong {
    display: block;
    color: #ffffff;
    margin-bottom: 2px;
}

.footer-contact-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(246, 198, 91, 0.42);
    border-radius: 50%;
    color: #f8db8c;
    background: rgba(255, 255, 255, 0.08);
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.social-link svg {
    width: 21px;
    height: 21px;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: transparent;
}

.social-facebook:hover { background: #1877f2; }
.social-instagram:hover { background: #d62976; }
.social-linkedin:hover { background: #0a66c2; }
.social-youtube:hover { background: #ff0033; }

.footer-newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 22px;
    align-items: center;
    margin-top: 36px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.footer-newsletter-form {
    display: flex;
    gap: 10px;
    width: 100%;
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 0 16px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.footer-newsletter-form input:focus {
    border-color: #f8db8c;
    box-shadow: 0 0 0 4px rgba(246, 198, 91, 0.14);
}

.footer-newsletter-form button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    color: #082b25;
    background: #f6c65b;
    font-weight: 900;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.footer-newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(246, 198, 91, 0.26);
}

.footer-newsletter-form svg {
    width: 19px;
    height: 19px;
}

.footer-newsletter-feedback {
    min-height: 20px;
    grid-column: 2;
    margin: -10px 0 0;
    color: #f8db8c;
    font-size: 0.9rem;
    font-weight: 800;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 10001;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 17px;
    border-radius: 999px;
    color: #ffffff;
    background: #16a34a;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(22, 163, 74, 0.32);
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    background: #128c40;
    box-shadow: 0 22px 50px rgba(22, 163, 74, 0.4);
}

.floating-whatsapp svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1100px) {
    .d2d-cta-inner {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

@media (max-width: 760px) {
    .d2d-cta-inner,
    .footer-main,
    .footer-bottom {
        width: min(100% - 28px, 1200px);
    }

    .d2d-cta-inner {
        padding: 112px 0 58px;
    }

    .d2d-cta-copy h2 {
        font-size: 2.35rem;
    }

    .d2d-cta-copy p {
        font-size: 1rem;
    }

    .d2d-cta-actions,
    .footer-newsletter-form {
        flex-direction: column;
    }

    .d2d-btn,
    .footer-newsletter-form button {
        width: 100%;
    }

    .footer-grid,
    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .footer-newsletter-feedback {
        grid-column: 1;
        margin-top: 0;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        min-width: 52px;
        min-height: 52px;
        padding: 0 14px;
    }

    .floating-whatsapp span {
        display: none;
    }
}

@media (max-width: 480px) {
    .d2d-cta-copy h2 {
        font-size: 2rem;
    }

    .d2d-cta-panel,
    .footer-brand-card,
    .footer-newsletter {
        padding: 18px;
    }

    .footer-logo-row {
        align-items: flex-start;
    }

    .footer-logo-row img {
        width: 58px;
        height: 58px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .d2d-stat-track {
        animation: none;
    }

    .d2d-btn,
    .footer-links a,
    .social-link,
    .footer-newsletter-form button,
    .floating-whatsapp {
        transition: none;
    }
}

/* ==========================================
   CUSTOMER STATISTICS SECTION
   ========================================== */
#customer-statistics {
    --stats-primary: #1456bf;
    --stats-primary-light: #2563eb;
    --stats-accent: #21a06a;
    --stats-bg: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    --stats-card-bg: rgba(255, 255, 255, 0.42);
    --stats-card-border: rgba(255, 255, 255, 0.65);
    --stats-card-shadow: 0 8px 32px 0 rgba(16, 70, 134, 0.04);
    --stats-card-hover-shadow: 0 16px 48px 0 rgba(20, 86, 191, 0.12);
    
    position: relative;
    padding: 100px 24px;
    background: var(--stats-bg);
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Moving Pulse behind cards */
.stats-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.22) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: multiply;
    animation: statsGlowPulse 10s infinite alternate ease-in-out;
}

@keyframes statsGlowPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(-45%, -55%) scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

/* Floating particles */
.stats-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.stats-particles .particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
    animation: statsFloat var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes statsFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-40px) translateX(20px) scale(1.3);
        opacity: 0.6;
    }
}

/* Container */
.stats-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

/* Header */
.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-pre-title {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--stats-primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.stats-main-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, #0c62ad 0%, #1d6fcf 45%, #3B82F6 80%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(12, 98, 173, 0.15));
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.25;
}

.stats-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--stats-primary), var(--stats-accent));
    margin: 0 auto;
    border-radius: 2px;
}

/* Flex Grid Layout */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
}

/* Cards */
.stats-card {
    position: relative;
    flex: 1 1 calc(25% - 28px);
    min-width: 270px;
    max-width: 290px;
    border-radius: 24px;
    background: var(--stats-card-bg);
    border: 1px solid var(--stats-card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--stats-card-shadow);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.2, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.2, 1, 0.3, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    transition-delay: calc(var(--card-index) * 0.1s), calc(var(--card-index) * 0.1s), 0s, 0s, 0s;
}

.stats-card-inner {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}

.stats-icon {
    font-size: 2.75rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(20, 86, 191, 0.15));
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0b2b5c;
    line-height: 1;
    margin-bottom: 8px;
    font-feature-settings: "tnum";
}

.stats-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #173f72;
    margin-bottom: 10px;
}

.stats-desc {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.4;
    margin: 0;
}

/* Card Hover effect */
.stats-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.65);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: var(--stats-card-hover-shadow);
}

.stats-card:hover .stats-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Scroll reveal trigger classes */
#customer-statistics.is-visible .stats-card {
    opacity: 1;
    transform: translateY(0);
}

/* Responsiveness */
@media (max-width: 768px) {
    #customer-statistics {
        padding: 60px 16px;
    }
    .stats-header {
        margin-bottom: 40px;
    }
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stats-card {
        flex: none;
        max-width: none;
        width: 100%;
        transition-delay: calc(var(--card-index) * 0.08s), calc(var(--card-index) * 0.08s), 0s, 0s, 0s;
    }
    .stats-card:nth-child(7) {
        grid-column: span 2;
    }
    .stats-card-inner {
        padding: 24px 16px;
    }
    .stats-icon {
        font-size: 2.25rem;
        margin-bottom: 12px;
    }
    .stats-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        gap: 12px;
    }
    .stats-card {
        border-radius: 20px;
    }
}

/* Premium FAQ and Blog Sections */
.stats-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    border-radius: 20px;
    color: #1456bf;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(213, 234, 255, 0.64));
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 34px rgba(20, 86, 191, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.stats-icon::before {
    content: "";
    width: 36px;
    height: 36px;
    background: currentColor;
    -webkit-mask: var(--stats-icon-mask) center / contain no-repeat;
    mask: var(--stats-icon-mask) center / contain no-repeat;
}

.stats-card:nth-child(1) .stats-icon {
    --stats-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 11.5a3.2 3.2 0 1 0 0-6.4 3.2 3.2 0 0 0 0 6.4Zm8 0a3.2 3.2 0 1 0 0-6.4 3.2 3.2 0 0 0 0 6.4ZM2.8 20.2c.5-4.2 2.6-6.4 5.2-6.4s4.7 2.2 5.2 6.4H2.8Zm8 0c.5-3.8 2.5-6.1 5.2-6.1s4.7 2.3 5.2 6.1H10.8Z'/%3E%3C/svg%3E");
}

.stats-card:nth-child(2) .stats-icon,
.stats-card:nth-child(3) .stats-icon {
    --stats-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6.5h11.3v8.8H3V6.5Zm11.3 3h3.2l3.5 3.8v2h-6.7V9.5ZM6.7 19a2.2 2.2 0 1 0 0-4.4 2.2 2.2 0 0 0 0 4.4Zm10.6 0a2.2 2.2 0 1 0 0-4.4 2.2 2.2 0 0 0 0 4.4Z'/%3E%3C/svg%3E");
}

.stats-card:nth-child(4) .stats-icon {
    --stats-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2.5a7.2 7.2 0 0 0-7.2 7.2c0 5.4 7.2 11.8 7.2 11.8s7.2-6.4 7.2-11.8A7.2 7.2 0 0 0 12 2.5Zm0 10.1a2.9 2.9 0 1 1 0-5.8 2.9 2.9 0 0 1 0 5.8Z'/%3E%3C/svg%3E");
}

.stats-card:nth-child(5) .stats-icon {
    --stats-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 3.5h8l1 4H7l1-4Zm-.9 5.4h9.8l1 10.2a2.1 2.1 0 0 1-2.1 2.4H8.2a2.1 2.1 0 0 1-2.1-2.4l1-10.2Zm2.2 4.3h5.4v-2H9.3v2Z'/%3E%3C/svg%3E");
}

.stats-card:nth-child(6) .stats-icon {
    --stats-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2.8 2.8 5.7 6.3.9-4.6 4.5 1.1 6.3-5.6-3-5.6 3 1.1-6.3-4.6-4.5 6.3-.9L12 2.8Z'/%3E%3C/svg%3E");
}

.stats-card:nth-child(7) .stats-icon {
    --stats-icon-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm.9 8.1 3 2.2-1.1 1.5-3.7-2.7V7.4h1.8v4.7ZM5.2 2.6 2.8 5.2l1.4 1.3 2.4-2.6-1.4-1.3Zm13.6 0-1.4 1.3 2.4 2.6 1.4-1.3-2.4-2.6Z'/%3E%3C/svg%3E");
}

.premium-info-section {
    --premium-primary: #2596be;
    --premium-primary-deep: #0c62ad;
    --premium-primary-light: #67bed9;
    --premium-heading: #0f172a;
    --premium-copy: #475569;
    --premium-shadow: rgba(37, 150, 190, 0.12);

    position: relative;
    overflow: hidden;
    padding: 108px 24px;
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--premium-heading);
}

.faq-section {
    background:
        linear-gradient(135deg, rgba(239, 249, 253, 0.98), rgba(255, 255, 255, 0.98) 46%, rgba(232, 247, 252, 0.96)),
        linear-gradient(90deg, rgba(37, 150, 190, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, rgba(37, 150, 190, 0.06) 1px, transparent 1px);
    background-size: auto, 68px 68px, 68px 68px;
}

.blog-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5fbfe 48%, #eef8fc 100%);
}

.premium-info-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(115deg, transparent 0%, rgba(37, 150, 190, 0.11) 32%, transparent 58%),
        linear-gradient(245deg, transparent 0%, rgba(103, 190, 217, 0.16) 38%, transparent 66%);
    animation: premiumSheen 13s ease-in-out infinite alternate;
}

.premium-info-container {
    position: relative;
    z-index: 1;
    width: min(1220px, 100%);
    margin: 0 auto;
}

.premium-section-header {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.premium-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--premium-primary);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.premium-eyebrow::before,
.premium-eyebrow::after {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--premium-primary), var(--premium-primary-light));
}

.premium-section-header h2 {
    margin: 0;
    background: linear-gradient(135deg, #0c62ad 0%, #1d6fcf 45%, #3B82F6 80%, #60A5FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 12px rgba(12, 98, 173, 0.15));
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.premium-section-header p {
    width: min(620px, 100%);
    margin: 18px auto 0;
    color: var(--premium-copy);
    font-size: 1.06rem;
    line-height: 1.75;
}

.premium-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.premium-reveal.is-pending {
    opacity: 0;
    transform: translateY(34px);
}

.premium-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.faq-highlight {
    position: sticky;
    top: 108px;
    min-height: 360px;
    padding: 34px;
    border-radius: 24px;
    color: #ffffff;
    background:
        linear-gradient(145deg, rgba(12, 98, 173, 0.92), rgba(37, 150, 190, 0.86)),
        url("images/milk_delivery.png") center / cover no-repeat;
    background-blend-mode: multiply;
    box-shadow: 0 30px 90px rgba(37, 150, 190, 0.24);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.faq-highlight::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 23px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.faq-highlight-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 28px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.faq-highlight-icon svg {
    width: 38px;
    height: 38px;
}

.faq-highlight h3 {
    position: relative;
    margin: 0 0 14px;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    line-height: 1.12;
    letter-spacing: 0;
}

.faq-highlight p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 42px var(--premium-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
}

.faq-item:nth-child(2) { --reveal-delay: 0.05s; }
.faq-item:nth-child(3) { --reveal-delay: 0.1s; }
.faq-item:nth-child(4) { --reveal-delay: 0.15s; }
.faq-item:nth-child(5) { --reveal-delay: 0.2s; }
.faq-item:nth-child(6) { --reveal-delay: 0.25s; }

.faq-question {
    width: 100%;
    min-height: 74px;
    padding: 20px 22px 20px 26px;
    border: 0;
    background: transparent;
    color: #102c4f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    text-align: left;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
}

.faq-question:focus-visible {
    outline: 3px solid rgba(37, 150, 190, 0.28);
    outline-offset: -6px;
}

.faq-toggle {
    position: relative;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--premium-primary), var(--premium-primary-light));
    box-shadow: 0 12px 24px rgba(37, 150, 190, 0.24);
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
    transform: translate(-50%, -50%);
    transition: transform 220ms ease;
}

.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 280ms ease, opacity 240ms ease;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 26px 24px;
    color: var(--premium-copy);
    font-size: 1rem;
    line-height: 1.75;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.blog-card {
    min-width: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 46px var(--premium-shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow: hidden;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.blog-card:nth-child(2) { --reveal-delay: 0.06s; }
.blog-card:nth-child(3) { --reveal-delay: 0.12s; }
.blog-card:nth-child(4) { --reveal-delay: 0.18s; }

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 150, 190, 0.26);
    box-shadow: 0 28px 70px rgba(37, 150, 190, 0.18);
}

.blog-image-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 214px;
    padding: 0;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(223, 242, 255, 0.95), rgba(255, 255, 255, 0.9) 52%, rgba(232, 247, 252, 0.95)),
        linear-gradient(90deg, rgba(37, 150, 190, 0.08) 1px, transparent 1px);
    background-size: auto, 26px 26px;
}

.blog-image-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(37, 150, 190, 0.15);
    z-index: 2;
}

.blog-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 320ms ease;
}

.blog-card:hover .blog-image-link img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 24px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--premium-primary-deep);
    background: rgba(37, 150, 190, 0.12);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 16px 0 10px;
    color: #102c4f;
    font-size: 1.24rem;
    line-height: 1.24;
    letter-spacing: 0;
}

.blog-card p {
    min-height: 84px;
    margin: 0 0 22px;
    color: #5c6f81;
    font-size: 0.97rem;
    line-height: 1.6;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    color: var(--premium-primary);
    text-decoration: none;
    font-weight: 900;
}

.blog-read-more svg {
    width: 18px;
    height: 18px;
    transition: transform 220ms ease;
}

.blog-read-more:hover svg {
    transform: translateX(4px);
}

@keyframes premiumSheen {
    0% {
        transform: translateX(-4%);
        opacity: 0.55;
    }
    100% {
        transform: translateX(4%);
        opacity: 0.9;
    }
}

@media (max-width: 1100px) {
    .faq-shell {
        grid-template-columns: 1fr;
    }

    .faq-highlight {
        position: relative;
        top: auto;
        min-height: 300px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .premium-info-section {
        padding: 76px 16px;
    }

    .premium-section-header {
        margin-bottom: 34px;
    }

    .faq-highlight {
        min-height: 280px;
        padding: 26px;
        border-radius: 22px;
    }

    .faq-question {
        min-height: 68px;
        padding: 18px 18px 18px 20px;
        font-size: 0.98rem;
    }

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

    .blog-image-link {
        height: 230px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .premium-info-bg,
    .premium-reveal,
    .blog-card,
    .blog-image-link img,
    .blog-read-more svg,
    .faq-answer,
    .faq-toggle::before,
    .faq-toggle::after {
        animation: none;
        transition: none;
    }

    .premium-reveal,
    .premium-reveal.is-pending {
        opacity: 1;
        transform: none;
    }
}

/* Mobile Hamburger Menu & Navigation Drawer */
.hamburger-btn {
    display: none;
    background: rgba(6, 69, 113, 0.06);
    border: 1px solid rgba(6, 69, 113, 0.12);
    border-radius: 50%;
    width: 3.2rem;
    height: 3.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    z-index: 100001;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 0.5rem;
}

.hamburger-btn:hover {
    background: rgba(6, 69, 113, 0.12);
    transform: scale(1.05);
}

.hamburger-line {
    display: block;
    width: 1.25rem;
    height: 2px;
    background-color: #0b2b5c; /* Matches var(--ink) */
    border-radius: 9px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hamburger Active / Open State Animation */
.hamburger-btn.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-btn.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer Overlay */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(35px) saturate(190%);
    -webkit-backdrop-filter: blur(35px) saturate(190%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
    pointer-events: all;
}

.mobile-nav-close {
    position: absolute;
    top: clamp(1rem, 4vw, 2.5rem);
    right: clamp(1rem, 4vw, 2.5rem);
    background: rgba(6, 69, 113, 0.08);
    border: 1px solid rgba(6, 69, 113, 0.12);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b2b5c;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(6, 69, 113, 0.06);
}

.mobile-nav-close:hover {
    background: rgba(6, 69, 113, 0.16);
    transform: rotate(90deg) scale(1.05);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    width: 100%;
    max-width: 480px;
    padding: 2rem;
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s, opacity 0.4s ease 0.1s;
}

.mobile-nav-drawer.active .mobile-nav-content {
    transform: translateY(0);
    opacity: 1;
}

.mobile-nav-logo img {
    max-height: 5.5rem;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(16, 70, 134, 0.12));
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.mobile-nav-links a {
    font-size: clamp(1.4rem, 5vw, 2rem);
    font-weight: 800;
    color: #0b2b5c;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    width: 100%;
    text-align: center;
    border-radius: 12px;
}

.mobile-nav-links a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 86, 191, 0.06);
    border-radius: inherit;
    z-index: -1;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
    color: #1456bf; /* Matches var(--brand) */
    transform: translateY(-2px);
}

.mobile-nav-links a:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Mobile Navigation Quality Link Special Style */
.mobile-nav-links a.nav-link-quality {
    color: #e11d48;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.mobile-nav-links a.nav-link-quality::before {
    background: rgba(225, 29, 72, 0.06);
}

.mobile-nav-links a.nav-link-quality:hover,
.mobile-nav-links a.nav-link-quality:focus-visible {
    color: #f43f5e;
    text-shadow: 0 0 10px rgba(225, 29, 72, 0.2);
}

/* Adjust pulsating dot size on mobile */
.mobile-nav-links a.nav-link-quality .nav-quality-dot {
    width: 9px;
    height: 9px;
}

/* Make hamburger button visible and layout responsive */
@media (max-width: 1100px) {
    .hamburger-btn {
        display: flex;
    }
}

/* Door-to-Door Distribution Section Mobile-Friendly Refactoring */
@media (max-width: 900px) {
    /* Hide SVG connection lines on mobile stack */
    #distribution #connections-canvas {
        display: none !important;
    }

    #distribution #chello-weekly-routine-widget {
        min-height: auto !important;
        padding: 0 0 20px !important;
    }

    #distribution .ui-container {
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 0 10px !important;
    }

    /* Reset absolute panel positioning to natural vertical layout */
    #distribution .panel {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 550px !important;
        height: auto !important;
        margin: 0 auto !important;
        opacity: 1 !important;
        pointer-events: all !important;
        transition: none !important;
        display: none !important; /* Hidden by default, displayed based on mode */
    }

    /* Display the active panel based on the current data-mode */
    #distribution #chello-weekly-routine-widget[data-mode="city-preview"] #route-table-panel {
        display: flex !important;
    }

    #distribution #chello-weekly-routine-widget[data-mode="route-expanded"] #ref-details-panel {
        display: block !important;
    }

    #distribution #chello-weekly-routine-widget[data-mode="day-visualization"] #day-nodes-container {
        display: block !important;
    }

    /* Position the back button relatively at the top of the widget */
    #distribution .back-btn {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        margin: 10px auto 20px !important;
        opacity: 1 !important;
        pointer-events: all !important;
        display: inline-flex !important;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(6,69,113,0.08) !important;
    }
    
    #distribution #chello-weekly-routine-widget[data-mode="region-select"] .back-btn {
        display: none !important;
    }

    /* Position the active region card above the route table in preview mode */
    #distribution #chello-weekly-routine-widget:not([data-mode="region-select"]) .region-card.active {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin: 0 auto 20px !important;
        width: 160px !important;
        height: 160px !important;
        opacity: 1 !important;
        pointer-events: none !important;
        display: block !important;
        box-shadow: 0 10px 25px rgba(6,69,113,0.08) !important;
    }

    /* Hide active card in deeper pages to maximize focus and space */
    #distribution #chello-weekly-routine-widget[data-mode="route-expanded"] .region-card.active,
    #distribution #chello-weekly-routine-widget[data-mode="day-visualization"] .region-card.active {
        display: none !important;
    }

    /* Responsive route table card styling */
    #distribution .route-table-panel {
        width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
        max-height: 520px !important;
        padding: 24px 16px !important;
        border-radius: 24px !important;
    }

    #distribution .route-table th, 
    #distribution .route-table td {
        padding: 12px 10px !important;
        font-size: 0.85rem !important;
    }

    /* Responsive driver reference card styling */
    #distribution .ref-details-panel {
        width: 100% !important;
        max-width: 440px !important;
        padding: 20px !important;
        border-radius: 24px !important;
        margin: 0 auto !important;
    }

    #distribution .contact-action-card {
        min-height: 72px !important;
        padding: 10px 14px !important;
        border-radius: 18px !important;
    }

    #distribution .contact-number {
        font-size: 1.1rem !important;
    }

    #distribution .contact-icon {
        width: 42px !important;
        height: 42px !important;
    }

    #distribution .contact-icon svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Stacking schedule days nicely in a column of full-width items */
    #distribution .day-nodes-container {
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }

    #distribution .day-nodes-list {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    #distribution .mini-day-node {
        width: 100% !important;
        height: 54px !important;
        border-radius: 16px !important;
        padding: 0 16px !important;
        justify-content: flex-start !important;
        font-size: 0.95rem !important;
        opacity: 1 !important;
        animation: none !important;
        border-color: rgba(6,69,113,0.08) !important;
    }

    #distribution .mini-day-node.active-day {
        border-color: rgba(37,150,190,0.3) !important;
    }

    /* Re-align tooltip badges to be inline and right-aligned */
    #distribution .time-badge, 
    #distribution .holiday-badge-label {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        margin-left: auto !important;
        padding: 4px 10px !important;
        font-size: 0.75rem !important;
        border-radius: 20px !important;
        opacity: 1 !important;
        box-shadow: none !important;
        border: none !important;
        background: rgba(6, 69, 113, 0.08) !important;
        color: var(--primary) !important;
    }

    #distribution .mini-day-node.holiday-day .holiday-badge-label {
        background: rgba(204, 0, 0, 0.1) !important;
        color: #cc0000 !important;
    }

    #distribution .mini-day-node.holiday-day::before {
        display: none !important;
    }

    /* ─── FIX 1: Region Cards — absolute → flex-column stack ─── */
    #distribution #chello-weekly-routine-widget[data-mode="region-select"] .carousel-container {
        position: relative !important;
        width: 100% !important;
        padding: 0 12px !important;
        order: 1 !important;
    }

    #distribution #chello-weekly-routine-widget[data-mode="region-select"] .days-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 18px !important;
        align-items: center !important;
        width: 100% !important;
    }

    /* Pull all region cards out of absolute positioning */
    #distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 92% !important;
        max-width: 480px !important;
        height: auto !important;
        min-height: 160px !important;
        border-radius: 22px !important;
        opacity: 1 !important;
        margin: 0 auto !important;
        cursor: pointer !important;
    }

    /* Restore card hover/active on touch */
    #distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card.hovered,
    #distribution #chello-weekly-routine-widget[data-mode="region-select"] .region-card:active {
        transform: translateY(-3px) !important;
        box-shadow: 0 20px 45px rgba(6,69,113,0.14) !important;
    }

    /* ─── FIX 2: Central Flow Cards — absolute → horizontal scroll strip ─── */
    #distribution .central-flow-elements {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;  /* Firefox */
        order: 2 !important;
        margin: 16px 0 !important;
    }

    #distribution .central-flow-elements::-webkit-scrollbar {
        display: none !important;
    }

    #distribution .center-column {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: max-content !important;
        height: auto !important;
        display: flex !important;
        flex-direction: row !important;
        gap: 12px !important;
        padding: 4px 16px 16px !important;
        align-items: stretch !important;
    }

    /* Each feature card becomes a fixed-width horizontal tile */
    #distribution .center-flow-card {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 188px !important;
        min-height: 72px !important;
        flex-shrink: 0 !important;
        border-radius: 18px !important;
        padding: 14px 16px !important;
    }

    #distribution .center-flow-card:hover {
        transform: translateY(-3px) !important;
    }

    /* Hide the truck node — it needs the canvas SVG network for context */
    #distribution .center-truck-node {
        display: none !important;
    }

    /* ─── FIX 3: Bottom Stats Bar — fixed position → 2×2 grid ─── */
    #distribution .bottom-stats-bar {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: none !important;
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 16px !important;
        border-radius: 20px !important;
        background: rgba(255, 255, 255, 0.7) !important;
        border: 1px solid rgba(255, 255, 255, 0.92) !important;
        box-shadow: 0 12px 32px rgba(6, 69, 113, 0.08) !important;
        margin: 8px 0 16px !important;
        order: 3 !important;
    }

    #distribution .stat-bar-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 10px !important;
        padding: 10px 12px !important;
        min-width: 0 !important;
        background: rgba(255,255,255,0.6) !important;
        border-radius: 14px !important;
        border: 1px solid rgba(37,150,190,0.1) !important;
    }

    #distribution .sbi-icon-wrapper {
        width: 42px !important;
        height: 42px !important;
        flex-shrink: 0 !important;
        border-radius: 12px !important;
    }

    #distribution .sbi-icon-wrapper::before {
        width: 22px !important;
        height: 22px !important;
    }

    #distribution .sbi-val {
        font-size: 1rem !important;
        line-height: 1.15 !important;
        white-space: normal !important;
    }

    #distribution .sbi-label {
        margin-top: 3px !important;
        font-size: 0.72rem !important;
        line-height: 1.25 !important;
        white-space: normal !important;
        word-break: break-word !important;
    }
}

/* ─── FIX 4: Search bar — stack button below on very small screens ─── */
@media (max-width: 420px) {
    #distribution .town-search-control {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    #distribution .town-search-btn {
        width: 100% !important;
        border-radius: 14px !important;
        padding: 12px 20px !important;
        justify-content: center !important;
        order: 3 !important;
    }

    #distribution #townSearchInput {
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    #distribution .town-search-icon {
        flex-shrink: 0 !important;
    }
}

/* Premium network coverage summary */
#distribution .network-coverage-summary { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; margin-top:14px; }
#distribution .network-summary-item { min-height:66px; padding:10px 12px; border:1px solid rgba(37,150,190,.16); border-radius:16px; background:linear-gradient(145deg,rgba(255,255,255,.92),rgba(237,248,252,.82)); box-shadow:0 8px 22px rgba(6,69,113,.07); display:flex; flex-direction:column; justify-content:center; text-align:center; }
#distribution .network-summary-item strong { color:var(--primary,#064571); font-size:1.12rem; line-height:1.1; font-weight:900; }
#distribution .network-summary-item span { margin-top:4px; color:#557182; font-size:.66rem; font-weight:800; letter-spacing:.05em; text-transform:uppercase; }
@media (max-width:640px) { #distribution .network-coverage-summary{gap:7px;} #distribution .network-summary-item{min-height:58px;padding:8px 5px;border-radius:13px;} #distribution .network-summary-item strong{font-size:.98rem;} #distribution .network-summary-item span{font-size:.55rem;} }

/* ==========================================================================
   MOBILE VIEW PERFECTION & QA REFINEMENT (Full-Stack Responsive System)
   ========================================================================== */

/* --- 1. Global Mobile Reset & Touch Polish --- */
html, body {
    overflow-x: hidden;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* Prevent iOS Safari auto-zoom on input focus */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea,
select {
    font-size: 16px !important;
}

/* --- 2. Mobile Navigation Drawer & Hamburger Perfection --- */
@media (max-width: 1100px) {
    .site-navbar {
        top: 0.6rem;
        width: calc(100% - 1.2rem);
        padding: 0.6rem 0.85rem;
    }

    .site-navbar .brand-logo {
        max-height: 2.85rem;
    }

    .hamburger-btn {
        display: inline-flex !important;
        min-width: 44px;
        min-height: 44px;
        width: 2.85rem;
        height: 2.85rem;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid rgba(20, 86, 191, 0.16);
        box-shadow: 0 4px 14px rgba(16, 70, 134, 0.12);
        cursor: pointer;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        margin-left: 0.4rem;
        transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    }

    .hamburger-btn:active {
        transform: scale(0.92);
    }

    .hamburger-line {
        display: block;
        width: 1.15rem;
        height: 2px;
        background-color: #0b2b5c;
        border-radius: 9px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .hamburger-btn.open .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.open .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger-btn.open .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-nav-drawer {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(35px) saturate(180%);
        -webkit-backdrop-filter: blur(35px) saturate(180%);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 2rem 1.2rem;
    }

    .mobile-nav-drawer.active {
        transform: translateX(0);
        pointer-events: all;
    }

    .mobile-nav-close {
        position: absolute;
        top: 1.2rem;
        right: 1.2rem;
        width: 2.85rem;
        height: 2.85rem;
        min-width: 44px;
        min-height: 44px;
        border-radius: 50%;
        background: rgba(6, 69, 113, 0.08);
        border: 1px solid rgba(6, 69, 113, 0.14);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #0b2b5c;
        cursor: pointer;
        transition: transform 0.25s ease, background 0.25s ease;
        box-shadow: 0 4px 16px rgba(6, 69, 113, 0.08);
    }

    .mobile-nav-close:active {
        transform: scale(0.9) rotate(90deg);
    }

    .mobile-nav-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.6rem;
        width: 100%;
        max-width: 380px;
        margin: auto;
        opacity: 0;
        transform: translateY(20px);
        transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.08s, opacity 0.35s ease 0.08s;
    }

    .mobile-nav-drawer.active .mobile-nav-content {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-nav-logo img {
        max-height: 4.2rem;
        width: auto;
        object-fit: contain;
        filter: drop-shadow(0 8px 16px rgba(16, 70, 134, 0.15));
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    .mobile-nav-links a {
        font-family: 'Sora', 'Inter', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        color: #0b2b5c;
        text-decoration: none;
        padding: 0.75rem 1.4rem;
        width: 100%;
        text-align: center;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.6);
        border: 1px solid rgba(20, 86, 191, 0.08);
        box-shadow: 0 4px 12px rgba(16, 70, 134, 0.04);
        transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .mobile-nav-links a:active,
    .mobile-nav-links a:hover {
        background: #1456bf;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(20, 86, 191, 0.25);
    }

    .mobile-nav-links a.nav-link-quality {
        color: #e11d48;
        border-color: rgba(225, 29, 72, 0.2);
    }

    .mobile-nav-links a.nav-link-quality:active,
    .mobile-nav-links a.nav-link-quality:hover {
        background: #e11d48;
        color: #ffffff;
    }
}

/* --- 3. Welcome / Hero Section Mobile Polish --- */
@media (max-width: 560px) {
    #welcome .hero-content {
        margin-top: 4.8rem !important;
        padding-top: 0.5rem !important;
        height: auto !important;
        min-height: calc(100svh - 5.5rem);
    }

    #welcome .headline {
        font-size: clamp(2.2rem, 11.5vw, 3.2rem) !important;
        line-height: 1.08 !important;
    }

    #welcome .intro {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        max-width: 100% !important;
    }

    #welcome .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }

    #welcome .primary-btn,
    #welcome .secondary-note {
        min-height: 50px !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.92rem !important;
        border-radius: 100px !important;
        justify-content: center !important;
    }

    #welcome .trust-row {
        width: 100% !important;
        gap: 0.65rem !important;
    }
}

/* --- 4. Products Section Mobile Polish --- */
@media (max-width: 650px) {
    #products .carousel .list .item .content {
        width: calc(100% - 32px) !important;
        left: 16px !important;
        top: 50% !important;
    }

    #products .content .greeting {
        font-size: 0.78rem !important;
        letter-spacing: 2px !important;
    }

    #products .content .brand-name {
        font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
        line-height: 1.1 !important;
    }

    #products .content .title-main {
        font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
    }

    #products .content .description {
        font-size: 0.88rem !important;
        line-height: 1.45 !important;
        max-width: 100% !important;
    }

    #products .btn-modern {
        padding: 10px 22px !important;
        font-size: 0.88rem !important;
    }

    #products .thumbnail-wrapper {
        bottom: 16px !important;
    }

    #products .thumbnail-strip-container {
        max-width: calc(100vw - 32px) !important;
        -webkit-overflow-scrolling: touch;
    }

    #products .nav-arrows {
        bottom: 28% !important;
        right: 16px !important;
    }
}

/* --- 5. Nutritional Excellence Mobile Polish --- */
@media (max-width: 1100px) {
    #nutrition .container {
        padding: 0 16px !important;
        gap: 36px !important;
    }

    #nutrition .serving-header-title {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: translateY(-8px) !important;
        margin: 0 auto 12px auto !important;
        width: fit-content !important;
    }

    #nutrition .serving-header-inner {
        padding: 10px 20px !important;
        box-shadow: 0 10px 28px rgba(12, 98, 173, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    }

    #nutrition .serving-main-text {
        font-size: 0.9rem !important;
    }

    #nutrition .bottle-container {
        max-width: 270px !important;
    }

    #nutrition .cards-container {
        gap: 14px !important;
    }
}

@media (max-width: 580px) {
    #nutrition .cards-container {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
    }

    #nutrition .nutri-card {
        padding: 14px 16px !important;
        border-radius: 16px !important;
    }

    #nutrition .card-val {
        font-size: 1.55rem !important;
    }
}

/* --- 6. Recipes Wheel & Modal Mobile Polish --- */
@media (max-width: 600px) {
    #recipes .container {
        padding: 1.5rem 1rem 3rem !important;
    }

    #recipes .wheel-container {
        margin-bottom: 4.5rem !important;
    }

    #recipes .controls {
        bottom: -65px !important;
    }

    #recipes .arrow-btn {
        width: 48px !important;
        height: 48px !important;
    }

    #recipes .modal-content {
        max-width: 95vw !important;
        max-height: 90vh !important;
        border-radius: 20px !important;
    }

    #recipes .modal-body {
        grid-template-columns: 1fr !important;
        overflow-y: auto !important;
    }

    #recipes .creative-header {
        padding: 30px 20px 20px !important;
    }

    #recipes .modal-description {
        padding: 0 20px 20px !important;
    }
}

/* --- 7. Contact Section & Responsive Form Row --- */
.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    #contact {
        padding: 40px 14px !important;
    }

    #contact .layout-container {
        gap: 40px !important;
    }

    #contact .left-form-section {
        padding: 24px 16px !important;
        border-radius: 18px !important;
    }

    #contact .form-title {
        font-size: 1.65rem !important;
    }

    #contact .form-subtitle {
        font-size: 0.92rem !important;
        margin-bottom: 24px !important;
    }

    #contact .submit-btn {
        min-height: 50px !important;
        font-size: 0.95rem !important;
    }

    #contact .right-content-section {
        padding: 24px 16px !important;
        border-radius: 18px !important;
    }

    #contact .content-title {
        font-size: 1.65rem !important;
    }

    #contact .hub-circle-col {
        padding-right: 0 !important;
        width: 100% !important;
    }

    #contact .wheel-container {
        width: min(290px, calc(100vw - 32px)) !important;
        height: min(290px, calc(100vw - 32px)) !important;
    }

    #contact .interactive-hub-container {
        gap: 20px !important;
        min-height: auto !important;
    }

    #contact .hub-details-col {
        padding-top: 10px !important;
        max-width: 100% !important;
    }
}

/* --- 8. Leaflet Section Mobile Polish --- */
@media (max-width: 640px) {
    #leaflet .logo-text {
        font-size: clamp(1.85rem, 8vw, 2.5rem) !important;
    }

    #leaflet .liquid-grid {
        gap: 40px !important;
    }

    #leaflet .card-trigger:nth-child(even) {
        margin-top: 0 !important;
    }

    #leaflet .photo-section {
        width: min(260px, 75vw) !important;
        height: min(260px, 75vw) !important;
    }
}

