/* Frontend: marquee + hero slider (used with Tailwind CDN) */

@keyframes marquee-smooth {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.marquee-track {
  animation: marquee-smooth 35s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Top marquee: smooth hide on scroll */
.site-marquee {
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.35s ease,
    border-width 0.3s ease;
  max-height: 4rem;
}

@media (min-width: 768px) {
  .site-marquee {
    max-height: 4.5rem;
  }
}

body.is-scrolled .site-marquee {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-width: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Menu strip: scrolls with page (not fixed) */
.site-header-nav {
  position: relative;
  z-index: 40;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Desktop main nav: animated stroke underline on hover (no extra shadow/ring) */
@keyframes site-nav-stroke-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@media (min-width: 768px) {
  .site-main-nav .site-main-nav-link {
    position: relative;
        isolation: isolate;
        color: black;
        overflow: visible;
        font-weight: 800;
        font-size: 14px;
  }

  .site-main-nav .site-main-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    width: calc(100% - 1.35rem);
    max-width: 92%;
    height: 2px;
    border-radius: 999px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(246, 158, 64, 0.15) 12%,
      #f69e40 35%,
      #0a472e 52%,
      #0d6b46 65%,
      rgba(246, 158, 64, 0.35) 88%,
      transparent
    );
    background-size: 200% 100%;
    opacity: 0;
    transition:
      transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.28s ease;
    pointer-events: none;
    z-index: 2;
  }

  .site-main-nav .site-main-nav-link--home::after {
    bottom: 0.18rem;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      #fde8c4 40%,
      #fff 50%,
      #fde8c4 60%,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    background-size: 200% 100%;
  }

  .site-main-nav .site-main-nav-link:hover::after,
  .site-main-nav .site-main-nav-link:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
    animation: site-nav-stroke-shimmer 2.2s ease-in-out infinite;
  }
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
  .site-main-nav .site-main-nav-link::after {
    transition-duration: 0.01ms;
  }

  .site-main-nav .site-main-nav-link:hover::after,
  .site-main-nav .site-main-nav-link:focus-visible::after {
    animation: none;
  }
}

/* Logo + search row pinned on scroll — desktop + mobile (frontend.js) */
#header-main-row.is-main-row-pinned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  overflow: visible;
  box-shadow:
    0 10px 28px -10px rgba(10, 71, 46, 0.16),
    0 4px 14px -4px rgba(10, 71, 46, 0.1);
}

/* Mobile drawer: slides in from the right (below header bar via --mobile-drawer-top) */
@keyframes mobile-nav-item-in {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767.98px) {
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(10, 45, 28, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s ease,
      visibility 0.28s;
  }

  .mobile-nav-backdrop.mobile-nav-backdrop--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer {
    position: fixed;
    top: var(--mobile-drawer-top, 4.75rem);
    right: 0;
    bottom: 0;
    left: auto;
    width: min(19.5rem, 90vw);
    display: block;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(108%);
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 1.2rem 0 0 1.2rem;
    border: 1px solid rgba(10, 71, 46, 0.14);
    border-right: none;
    background: linear-gradient(200deg, #f5fcf8 0%, #e8f4ec 40%, #dff3e8 100%);
    box-shadow:
      -16px 0 48px -8px rgba(10, 71, 46, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    z-index: 46;
  }

  .mobile-nav-drawer.mobile-nav-drawer--open {
    transform: translateX(0);
    pointer-events: auto;
    box-shadow:
      -20px 0 56px -6px rgba(10, 71, 46, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .mobile-nav-drawer__inner {
    padding: 1rem 1rem 1.35rem;
    max-width: 36rem;
    margin: 0 auto;
  }

  .mobile-nav-drawer__eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #a67c00;
  }

  .mobile-nav-drawer__title {
    margin: 0 0 1rem;
    /* font-family: "Fraunces", Georgia, serif; */
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0a472e;
    line-height: 1.2;
  }

  .mobile-nav-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .mobile-nav-drawer--open .mobile-nav-item {
    animation: mobile-nav-item-in 0.48s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    animation-delay: calc(0.04s * var(--i, 0) + 0.06s);
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    padding: 0.88rem 1.05rem;
    border-radius: 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #0d3828;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(10, 71, 46, 0.11);
    box-shadow:
      0 2px 8px rgba(10, 71, 46, 0.06),
      0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition:
      transform 0.22s ease,
      box-shadow 0.22s ease,
      background 0.22s ease,
      border-color 0.22s ease,
      color 0.22s ease;
  }

  .mobile-nav-link:hover {
    background: #fff;
    color: #0a472e;
    border-color: rgba(10, 71, 46, 0.2);
    transform: translateX(5px);
    box-shadow:
      0 8px 20px rgba(10, 71, 46, 0.12),
      0 1px 0 rgba(255, 255, 255, 1) inset;
  }

  .mobile-nav-link--active {
    background: linear-gradient(142deg, #0a472e 0%, #127350 55%, #0a472e 100%);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
      0 8px 26px rgba(10, 71, 46, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  .mobile-nav-link--active:hover {
    color: #fff;
    filter: brightness(1.05);
    transform: translateX(4px);
  }
}

@media (max-width: 767.98px) and (prefers-reduced-motion: reduce) {
  .mobile-nav-drawer,
  .mobile-nav-backdrop {
    transition-duration: 0.01ms !important;
  }

  .mobile-nav-drawer--open .mobile-nav-item {
    animation: none !important;
  }
}

/* Hamburger: mobile only — id + !important so clicks work */
@media (min-width: 768px) {
  #menu-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 767.98px) {
  #menu-toggle {
    display: inline-flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

.hero-slide {
  opacity: 0;
  transition: opacity 700ms ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* Header: search-right icon cluster */
.header-icon-group .header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    color: #0a472e;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7f5 100%);
    border: 1px solid rgba(10, 71, 46, 0.12);
    box-shadow:
        0 2px 6px rgba(10, 71, 46, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
    text-decoration: none;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .header-icon-group .header-icon-btn {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.875rem;
    }
}

.header-icon-group .header-icon-btn:hover {
    color: #073d28;
    border-color: rgba(10, 71, 46, 0.28);
    background: linear-gradient(180deg, #f0faf4 0%, #ffffff 100%);
    box-shadow:
        0 6px 14px rgba(10, 71, 46, 0.12),
        0 1px 0 rgba(255, 255, 255, 1) inset;
    transform: translateY(-1px);
}

.header-icon-group .header-icon-btn:active {
    transform: translateY(0);
}

/* Icon + label (Wishlist, Login / Register) — full label from md */
.header-icon-group .header-icon-btn--labeled {
    width: auto;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.55rem 0 0.45rem;
    gap: 0.35rem;
}

@media (min-width: 640px) {
    .header-icon-group .header-icon-btn--labeled {
        min-height: 2.75rem;
        height: auto;
        min-width: 0;
        padding: 0.35rem 0.65rem 0.35rem 0.5rem;
        gap: 0.45rem;
    }
}

.header-icon-group .header-icon-btn__text {
    display: none;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.15;
    color: inherit;
    max-width: 7.5rem;
    text-align: left;
    text-wrap: balance;
}

@media (min-width: 768px) {
    .header-icon-group .header-icon-btn__text {
        display: inline;
    }
}

.header-icon-group .header-cart-badge {
    position: absolute;
    right: -2px;
    top: -2px;
    min-width: 1.125rem;
    height: 1.125rem;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
    pointer-events: none;
}

.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* Products — professional catalog gallery */

 .products-section {
    font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 38%, #f0f4f2 100%);
    padding: 3rem 1.25rem 2.25rem;
    overflow: hidden;
    border-top: 1px solid rgba(10, 71, 46, 0.06);
    border-bottom: 1px solid rgba(10, 71, 46, 0.06);
}

.products-section--pro {
    position: relative;
}

.products-section--pro::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 85% 55% at 50% -15%, rgba(10, 71, 46, 0.06), transparent 60%);
    z-index: 0;
}

.products-section .container,
.products-section__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

.products-section--pro .products-section__inner {
    max-width: none;
    width: 100%;
}

/* Desktop / tablet: full-bleed products row; wider cards + image area */
@media (min-width: 768px) {
    .products-section {
            padding: 1.5rem 0 2.75rem;
        padding-left: 0;
        padding-right: 0;
    }

    .products-section .container,
    .products-section__inner {
        max-width: none;
        width: 100%;
        margin: 0;
        padding-left: clamp(1rem, 4vw, 2.5rem);
        padding-right: clamp(1rem, 4vw, 2.5rem);
    }

    .products-section .product-image-wrapper {
        width: calc(100% - 1rem);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.5rem;
        aspect-ratio: unset;
        height: 11.25rem;
        max-height: 198px;
        border-radius: 0.55rem;
    }

    /* Pro grid: full-width tile — overrides inset frame sizes above */
    .products-section--pro .products-grid .product-image-wrapper {
        width: 100%;
        margin: 0;
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
        border-radius: 0.875rem 0.875rem 0 0;
    }
}

.products-section .section-header {
    text-align: center;
    margin-bottom: 2.75rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .products-section .section-header {
        margin-bottom: 3rem;
    }
}

.products-section .section-eyebrow {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #0a472e;
    opacity: 0.85;
    margin: 0 0 0.65rem;
}

.products-section .section-title {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(1.9rem, 4vw, 2.65rem);
    font-weight: 700;
    color: #0a472e;
    letter-spacing: -0.025em;
    margin: 0 0 0.85rem;
    line-height: 1.12;
}

.products-section .section-title::after {
    content: "";
    display: block;
    width: 4rem;
    height: 3px;
    margin: 1rem auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #f69e40, #0a472e);
    opacity: 0.95;
}

.products-section .section-subtitle {
    font-size: 0.9375rem;
    color: #5a6b62;
    font-weight: 450;
    line-height: 1.65;
    margin: 0;
    padding: 0 0.75rem;
    max-width: 34rem;
    margin-left: auto;
    margin-right: auto;
}

.products-grid-wrap {
    position: relative;
    width: 100%;
}

/* Our Products: static grid — 2 cols phone, 4 cols tablet+ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 0.65rem;
    width: 100%;
    padding: 0.3rem 0 0.85rem;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.85rem 0.7rem;
        padding: 0.35rem 0 1rem;
    }
}

.products-section--pro .products-grid .product-card {
    min-width: 0;
    max-width: none;
    width: 100%;
    border-radius: 0.875rem;
}

.products-section--pro .products-grid .product-card-body {
    padding: 0.7rem 0.8rem 0.9rem;
}

.products-section--pro .products-grid .product-title {
    font-size: 0.8125rem;
    min-height: 2.35rem;
    line-height: 1.38;
}

.products-section--pro .products-grid .product-badge--pct {
    top: 0.45rem;
    left: 0.45rem;
    font-size: 0.68rem;
    padding: 0.26rem 0.52rem;
}

.products-section--pro .products-grid .current-price {
    font-size: 1.02rem;
}

.products-section--pro .products-grid .product-qty-cart-row {
    margin-bottom: 0.25rem;
}

.products-section--pro .products-grid .product-qty-cart-row__cta .add-to-cart--body {
    font-size: 0.7rem;
    padding: 0.3rem 0.45rem 0.3rem 0.38rem;
    gap: 0.28rem;
}

.products-section--pro .products-grid .product-qty-cart-row__cta .add-to-cart-icon {
    width: 1.28rem;
    height: 1.28rem;
}

.products-section--pro .products-grid .product-qty-cart-row__cta .add-to-cart-icon svg {
       width: 17px;
    height: 25px;
}

.products-section--pro .products-grid .product-qty-cart-row__cta .product-wishlist-btn--body {
    width: 2.35rem;
    min-height: 2.1rem;
}

/* Our Products: image band — edge-to-edge on card, cover crop, even frame */
.products-section--pro .products-grid .product-image-wrapper {
    width: 100%;
    margin: 0;
    aspect-ratio: 1 / 1;
    height: auto;
    max-height: none;
    border-radius: 0.875rem 0.875rem 0 0;
    border: none;
    border-bottom: 1px solid rgba(10, 71, 46, 0.08);
    background: #e8ece9;
    box-shadow: none;
}

.products-section--pro .products-grid .product-card-link--media {
    border-radius: 0;
}

.products-section--pro .products-grid .product-img {
    object-fit: cover;
    object-position: center;
  }

  .product-card {
    min-width: min(100%, 17.25rem);
    max-width: 18.5rem;
    flex: 0 0 auto;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(10, 71, 46, 0.1);
    box-shadow:
        0 1px 2px rgba(10, 71, 46, 0.04),
        0 14px 36px -12px rgba(10, 71, 46, 0.12),
        0 8px 24px -16px rgba(0, 0, 0, 0.08);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease,
        border-color 0.25s ease;
    position: relative;
    padding-bottom: 0;
  }

  .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(10, 71, 46, 0.18);
    box-shadow:
        0 4px 8px -2px rgba(10, 71, 46, 0.08),
        0 22px 44px -14px rgba(10, 71, 46, 0.18),
        0 16px 32px -20px rgba(0, 0, 0, 0.1);
  }

  .product-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: rgba(255, 255, 255, 0.97);
    color: #0a472e;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 4;
    box-shadow: 0 2px 10px rgba(10, 71, 46, 0.12);
    border: 1px solid rgba(10, 71, 46, 0.12);
}

/* Discount % — top corner (replaces “Top Rated” style labels) */
.product-badge--pct {
    background: linear-gradient(145deg, #fb923c 0%, #ea580c 50%, #c2410c 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    box-shadow:
        0 4px 14px rgba(194, 65, 12, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Inset product photo — catalog frame */
  .product-image-wrapper {
    position: relative;
    width: calc(100% - 1.25rem);
    aspect-ratio: 333 / 332;
    height: auto;
    margin: 0.65rem auto 0;
    overflow: hidden;
    background: linear-gradient(165deg, #f6f9f7 0%, #ebf2ed 50%, #e2ebe5 100%);
    border: 1px solid rgba(10, 71, 46, 0.07);
    border-radius: 0.65rem;
    box-sizing: border-box;
  }

/* Clickable image area (buttons/overlays stay outside this link) */
.product-card-link--media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    border-radius: 0.55rem;
    outline: none;
}

.product-card-link--media:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0a472e;
}

.product-wishlist-btn--overlay,
.product-image-hover-cta {
    display: none;
}

/* Desktop hover UX: image wishlist + slide-up cart; touch / no-hover keeps body actions */
@media (min-width: 768px) and (hover: hover) {
    .product-wishlist-btn--overlay {
        display: flex;
        position: absolute;
        right: 0.38rem;
        top: 0.38rem;
        z-index: 4;
        width: 2.35rem;
        height: 2.35rem;
        margin: 0;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        box-shadow: 0 2px 12px rgba(10, 71, 46, 0.16);
        border-width: 1.5px;
    }

    .product-wishlist-btn--overlay:hover {
        background: #fff;
    }

    .product-card-body .product-wishlist-btn--body,
    .product-card-body .add-to-cart--body {
        display: none !important;
    }

    .product-image-hover-cta {
    position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
    display: flex;
        align-items: flex-end;
        padding: 0.35rem 0.4rem 0.4rem;
        background: linear-gradient(
            to top,
            rgba(255, 255, 255, 0.99) 0%,
            rgba(252, 253, 252, 0.92) 50%,
            rgba(255, 255, 255, 0) 100%
        );
        border-top: 1px solid rgba(10, 71, 46, 0.07);
        transform: translateY(100%);
    opacity: 0;
        transition:
            transform 0.45s cubic-bezier(0.33, 1, 0.68, 1),
            opacity 0.38s ease;
        pointer-events: none;
  }

    .product-card:hover .product-image-hover-cta {
    transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .product-image-hover-cta .add-to-cart--image-bar {
        transform: translateY(0.45rem);
        opacity: 0.94;
        transition:
            transform 0.42s cubic-bezier(0.33, 1, 0.68, 1) 0.04s,
            opacity 0.35s ease 0.04s,
            background 0.2s ease,
            box-shadow 0.2s ease;
    }

    .product-card:hover .product-image-hover-cta .add-to-cart--image-bar {
        transform: translateY(0);
        opacity: 1;
    }

    .add-to-cart--image-bar {
    width: 100%;
        border-radius: 0.5rem;
        padding: 0.34rem 0.5rem 0.34rem 0.42rem;
        font-size: 0.72rem;
        gap: 0.32rem;
        box-shadow: 0 1px 6px rgba(10, 71, 46, 0.18);
    }

    .add-to-cart--image-bar .add-to-cart-icon {
        width: 1.32rem;
        height: 1.32rem;
    }

    .add-to-cart--image-bar .add-to-cart-icon svg {
        width: 12px;
        height: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-image-hover-cta {
        transition-duration: 0.01ms !important;
    }
}

.product-card-body {
    padding: 0.85rem 1rem 1.1rem;
}

.product-category-line {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #7a8b82;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.product-sku-line {
    font-size: 0.6875rem;
    color: #8f9d94;
    margin: 0 0 0.65rem;
    font-variant-numeric: tabular-nums;
}

.product-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin: 0 0 0.8rem;
}

/* Qty (left) + Add to cart & wishlist (right) — always visible */
.product-qty-cart-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.6rem;
    flex-wrap: nowrap;
    margin: 0 0 0.2rem;
}

.product-qty-cart-row__qty {
    display: flex;
    align-items: center;
    gap: 0.38rem;
    flex-shrink: 0;
}

.product-qty-cart-row__cta {
    display: flex;
    align-items: stretch;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
    justify-content: flex-end;
}

.product-qty-cart-row__cta .add-to-cart--body {
    flex: 1;
    min-width: 0;
}

.product-qty-cart-row__cta .product-wishlist-btn--body {
    flex-shrink: 0;
}

.products-section--pro .product-image-hover-cta {
    display: none !important;
}

@media (min-width: 768px) and (hover: hover) {
    .products-section--pro .product-card-body .product-wishlist-btn--body,
    .products-section--pro .product-card-body .add-to-cart--body {
        display: flex !important;
    }
}

.product-qty-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6d7e74;
}

.product-image-inner {
    position: absolute;
    inset: 0;
    display: block;
}

.product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: opacity 0.35s ease;
}

.default-img {
    opacity: 1;
    z-index: 1;
}

.hover-img {
    opacity: 0;
    z-index: 2;
}

.product-card:hover .default-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}

.product-card-body .product-title {
    margin: 0 0 0.45rem;
  }

  .product-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0a2218;
    line-height: 1.4;
    margin: 0.9rem 1rem 0.5rem;
    min-height: 2.65rem;
}

.product-title .product-title-link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.product-card-body .product-rating {
    margin: 0 0 0.5rem;
  }

  .product-rating {
    margin: 0 1rem 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.35rem;
  }

  .stars {
    color: #e6a800;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .rating-count {
    color: #6d7e74;
    font-size: 0.72rem;
    font-weight: 500;
    margin-left: 0;
}

.product-card-body .product-price {
    margin: 0 0 0.35rem;
  }

  .product-price {
    margin: 0 1rem 0.65rem;
    display: flex;
    align-items: baseline;
    gap: 0.4rem 0.5rem;
    flex-wrap: wrap;
  }

  .current-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a472e;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
  }

  .original-price {
    font-size: 0.8rem;
    color: #8f9b92;
    text-decoration: line-through;
  }

  .discount {
    background: rgba(10, 71, 46, 0.1);
    color: #0a472e;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(10, 71, 46, 0.12);
  }

  .product-info {
    margin: 0 1rem 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
  }

  .sku {
    color: #8a9690;
  }

  .category-badge {
    background: rgba(10, 71, 46, 0.09);
    color: #0a472e;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.65rem;
    font-weight: 600;
  }

.product-card-body .quantity-selector {
    margin: 0;
}

  .quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0 1rem 0.75rem;
  }

  .qty-btn {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(10, 71, 46, 0.18);
    background: #fafcfb;
    border-radius: 0.5rem;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
    color: #0a472e;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s;
  }

  .qty-btn:hover {
    background: #0a472e;
    color: #fff;
    border-color: #0a472e;
  }

  .qty-input {
    width: 2.5rem;
    height: 2rem;
    text-align: center;
    border: 1px solid rgba(10, 71, 46, 0.15);
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d3828;
}

.product-card-body .product-card-actions {
    margin: 0;
}

.product-card-actions {
    display: flex;
    align-items: stretch;
    gap: 0.45rem;
    margin: 0 1rem 0.2rem;
}

.product-wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.65rem;
    min-height: 2.45rem;
    padding: 0;
    border-radius: 999px;
    border: 1.5px solid rgba(10, 71, 46, 0.35);
    background: #fff;
    color: #0a472e;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(10, 71, 46, 0.08);
}

.product-wishlist-btn:hover {
    border-color: #f69e40;
    color: #b8620f;
    background: #fffef8;
    box-shadow: 0 4px 12px rgba(201, 162, 39, 0.22);
}

.product-wishlist-btn[aria-pressed='true'] {
    background: linear-gradient(155deg, #fff0f0 0%, #ffe8e8 100%);
    border-color: #e63946;
    color: #c1121f;
    box-shadow: 0 2px 10px rgba(230, 57, 70, 0.2);
}

.product-wishlist-icon--filled {
    display: none;
}

.product-wishlist-btn[aria-pressed='true'] .product-wishlist-icon--outline {
    display: none;
}

.product-wishlist-btn[aria-pressed='true'] .product-wishlist-icon--filled {
    display: block;
  }

  .add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    flex: 1;
    min-width: 0;
    background: #0a472e;
    border: 1px solid #073d28;
    color: #fff;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    padding: 0.34rem 0.58rem 0.34rem 0.48rem;
    margin: 0;
    width: auto;
    border-radius: 0.5rem;
    cursor: pointer;
    transition:
        transform 0.22s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.22s ease;
    box-shadow: 0 1px 6px rgba(10, 71, 46, 0.2);
}

.add-to-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.38rem;
    height: 1.38rem;
    border-radius: 999px;
    /* background: rgba(255, 255, 255, 0.22); */
    color: #fff;
    transition: transform 0.2s ease, background 0.2s ease;
}

.add-to-cart-icon svg {
    display: block;
    opacity: 1;
    width: 13px;
    height: 13px;
  }

  .add-to-cart:hover {
    transform: translateY(-1px);
    background: #073d28;
    border-color: #05281b;
    box-shadow: 0 4px 12px rgba(10, 71, 46, 0.22);
}

.add-to-cart:hover .add-to-cart-icon {
    transform: scale(1.04);
    background: rgba(255, 255, 255, 0.3);
}

.add-to-cart:active {
    transform: translateY(0);
    background: #05281b;
}

.add-to-cart-label {
    line-height: 1.2;
}

a.add-to-cart {
    text-decoration: none;
    color: #fff;
}

button.add-to-cart {
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    color: #fff;
}

/* Product detail — Add to cart (solid brand green, matches listing) */
.pdp-add-cart,
.pdp-sticky-add-cart {
    background: #0a472e !important;
    color: #fff !important;
    border: 1px solid #073d28 !important;
    box-shadow: 0 2px 12px rgba(10, 71, 46, 0.22) !important;
    text-shadow: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.22s ease !important;
}

.pdp-add-cart {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 0.85rem 0.5rem 0.6rem !important;
    font-size: 0.8125rem !important;
    gap: 0.4rem !important;
    border-radius: 0.875rem !important;
}

.pdp-sticky-add-cart {
    padding: 0.4rem 0.55rem 0.4rem 0.45rem !important;
    font-size: 0.7rem !important;
    gap: 0.35rem !important;
    border-radius: 0.65rem !important;
}

.pdp-add-cart:hover,
.pdp-sticky-add-cart:hover {
    background: #073d28 !important;
    border-color: #05281b !important;
    filter: none !important;
    box-shadow: 0 6px 18px rgba(10, 71, 46, 0.28) !important;
}

.pdp-add-cart-icon-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.45rem;
    background: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
    box-shadow: none !important;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pdp-add-cart:hover .pdp-add-cart-icon-chip,
.pdp-sticky-add-cart:hover .pdp-add-cart-icon-chip {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.3) !important;
}

.pdp-add-cart-icon-chip svg {
    width: 15px;
    height: 15px;
}

.pdp-sticky-add-cart .pdp-add-cart-icon-chip svg {
    width: 13px;
    height: 13px;
}

.pdp-add-cart .pdp-add-cart-icon-chip {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.45rem;
}

.pdp-sticky-add-cart .pdp-add-cart-icon-chip {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 0.4rem;
}

/* PDP + sticky: wishlist (right side) */
.pdp-wishlist-btn,
.pdp-sticky-wishlist {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 0.875rem;
    border: 1.5px solid rgba(10, 71, 46, 0.35);
    background: #fff;
    color: #0a472e;
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(10, 71, 46, 0.08);
}

.pdp-wishlist-btn {
    width: 2.75rem;
    align-self: stretch;
    min-height: 2.75rem;
}

/* PDP CTAs — panel has no fill; orange is on the buttons only (#e78014) */
.pdp-cta-panel {
    background: transparent;
}

.pdp-cta-row-main .pdp-add-cart {
    flex: 0 1 auto !important;
    width: auto !important;
    max-width: 100%;
    min-width: 0 !important;
    min-height: 2.75rem !important;
    padding: 0.55rem 1.35rem !important;
    font-size: 0.8rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.06em;
    gap: 0.45rem !important;
    border-radius: 9999px !important;
    background: #e78014 !important;
    color: #fff !important;
    border: 1px solid #c96a0f !important;
    box-shadow: 0 2px 10px rgba(231, 128, 20, 0.35);
}

.pdp-cta-row-main .pdp-add-cart:hover {
    background: #d97706 !important;
    color: #fff !important;
    border-color: #b85d0d !important;
    box-shadow: 0 4px 14px rgba(231, 128, 20, 0.4) !important;
}

/* PDP primary row: Add to cart is pill-only text (no icon chip in markup) */
.pdp-checkout-card .pdp-buy-now {
    font-weight: 800 !important;
    border: none !important;
    cursor: pointer;
}

.pdp-checkout-card .pdp-buy-now:focus-visible {
    outline: 2px solid #f0f9f9;
    outline-offset: 2px;
}

/* Wishlist under CTAs: icon + label, narrow pill */
.pdp-wishlist-btn.pdp-wishlist-btn--labeled {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content;
    align-self: flex-start;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem 0.45rem 0.65rem !important;
    min-height: 2.65rem !important;
    border-radius: 0.75rem !important;
    font-size: 0.8rem !important;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pdp-wishlist-btn.pdp-wishlist-btn--labeled .pdp-wishlist-ic-outline,
.pdp-wishlist-btn.pdp-wishlist-btn--labeled .pdp-wishlist-ic-filled {
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0;
}

.pdp-cta-panel .pdp-wishlist-btn.pdp-wishlist-btn--labeled {
    background: #e78014 !important;
    color: #fff !important;
    border-color: #c96a0f !important;
    box-shadow: 0 2px 10px rgba(231, 128, 20, 0.3);
}

.pdp-cta-panel .pdp-wishlist-btn.pdp-wishlist-btn--labeled:hover {
    background: #d97706 !important;
    color: #fff !important;
    border-color: #b85d0d !important;
}

.pdp-cta-panel .pdp-wishlist-btn.pdp-wishlist-btn--labeled[aria-pressed='true'] {
    background: linear-gradient(155deg, #fff0f0 0%, #ffe4e4 100%) !important;
    border-color: #e63946 !important;
    color: #c1121f !important;
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.2);
}

.pdp-wishlist-btn:hover,
.pdp-sticky-wishlist:hover {
    border-color: #f69e40;
    color: #b8620f;
    background: #fffef8;
}

.pdp-wishlist-btn[aria-pressed='true'],
.pdp-sticky-wishlist[aria-pressed='true'] {
    background: linear-gradient(155deg, #fff0f0 0%, #ffe4e4 100%);
    border-color: #e63946;
    color: #c1121f;
}

.pdp-sticky-wishlist {
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 0.65rem;
}

.pdp-wishlist-ic-filled,
.pdp-sticky-wishlist .pdp-wishlist-ic-filled {
    display: none;
}

.pdp-wishlist-btn[aria-pressed='true'] .pdp-wishlist-ic-outline,
.pdp-sticky-wishlist[aria-pressed='true'] .pdp-wishlist-ic-outline {
    display: none;
}

.pdp-wishlist-btn[aria-pressed='true'] .pdp-wishlist-ic-filled,
.pdp-sticky-wishlist[aria-pressed='true'] .pdp-wishlist-ic-filled {
    display: block;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-bottom: 0.25rem;
  }

  .dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgba(10, 71, 46, 0.22);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s,
        border-radius 0.25s;
  }

  .dot.active {
    width: 1.5rem;
    border-radius: 999px;
    background: #0a472e;
}

/* Mobile: compact 2-column product grid */
@media (max-width: 767.98px) {
    .products-section {
        padding: 2.25rem 0.65rem 2.5rem;
    }

    .products-section .section-header {
        margin-bottom: 1.75rem;
    }

    .products-grid {
        gap: 0.65rem 0.55rem;
        padding: 0.2rem 0 0.35rem;
    }

    .products-section .product-card,
    .product-card {
        min-width: 0 !important;
        max-width: none !important;
        width: 100% !important;
        flex: none !important;
        border-radius: 0.875rem;
        box-shadow:
            0 1px 3px rgba(10, 71, 46, 0.06),
            0 10px 28px -12px rgba(10, 71, 46, 0.14);
    }

    .products-section .product-card:active {
        transform: scale(0.99);
    }

    .product-image-wrapper {
        width: calc(100% - 0.9rem) !important;
        margin: 0.45rem auto 0 !important;
        aspect-ratio: 1 / 1;
        max-height: none;
        border-radius: 0.5rem;
    }

    .products-section--pro .products-grid .product-image-wrapper {
        width: 100% !important;
        margin: 0 !important;
        border-radius: 0.875rem 0.875rem 0 0 !important;
        aspect-ratio: 1 / 1 !important;
        max-height: none !important;
        border: none !important;
        border-bottom: 1px solid rgba(10, 71, 46, 0.08) !important;
        background: #e8ece9 !important;
        box-shadow: none !important;
    }

    .product-card-body {
        padding: 0.65rem 0.65rem 0.8rem;
    }

    .product-category-line {
        font-size: 0.5625rem;
        margin-bottom: 0.25rem;
    }

    .product-card-body .product-title {
        margin: 0 0 0.3rem;
    }

    .product-title {
        font-size: 0.78rem;
        margin-left: 0;
        margin-right: 0;
        min-height: 2.15rem;
        line-height: 1.35;
    }

    .product-title .product-title-link {
        -webkit-line-clamp: 2;
    }

    .product-card-body .product-rating,
    .product-card-body .product-price {
        margin-left: 0;
        margin-right: 0;
    }

    .product-rating,
    .product-price {
        margin-left: 0;
        margin-right: 0;
    }

    .products-section .product-sku-line {
        display: none !important;
    }

    /* Legacy — listing no longer uses .product-info on cards */
    .products-section .sku,
    .products-section .category-badge {
        display: none !important;
    }

    .products-section .product-info {
        display: none !important;
    }

    .product-qty-row {
        margin-bottom: 0.65rem;
    }

    .product-qty-cart-row {
        flex-wrap: wrap;
        margin-bottom: 0.35rem;
        gap: 0.5rem;
    }

    .product-qty-cart-row__cta {
        flex: 1 1 100%;
        justify-content: stretch;
    }

    .product-qty-cart-row__cta .add-to-cart--body {
        flex: 1;
    }

    .product-qty-label {
        font-size: 0.6rem;
    }

    .quantity-selector {
        margin-left: 0;
        margin-right: 0;
    }

    .product-card-actions {
        margin-left: 0;
        margin-right: 0;
        gap: 0.35rem;
    }

    .product-wishlist-btn {
        width: 2.35rem;
        min-height: 2.15rem;
    }

    .product-wishlist-btn .product-wishlist-icon {
        width: 16px;
        height: 16px;
    }

    .add-to-cart {
        margin-left: 0;
        margin-right: 0;
        width: auto;
        font-size: 0.68rem;
        padding: 0.38rem 0.5rem 0.38rem 0.45rem;
        gap: 0.32rem;
    }

    .add-to-cart-icon {
        width: 1.4rem;
        height: 1.4rem;
    }

    .add-to-cart-icon svg {
        width: 13px;
        height: 13px;
    }

    .current-price {
        font-size: 1rem;
    }
}

/* Product detail — vertical thumbnail rail */
.pdp-thumbs-rail {
    max-height: 100%;
    align-self: stretch;
    scrollbar-width: thin;
    scrollbar-color: rgba(10, 71, 46, 0.35) transparent;
}

.pdp-thumbs-rail::-webkit-scrollbar {
    width: 6px;
}

.pdp-thumbs-rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(10, 71, 46, 0.35);
}

/* ========== Testimonials premium carousel ========== */
.testimonials-premium .testimonials-viewport {
    width: 100%;
}

.testimonials-premium .testimonials-track {
    display: flex;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .testimonials-premium .testimonials-track {
        transition-duration: 0.01ms;
    }
}

.testimonials-premium .testimonials-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    min-width: 0;
}

.testimonials-premium #testimonialsCarouselRoot {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) {
    .testimonials-premium #testimonialsCarouselRoot {
        padding-left: 2.75rem;
        padding-right: 2.75rem;
    }
}

.testimonials-nav {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: flex;
    height: 2.75rem;
    width: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(10, 71, 46, 0.2);
    background: linear-gradient(180deg, #fff 0%, #f4faf6 100%);
    color: #0a472e;
    box-shadow:
        0 4px 14px rgba(10, 71, 46, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transform: translateY(-50%);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.testimonials-nav:hover {
    transform: translateY(-50%) scale(1.06);
    box-shadow:
        0 8px 22px rgba(10, 71, 46, 0.18),
        0 2px 4px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.testimonials-nav:active {
    transform: translateY(-50%) scale(0.98);
}

.testimonials-nav--prev {
    left: 0.25rem;
}

.testimonials-nav--next {
    right: 0.25rem;
}

@media (max-width: 767.98px) {
    .testimonials-nav {
        height: 2.35rem;
        width: 2.35rem;
        top: auto;
        bottom: 3.25rem;
        transform: none;
    }

    .testimonials-nav:hover {
        transform: scale(1.06);
    }

    .testimonials-nav:active {
        transform: scale(0.98);
    }

    .testimonials-nav--prev {
        left: 0.35rem;
    }

    .testimonials-nav--next {
        right: 0.35rem;
    }
}

.testimonials-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    padding: 0;
    background: rgba(10, 71, 46, 0.25);
    transition:
        width 0.3s ease,
        background 0.25s ease,
        border-radius 0.3s ease;
}

.testimonials-dot--active {
    width: 1.5rem;
    border-radius: 999px;
    background: #0a472e;
  }

  /* category  code  */

   .categories-section {
    font-family:
        "Plus Jakarta Sans",
        "Noto Sans Devanagari",
        "Segoe UI",
        system-ui,
        -apple-system,
        sans-serif;
    background: #f8f6f0;
    padding: 60px 20px;
  }
  
  .container {
    max-width: 1280px;
    margin: 0 auto;
  }
  
  .categories-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #143d30;
    margin-bottom: 45px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .categories-title::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background: #2c5e42;
    border-radius: 2px;
  }
  
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
  }
  
  .category-card {
    cursor: pointer;
  }
  
  .category-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
  }
  
  .category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
  }
  
  /* Category Name - Centered on Image */
  .category-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    /* font-size: 1.4rem; */
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    background: rgb(0 0 0 / 35%);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    z-index: 2;
  }
  
  /* Zoom Effect on Hover */
  .category-card:hover .category-img {
    transform: scale(1.1);
  }
  
  /* Hover effect on name - subtle enhancement */
  .category-card:hover .category-name {
    background: rgba(44, 94, 66, 0.85);
    backdrop-filter: blur(8px);
    transform: translate(-50%, -50%) scale(1.05);
  }
  
  /* Responsive Design */
  @media (max-width: 1024px) {
    .categories-grid {
      gap: 25px;
    }
    
    .category-image-wrapper {
      height: 260px;
    }
    
    .category-name {
      font-size: 1.2rem;
      padding: 10px 20px;
      white-space: nowrap;
    }
  }
  
  @media (max-width: 768px) {
    .categories-section {
      padding: 40px 16px;
    }
    
    .categories-title {
      font-size: 1.8rem;
      margin-bottom: 35px;
    }
    
    .categories-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    
    .category-image-wrapper {
      height: 220px;
    }
    
    .category-name {
      font-size: 1rem;
      padding: 8px 16px;
      white-space: nowrap;
    }
  }
  
  @media (max-width: 480px) {
    .categories-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
    
    .category-image-wrapper {
      height: 280px;
    }
    
    .category-name {
      font-size: 1.1rem;
      padding: 10px 20px;
      white-space: nowrap;
    }
  }
  
  /* For very small screens where text might overflow */
  @media (max-width: 380px) {
    .category-name {
      font-size: 0.9rem;
      padding: 6px 12px;
      white-space: nowrap;
    }
}

/* Certified by — brand greens + warm gold (matches site) */
.certified-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 2vw, 5rem) clamp(1rem, 4vw, 2rem);
  font-family: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(10, 71, 46, 0.09), transparent 50%),
    linear-gradient(165deg, #f5faf7 0%, #eef5f0 45%, #e5efe8 100%);
  border-top: 1px solid rgba(10, 71, 46, 0.08);
  border-bottom: 1px solid rgba(10, 71, 46, 0.06);
}

.certified-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M0 20h40M20 0v40" stroke="%230a472e" stroke-opacity="0.04" stroke-width="1"/%3E%3C/svg%3E');
  pointer-events: none;
}

.certified-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.certified-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.certified-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b8860b;
}

.certified-title {
  margin: 0 0 0.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  color: #0a472e;
  letter-spacing: 0.02em;
}

.certified-title-icon {
  display: inline-flex;
  color: #f69e40;
  flex-shrink: 0;
}

.certified-subtitle {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #4a6356;
}

.certified-title-line {
  height: 4px;
  width: 5rem;
  margin: 0.15rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #0a472e, #f69e40, #0a472e);
  box-shadow: 0 2px 12px rgba(10, 71, 46, 0.2);
}

.certified-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 0.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 244, 0.9));
  border: 1px solid rgba(10, 71, 46, 0.1);
  box-shadow:
    0 4px 24px rgba(10, 71, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.certified-carousel-container::before,
.certified-carousel-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}

.certified-carousel-container::before {
  left: 0;
  background: linear-gradient(90deg, #f5faf7, transparent);
}

.certified-carousel-container::after {
  right: 0;
  background: linear-gradient(-90deg, #f5faf7, transparent);
}

.certified-carousel {
  display: flex;
  gap: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.certified-carousel::-webkit-scrollbar {
  display: none;
}

.certified-item {
  min-width: calc(25% - 0px);
  flex-shrink: 0;
  padding: 0.5rem;
  box-sizing: border-box;
}

.certified-card {
  position: relative;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 71, 46, 0.1);
  box-shadow: 0 6px 20px rgba(10, 71, 46, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.certified-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 71, 46, 0.22);
  box-shadow:
    0 14px 32px rgba(10, 71, 46, 0.12),
    0 0 0 1px rgba(201, 162, 39, 0.25);
}

.certified-img {
  display: block;
  width: 100%;
  height: 189px;
  object-fit: contain;
  background: linear-gradient(180deg, #fbfdfc 0%, #f4f9f6 100%);
  padding: 1.35rem 1.25rem;
  transition: transform 0.35s ease;
}

.certified-card:hover .certified-img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .certified-item {
    min-width: 33.333%;
  }

  .certified-img {
    height: 165px;
  }
}

@media (max-width: 900px) {
  .certified-item {
    min-width: 50%;
  }

  .certified-img {
    height: 150px;
    padding: 1.1rem;
  }
}

@media (max-width: 640px) {
  .certified-item {
    min-width: 85%;
    max-width: 280px;
  }

  .certified-img {
    height: 145px;
  }

  .certified-carousel-container::before,
  .certified-carousel-container::after {
    width: 28px;
  }
}


/* Health Guide — scoped (fixes global .section-title bleed from other blocks) */
.health-guide-section {
  font-family: "Plus Jakarta Sans", "Noto Sans Devanagari", system-ui, sans-serif;
  padding: clamp(1rem, 8vw, 1.5rem) 1.25rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(10, 71, 46, 0.08), transparent 50%),
    linear-gradient(175deg, #fbfdfa 0%, #f0f7f2 45%, #e8f0eb 100%);
}

.health-guide-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 25 L55 25 L40 38 L45 58 L30 48 L15 58 L20 38 L5 25 L25 25 Z' fill='none' stroke='%230a472e' stroke-width='0.35' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 52px 52px;
  pointer-events: none;
}

.health-guide-wrap {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.health-guide-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.health-guide-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #a67c00;
}

.health-guide-heading,
.health-guide-section .health-guide-heading {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  font-weight: 700;
  color: #0a472e;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.health-guide-accent {
  width: 3.5rem;
  height: 3px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f69e40, #0a472e);
}

.health-guide-lead,
.health-guide-section .health-guide-lead {
  max-width: 40rem;
  margin: 0 auto;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  color: #3d5248;
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
}

.health-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.health-guide-section .guide-card {
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(10, 71, 46, 0.1);
  box-shadow:
    0 4px 20px rgba(10, 71, 46, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.health-guide-section .guide-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(10, 71, 46, 0.12),
    0 0 0 1px rgba(10, 71, 46, 0.06);
}

.health-guide-section .guide-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 200px;
  overflow: hidden;
}

.health-guide-section .guide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.health-guide-section .guide-card:hover .guide-img {
  transform: scale(1.06);
}

.health-guide-section .guide-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: linear-gradient(135deg, #f69e40, #fcdca4);
  color: #1a2e24;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.35);
}

.health-guide-section .guide-title {
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #0a472e;
  margin: 1.15rem 1.15rem 0.5rem;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.health-guide-section .guide-description {
  color: #4a6356;
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 0 1.15rem 1rem;
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
  word-break: break-word;
  overflow-wrap: break-word;
  display: block;
}

.health-guide-section .guide-meta {
  margin: 0 1.15rem 1rem;
  padding: 0.45rem 0.85rem;
  background: linear-gradient(135deg, rgba(230, 244, 234, 0.95), rgba(255, 251, 235, 0.9));
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 71, 46, 0.1);
}

.health-guide-section .meta-item {
  font-size: 0.78rem;
  font-weight: 600;
  color: #0a472e;
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.health-guide-section .meta-icon {
  font-size: 0.95rem;
  line-height: 1;
}

.health-guide-section .guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 1.15rem 1rem;
}

.health-guide-section .tag {
  background: rgba(10, 71, 46, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #0a472e;
  border: 1px solid rgba(10, 71, 46, 0.1);
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
}

.health-guide-section .guide-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 1.15rem 1rem;
}

.health-guide-section .benefit {
  background: linear-gradient(135deg, #0a472e, #0f5c3d);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
}

.health-guide-section .benefit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 71, 46, 0.3);
}

.health-guide-section .read-more-btn {
  margin: 0 1.15rem 1.25rem;
  width: calc(100% - 2.3rem);
  box-sizing: border-box;
  background: transparent;
  border: 2px solid rgba(10, 71, 46, 0.2);
  color: #0a472e;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  font-family: "Noto Sans Devanagari", "Plus Jakarta Sans", sans-serif;
}

.health-guide-section .read-more-btn:hover {
  background: #0a472e;
  border-color: #0a472e;
  color: #fff;
}

@media (max-width: 1024px) {
  .health-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .health-guide-grid {
    grid-template-columns: 1fr;
  }

  .health-guide-section .guide-image-wrapper {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .health-guide-section .guide-benefits {
    flex-direction: column;
    align-items: stretch;
  }

  .health-guide-section .benefit {
    text-align: center;
  }
}

/* Footer — e-commerce style (trust strip + columns + payments) */
@keyframes footer-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1.15rem 1.75rem;
  background-color: #05271c !important;
}

.footer-wave {
  display: none;
}

.footer-inner {
  max-width: 87.5rem;
  margin: 0 auto;
  padding: 0;
}

/* ===== Retail-style footer (brand dark strip) ===== */
.footer-retail-features {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.footer-retail-features-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  align-items: center;
}

.footer-retail-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.75rem 0.35rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  min-width: 0;
}

.footer-retail-item:last-child {
  border-right: none;
}

.footer-retail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(59%) saturate(500%) hue-rotate(1deg) brightness(1.05);
}

.footer-retail-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer-retail-sub {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

.footer-body--retail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(13rem, 1.2fr);
  gap: clamp(1rem, 2vw, 1.85rem);
  padding: 0.25rem 0 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-block-title--retail {
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.footer-block-title--retail::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.25rem;
  height: 2px;
  border-radius: 1px;
  background: #f69e40;
}

.footer-link-list--retail a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.footer-link-list--retail a::before {
  display: none !important;
}

.footer-link-list--retail a:hover {
  color: #fbc981;
  transform: none;
}

.footer-col--aside {
  min-width: 0;
}

.footer-col--brand {
  min-width: 0;
}

.footer-brand-logo-link {
  display: inline-block;
  line-height: 0;
  margin-bottom: 0.9rem;
  max-width: 100%;
}

.footer-brand-logo-img {
  height: auto;
  width: auto;
  max-width: min(100%, 11rem);
  max-height: 3rem;
  object-fit: contain;
}

.footer-brand-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-brand-story {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
}

.footer-col--products .footer-link-list--retail a {
  font-size: 0.72rem;
  line-height: 1.4;
  display: inline-block;
  max-width: 100%;
}

.footer-app-badges {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.footer-app-badge {
  display: block;
  padding: 0;
  margin: 0;
  line-height: 0;
  text-decoration: none;
  border: none;
  background: transparent;
  border-radius: 0.35rem;
  overflow: hidden;
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.footer-app-badge:hover {
  opacity: 0.92;
  filter: brightness(1.06);
}

.footer-app-badge:focus-visible {
  outline: 2px solid #f69e40;
  outline-offset: 3px;
}

.footer-app-badge-img {
  display: block;
  width: auto;
  max-width: min(100%, 11.5rem);
  height: auto;
}

.footer-newsletter-title {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.footer-newsletter-note {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.45;
}

.footer-newsletter-note a {
  color: #f69e40;
  text-decoration: none;
}

.footer-newsletter-note a:hover {
  text-decoration: underline;
}

.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: stretch;
}

.footer-newsletter-input {
  flex: 1 1 7rem;
  min-width: 0;
  padding: 0.5rem 0.65rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 0.78rem;
}

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

.footer-newsletter-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  border: none;
  background: #f69e40;
  color: #05271c;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 0.2s ease;
  white-space: nowrap;
}

.footer-newsletter-btn:hover {
  filter: brightness(1.08);
}

.footer-systems {
  padding: 1.25rem 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-systems-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-system-heading {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
}

.footer-shipping-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.footer-shipping-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.35rem 0.6rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-round {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.footer-social-round-link {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #4a90d9;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.22);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.footer-social-round-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer-social-round-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-payments-img--on-dark {
  max-width: min(100%, 22rem);
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  display: block;
}

.footer-system-body--payments {
  display: inline-block;
  max-width: 100%;
  background: #fff;
  padding: 0.3rem 0.45rem;
  border-radius: 0.25rem;
  line-height: 0;
}

.footer-shipping-body {
  line-height: 0;
}

.footer-shipping-img {
  display: block;
  max-width: min(100%, 22rem);
  max-height: 3.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-subbar--retail {
  padding-top: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.footer-tagline {
  margin: 0;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.45;
  max-width: 42rem;
}

@media (max-width: 1100px) {
  .footer-col--aside {
    grid-column: 1 / -1;
    max-width: 26rem;
  }

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

  .footer-system-block--social {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .footer-retail-features-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-retail-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.65rem 0;
  }

  .footer-retail-item:nth-child(2n) {
    padding-left: 0.75rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-retail-features-inner {
    gap: 0;
    column-gap: 1rem;
  }

  .footer-retail-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  /* 2×2: row1 Free Shipping | 24/7, row2 Payment | Delivery */
  .footer-retail-features-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.55rem;
    align-items: start;
  }

  .footer-retail-item {
    border-right: none;
    margin: 0;
    padding: 0.45rem 0.35rem;
    min-width: 0;
    align-items: flex-start;
  }

  .footer-retail-item:nth-child(2n-1) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 0.55rem;
  }

  .footer-retail-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 0.55rem;
    margin-bottom: 0.35rem;
  }

  .footer-retail-icon {
    width: 40px;
    height: 40px;
  }

  .footer-retail-title {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .footer-retail-sub {
    font-size: 0.65rem;
    line-height: 1.35;
  }

  .footer-body.footer-body--retail {
    text-align: left;
  }

  .footer-col--aside {
    max-width: none;
  }

  .footer-block-title--retail::after {
    left: 0;
    transform: none;
  }

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

  .footer-subbar--retail {
    align-items: center;
    text-align: center;
  }

  .footer-tagline {
    max-width: none;
  }
}

/* Retail footer: undo generic .footer-body mobile centering */
@media (max-width: 768px) {
  .footer-body.footer-body--retail .footer-link-list--retail a {
    justify-content: flex-start;
  }
}

/* Tablet only: 2 cols. Must not apply below 768px or it overrides the 1-col mobile rule. */
@media (max-width: 1100px) and (min-width: 769px) {
  .footer-body.footer-body--retail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Footer trust bar — animated e-commerce highlights */
@keyframes footer-trust-strip-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes footer-trust-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes trust-icon-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes trust-icon-glow {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(10, 71, 46, 0.1),
      0 0 0 0 rgba(246, 158, 64, 0);
  }
  50% {
    box-shadow:
      0 8px 22px rgba(10, 71, 46, 0.14),
      0 0 22px rgba(246, 158, 64, 0.22);
  }
}

@keyframes trust-title-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer-trust-strip {
  margin: 0 -1.15rem 1.75rem;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) 1.15rem;
  border-bottom: 1px solid rgba(10, 71, 46, 0.1);
  box-shadow: 0 10px 36px rgba(10, 71, 46, 0.07);
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #eef6f1 22%,
    #ffffff 45%,
    #f0faf4 68%,
    #ffffff 100%
  );
  background-size: 220% 100%;
  animation: footer-trust-strip-flow 14s ease-in-out infinite;
}

.footer-trust-strip-inner {
  max-width: 87.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2.5vw, 1.5rem);
  align-items: stretch;
}

.footer-trust-item {
  --trust-i: var(--i, 0);
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1.1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 252, 249, 0.9) 100%);
  border: 1px solid rgba(10, 71, 46, 0.1);
  box-shadow:
    0 4px 16px rgba(10, 71, 46, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  opacity: 0;
  animation: footer-trust-reveal 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.06s + var(--trust-i) * 0.1s);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.footer-trust-item:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 158, 64, 0.42);
  box-shadow:
    0 18px 40px rgba(10, 71, 46, 0.12),
    0 0 0 1px rgba(246, 158, 64, 0.18);
}

.footer-trust-item:hover .footer-trust-icon-wrap {
  animation: none;
  transform: scale(1.08) translateY(-2px);
  border-color: rgba(10, 71, 46, 0.22);
  color: #063d28;
}

.footer-trust-item:hover .footer-trust-title {
  animation: trust-title-shine 2.8s ease-in-out infinite;
}

.footer-trust-icon-wrap {
  flex-shrink: 0;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a472e;
  background: linear-gradient(150deg, rgba(10, 71, 46, 0.14), rgba(45, 134, 89, 0.1));
  border: 1px solid rgba(10, 71, 46, 0.16);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    color 0.3s ease;
  animation:
    trust-icon-bob 3.2s ease-in-out infinite,
    trust-icon-glow 2.6s ease-in-out infinite;
  animation-delay: calc(var(--trust-i) * 0.45s), calc(var(--trust-i) * 0.35s);
}

.footer-trust-svg {
  width: 1.55rem;
  height: 1.55rem;
  transition: transform 0.35s ease;
}

.footer-trust-item:hover .footer-trust-svg {
  transform: scale(1.06);
}

.footer-trust-text {
  min-width: 0;
}

.footer-trust-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  line-height: 1.25;
  background: linear-gradient(
    90deg,
    #041510 0%,
    #0a472e 22%,
    #0d6b46 45%,
    #0a472e 65%,
    #041510 100%
  );
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-trust-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #5a6b62;
  line-height: 1.45;
  transition: color 0.3s ease;
}

.footer-trust-item:hover .footer-trust-sub {
  color: #3d5248;
}

@media (prefers-reduced-motion: reduce) {
  .footer-trust-strip {
    animation: none;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
  }

  .footer-trust-item {
    animation: footer-fade-up 0.35s ease forwards;
    animation-delay: calc(var(--trust-i) * 0.05s);
  }

  .footer-trust-icon-wrap {
    animation: none;
  }

  .footer-trust-item:hover .footer-trust-title {
    animation: none;
  }
}

.footer-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(0.25rem, 1vw, 0.5rem) 0 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Wins over .footer-body when both classes present (retail redesign) */
.footer-body.footer-body--retail {
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(13rem, 1.2fr);
  gap: clamp(1rem, 2vw, 1.85rem);
  padding: 0.25rem 0 1.75rem;
}

.footer-body--retail .footer-col {
  opacity: 1;
  animation: none;
}

.footer-col {
  animation: footer-fade-up 0.55s ease forwards;
  animation-delay: calc(var(--f-order, 0) * 0.08s);
  opacity: 0;
}

.footer-block-title {
  margin: 0 0 1.15rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  padding-bottom: 0.65rem;
}

.footer-block-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f69e40, #0d6b46);
}

/* Retail footer headings: orange bar only (higher specificity than .footer-block-title::after). */
.footer-block-title.footer-block-title--retail::after {
  width: 2.25rem;
  height: 2px;
  border-radius: 1px;
  background: #f69e40;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #fff;
  margin-bottom: 0.75rem;
  transition: opacity 0.2s ease;
}

.footer-brand-lockup:hover {
  opacity: 0.9;
}

.footer-brand-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.footer-brand-word {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand-blurb {
  margin: 0 0 1.15rem;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  max-width: 22rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(246, 158, 64, 0.28);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    color 0.22s ease;
}

.footer-social-link svg {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-social-link:hover {
  background: linear-gradient(145deg, #f69e40, #0a472e);
  border-color: rgba(253, 224, 180, 0.45);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link-list li {
  margin-bottom: 0.52rem;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-list a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #f69e40;
  transition: width 0.2s ease;
}

.footer-link-list a:hover {
  color: #fde8c4;
  transform: translateX(4px);
}

.footer-link-list a:hover::before {
  width: 6px;
}

.footer-touch-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-touch-list > li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.footer-touch-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fde8c4;
  background: rgba(246, 158, 64, 0.12);
  border: 1px solid rgba(246, 158, 64, 0.25);
}

.footer-touch-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.footer-touch-body {
  min-width: 0;
}

.footer-touch-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}

.footer-touch-body a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-touch-body a:hover {
  color: #fde8c4;
}

.footer-touch-addr {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.footer-subbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.25rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.48);
}

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.footer-payments-img {
  display: block;
  width: auto;
  max-width: min(100%, 20rem);
  height: auto;
  max-height: 2.5rem;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.12));
}

.footer-pay-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-pay-icon {
  width: 1.15rem;
  height: 1.15rem;
  opacity: 0.85;
}

@media (max-width: 1100px) {
  .footer-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-col--connect {
    grid-column: 1 / -1;
    max-width: 28rem;
  }

  .footer-col--touch {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-trust-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-trust-item {
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(10, 71, 46, 0.08);
  }

  .footer-trust-item:last-child {
    border-bottom: none;
  }

  .footer-body {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-block-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-brand-blurb {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-link-list a {
    justify-content: center;
  }

  .footer-link-list a:hover {
    transform: none;
  }

  .footer-touch-list > li {
    justify-content: center;
    text-align: left;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-subbar {
    flex-direction: column;
    text-align: center;
  }

  .footer-payments {
    justify-content: center;
  }
}

/* Retail footer — mobile (after generic footer rules for correct cascade) */
@media (max-width: 768px) {
  .footer-section {
    padding-left: clamp(0.65rem, 4vw, 1.15rem);
    padding-right: clamp(0.65rem, 4vw, 1.15rem);
    overflow-x: hidden;
  }

  .footer-inner {
    max-width: 100%;
  }

  /*
   * Desktop rule `.footer-body.footer-body--retail` (5 columns) is defined later in this file.
   * Mobile: 2 columns — row1 Our stores | Useful links, row2 same, then full-width aside.
   */
  .footer-body.footer-body--retail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    width: 100%;
    column-gap: 0.85rem;
    row-gap: 1.25rem;
    padding-bottom: 1.35rem;
  }

  .footer-body.footer-body--retail > .footer-col--aside {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .footer-body.footer-body--retail .footer-col {
    min-width: 0;
  }

  .footer-body.footer-body--retail .footer-block-title--retail {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
  }

  .footer-body.footer-body--retail .footer-link-list--retail a {
    font-size: 0.75rem;
  }

  .footer-block-title.footer-block-title--retail::after {
    left: 0;
    transform: none;
  }

  .footer-newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-newsletter-input {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
  }

  .footer-newsletter-btn {
    width: 100%;
  }

  .footer-col--aside .footer-app-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 0.6rem;
    align-items: center;
    margin-bottom: 1.1rem;
  }

  .footer-app-badge {
    max-width: 100%;
    min-width: 0;
  }

  .footer-col--aside .footer-app-badge-img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .footer-brand-story {
    font-size: 0.72rem;
  }

  .footer-brand-logo-img {
    max-height: 2.5rem;
  }

  .footer-payments-img--on-dark,
  .footer-shipping-img {
    max-width: 100%;
  }

  .footer-system-body {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .footer-systems-inner {
    gap: 1.2rem;
  }

  .footer-system-block {
    min-width: 0;
  }

  .footer-retail-text {
    min-width: 0;
  }

  .footer-retail-title {
    overflow-wrap: anywhere;
  }

  .footer-social-round {
    justify-content: center;
  }
}

/* ---------- Site-wide scroll reveal & section rhythm ---------- */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }

  [data-scroll-reveal] {
    opacity: 0;
    transform: translateY(1.65rem);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  [data-scroll-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  [data-scroll-reveal="fade"] {
    transform: none;
  }

  [data-scroll-reveal="fade"].is-revealed {
    transform: none;
  }

  [data-scroll-reveal="scale"] {
    transform: translateY(1.25rem) scale(0.96);
  }

  [data-scroll-reveal="scale"].is-revealed {
    transform: translateY(0) scale(1);
  }

  [data-scroll-reveal="left"] {
    transform: translateX(-1.75rem);
  }

  [data-scroll-reveal="left"].is-revealed {
    transform: translateX(0);
  }

  [data-scroll-reveal="right"] {
    transform: translateX(1.75rem);
  }

  [data-scroll-reveal="right"].is-revealed {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-scroll-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Alternating / accent section shells (home) */
.site-section--frost {
  background: linear-gradient(180deg, #ffffff 0%, rgba(238, 246, 240, 0.55) 48%, #fafdfb 100%);
}

.site-section--warm {
  background: linear-gradient(165deg, #fffdfb 0%, rgba(253, 232, 196, 0.38) 42%, #ffffff 100%);
}

.site-section--dusk {
  background: linear-gradient(180deg, #f8faf9 0%, rgba(10, 71, 46, 0.06) 50%, #f6faf7 100%);
}

/* ingredent code  */
 .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* ========== HERO / INTRO SECTION (existing style refined) ========== */
    .hero-section {
      background: linear-gradient(135deg, #fef9e6 0%, #eef4e2 100%);
      padding: 70px 0 60px;
      border-bottom: 1px solid rgba(80, 100, 60, 0.12);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: "🌿";
      font-size: 220px;
      opacity: 0.04;
      position: absolute;
      bottom: -40px;
      right: -30px;
      pointer-events: none;
      transform: rotate(10deg);
    }

    .hero-section h1 {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.2;
      background: linear-gradient(115deg, #1f4f3a, #2f7d5c);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 24px;
      letter-spacing: -0.02em;
      max-width: 900px;
    }

    .hero-section p {
      font-size: 1.2rem;
      color: #2c4b3e;
      max-width: 780px;
      line-height: 1.5;
      font-weight: 450;
      border-left: 4px solid #3b8b6e;
      padding-left: 24px;
      background: rgba(59, 139, 110, 0.05);
      border-radius: 0 16px 16px 0;
    }

    /* ========== POWERFUL INGREDIENTS SECTION ========== */
    .ingredients-section {
      padding: 80px 0 90px;
      background: #ffffff;
      position: relative;
    }

    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(125deg, #1f4f3a, #2f8864);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.01em;
      display: inline-block;
      margin-bottom: 16px;
    }

    .section-header .subhead {
      font-size: 1.25rem;
      color: #4a6658;
      max-width: 620px;
      margin: 0 auto;
      font-weight: 500;
      border-bottom: 2px dashed #cbdccf;
      display: inline-block;
      padding-bottom: 8px;
    }

    .ingredients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 32px;
      margin-top: 20px;
    }

    /* modern card design - attractive & premium */
    .ingredient-card {
      background: #ffffff;
      border-radius: 36px;
      overflow: hidden;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.07), 0 1px 2px rgba(0, 0, 0, 0.02);
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      border: 1px solid rgba(165, 190, 150, 0.25);
      backdrop-filter: blur(0px);
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .ingredient-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 45px -20px rgba(35, 75, 55, 0.25);
      border-color: rgba(59, 139, 110, 0.5);
    }

    /* image wrapper with elegant round-corners & subtle overlay */
    .card-img-wrapper {
      position: relative;
      overflow: hidden;
      background: #eef3e8;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 28px 24px 16px 24px;
      border-bottom: 1px solid #eef2e6;
    }

    .card-img-wrapper img {
      max-width: 100%;
      width: 140px;
      height: 140px;
      object-fit: contain;
      transition: transform 0.4s ease;
      filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.08));
    }

    .ingredient-card:hover .card-img-wrapper img {
      transform: scale(1.03);
    }

    /* decorative herb badge */
    .herb-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(59, 139, 110, 0.12);
      backdrop-filter: blur(4px);
      border-radius: 100px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: #2f7d5c;
      font-weight: 500;
      border: 1px solid rgba(59, 139, 110, 0.3);
    }

    /* card content */
    .card-content {
      padding: 20px 24px 28px;
      flex: 1;
    }

    .ingredient-name {
      font-size: 1.65rem;
      font-weight: 700;
      color: #1d3e32;
      letter-spacing: -0.3px;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .ingredient-name i {
      font-size: 1.4rem;
      color: #3b8b6e;
      background: #e9f3ed;
      padding: 6px;
      border-radius: 50%;
    }

    .ingredient-desc {
      font-size: 0.98rem;
      line-height: 1.5;
      color: #2d4a40;
      font-weight: 450;
      margin-bottom: 18px;
    }

    .scientific-fact {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #f5faf6;
      padding: 10px 14px;
      border-radius: 48px;
      margin-top: 12px;
      font-size: 0.8rem;
      font-weight: 500;
      color: #2f6a53;
      width: fit-content;
      border: 0.5px solid #cfe3d4;
    }

    .scientific-fact i {
      font-size: 0.9rem;
      color: #3b8b6e;
    }

    /* divider between cards optional */
    .ingredients-section:after {
      display: none;
    }

    /* responsive touches */
    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }
      .hero-section h1 {
        font-size: 2rem;
      }
      .hero-section p {
        font-size: 1rem;
        padding-left: 16px;
      }
      .section-header h2 {
        font-size: 2rem;
      }
      .ingredients-grid {
        gap: 24px;
      }
      .ingredient-name {
        font-size: 1.4rem;
      }
      .card-img-wrapper img {
        width: 110px;
        height: 110px;
      }
    }

    @media (max-width: 480px) {
      .ingredients-grid {
        grid-template-columns: 1fr;
      }
      .herb-badge {
        width: 30px;
        height: 30px;
        font-size: 1rem;
      }
    }

    /* subtle animation on scroll (optional) */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .ingredient-card {
      animation: fadeUp 0.5s ease backwards;
    }

    .ingredient-card:nth-child(1) { animation-delay: 0.05s; }
    .ingredient-card:nth-child(2) { animation-delay: 0.1s; }
    .ingredient-card:nth-child(3) { animation-delay: 0.15s; }
    .ingredient-card:nth-child(4) { animation-delay: 0.2s; }
    .ingredient-card:nth-child(5) { animation-delay: 0.25s; }
    .ingredient-card:nth-child(6) { animation-delay: 0.3s; }
    .ingredient-card:nth-child(7) { animation-delay: 0.35s; }
    .ingredient-card:nth-child(8) { animation-delay: 0.4s; }


    /* Key Benefits  */

     .key-benifit {
      background: linear-gradient(145deg, #ffffff 0%, #f6fbf2 100%);
          padding: 76px 0 20px;
      position: relative;
      overflow: hidden;
    }

    /* decorative leaf background */
    .key-benifit::before {
      content: "🌿";
      font-size: 280px;
      opacity: 0.03;
      position: absolute;
      bottom: -60px;
      left: -40px;
      pointer-events: none;
      transform: rotate(-15deg);
    }

    .key-benifit::after {
      content: "✦";
      font-size: 200px;
      opacity: 0.02;
      position: absolute;
      top: 20px;
      right: -30px;
      pointer-events: none;
    }

    /* section header */
    .benefits-header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 2;
    }

    .benefits-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(125deg, #1f5e45, #2b8b68);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
      margin-bottom: 12px;
      display: inline-block;
    }

    .benefits-header .tagline {
      font-size: 1.2rem;
      color: #4f7564;
      font-weight: 500;
      border-bottom: 2px solid #cae3d2;
      display: inline-block;
      padding-bottom: 8px;
    }

    /* slider container */
    .benefits-slider {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 48px;
      padding: 20px 0 30px;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      gap: 28px;
      will-change: transform;
    }

    /* benefit card - modern glassmorphic + premium look */
    .benefit-card {
      flex: 0 0 calc(33.333% - 19px);
      min-width: 280px;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(0px);
      border-radius: 36px;
      padding: 32px 24px 36px;
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.02);
      transition: all 0.35s ease;
      border: 1px solid rgba(110, 150, 120, 0.2);
      text-align: center;
      position: relative;
    }

    .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 50px -20px rgba(35, 85, 65, 0.3);
      border-color: rgba(59, 139, 110, 0.4);
      background: #ffffff;
    }

    /* icon/image wrapper */
    .benefit-icon {
      width: 100px;
      height: 100px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, #eef9ef, #e2f0e4);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      box-shadow: 0 12px 18px -12px rgba(0, 0, 0, 0.1);
    }

    .benefit-icon img {
      width: 60px;
      height: 60px;
      object-fit: contain;
      filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
      transition: transform 0.3s ease;
    }

    .benefit-card:hover .benefit-icon img {
      transform: scale(1.05);
    }

    .benefit-card h3 {
      font-size: 1.75rem;
      font-weight: 700;
      color: #1f4f3a;
      margin-bottom: 16px;
      letter-spacing: -0.3px;
    }

    .benefit-card p {
      font-size: 1rem;
      line-height: 1.55;
      color: #3d5c50;
      font-weight: 450;
      margin-bottom: 20px;
    }

    /* benefit highlight badge */
    .benefit-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #eef6f0;
      padding: 6px 16px;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #2a765b;
      margin-top: 8px;
    }

    .benefit-badge i {
      font-size: 0.75rem;
    }

    /* navigation buttons */
    .slider-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 2px;

      position: relative;
      z-index: 5;
    }

    .nav-btn {
      width: 52px;
      height: 52px;
      border-radius: 60px;
      background: white;
      border: 1px solid #cce3d4;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 6px 12px -8px rgba(0, 0, 0, 0.08);
      color: #2b6e54;
      font-size: 1.3rem;
    }

    .nav-btn:hover {
      background: #2b6e54;
      border-color: #2b6e54;
      color: white;
      transform: scale(1.05);
    }

    /* dots indicator */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 28px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #cbdccc;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.2s;
    }

    .dot.active {
      width: 28px;
      border-radius: 20px;
      background: #2b8b68;
    }

    /* auto-slide indicator pause hint */
    .auto-slide-info {
      text-align: center;
      margin-top: 20px;
      font-size: 0.75rem;
      color: #799c8a;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }

    .auto-slide-info i {
      font-size: 0.7rem;
    }

    /* responsive */
    @media (max-width: 1024px) {
      .benefit-card {
        flex: 0 0 calc(50% - 14px);
      }
    }

    @media (max-width: 768px) {
      .benefits-header h2 {
        font-size: 2rem;
      }
      .benefit-card {
        flex: 0 0 100%;
        padding: 28px 20px;
      }
      .slider-track {
        gap: 20px;
      }
      .benefit-card h3 {
        font-size: 1.5rem;
      }
      .container {
        padding: 0 1px;
      }
    }

    @media (max-width: 480px) {
      .benefit-icon {
        width: 80px;
        height: 80px;
      }
      .benefit-icon img {
        width: 48px;
        height: 48px;
      }
    }

    /* animation fade in for cards */
    @keyframes cardGlow {
      0% { opacity: 0; transform: scale(0.98);}
      100% { opacity: 1; transform: scale(1);}
    }
    .benefit-card {
      animation: cardGlow 0.5s ease backwards;
    }

    .ingredients-section {
      background: linear-gradient(145deg, #ffffff 0%, #fafef4 100%);
          padding: 22px 0 31px;
      position: relative;
      overflow: hidden;
    }

    /* elegant decorative elements */
    .ingredients-section::before {
      content: "🌿";
      font-size: 280px;
      opacity: 0.025;
      position: absolute;
      bottom: -50px;
      right: -40px;
      pointer-events: none;
    }

    .ingredients-section::after {
      content: "✧";
      font-size: 200px;
      opacity: 0.02;
      position: absolute;
      top: 20px;
      left: -30px;
      pointer-events: none;
      transform: rotate(15deg);
    }

    /* header styling */
    .section-header {
      text-align: center;
      margin-bottom: 55px;
      position: relative;
      z-index: 2;
    }

    .section-header .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #e8f3ea;
      padding: 6px 20px;
      border-radius: 60px;
      font-size: 0.8rem;
      font-weight: 600;
      color: #2a7a5c;
      margin-bottom: 20px;
      letter-spacing: 0.5px;
    }

    .section-header h2 {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(125deg, #1a6044, #2e9b70);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }

    .section-header .description {
      font-size: 1.1rem;
      color: #5a7f6c;
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.5;
    }

    /* main two-column layout */
    .ingredients-wrapper {
      display: flex;
      align-items: center;
      gap: 50px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    /* IMAGE SIDE - properly sized and controlled */
    .image-col {
      flex: 1;
      min-width: 280px;
      max-width: 480px;
      margin: 0 auto;
    }

    .image-container {
      background: linear-gradient(135deg, #ffffff, #f6fcf2);
      border-radius: 48px;
      padding: 20px;
      box-shadow: 0 25px 45px -20px rgba(30, 70, 50, 0.25);
      border: 1px solid rgba(90, 140, 100, 0.25);
      transition: all 0.4s ease;
      position: relative;
    }

    .image-container:hover {
      transform: translateY(-6px);
      box-shadow: 0 30px 55px -22px rgba(30, 70, 50, 0.3);
    }

    .image-container img {
      width: 100%;
      height: auto;
      max-height: 380px;
      object-fit: contain;
      display: block;
      border-radius: 32px;
      transition: transform 0.4s ease;
    }

    .image-container:hover img {
      transform: scale(1.02);
    }

    /* floating badges on image */
    .herb-floating-badge {
      position: absolute;
      top: 25px;
      right: 25px;
      background: rgba(46, 155, 112, 0.92);
      backdrop-filter: blur(8px);
      width: 55px;
      height: 55px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.6rem;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
      border: 2px solid rgba(255, 248, 205, 0.6);
    }

    .natural-sticker {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: rgba(255, 255, 245, 0.96);
      backdrop-filter: blur(4px);
      padding: 6px 16px;
      border-radius: 40px;
      font-size: 0.75rem;
      font-weight: 600;
      color: #2a765b;
      display: flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* INGREDIENT LIST SIDE - 8 herbs in modern grid */
    .ingredients-col {
      flex: 1.2;
      min-width: 320px;
    }

    .herbs-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .herb-card {
      background: white;
      border-radius: 24px;
      padding: 18px 16px;
      transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
      border: 1px solid #e3efdf;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: default;
    }

    .herb-card:hover {
      transform: translateY(-3px);
      border-color: #c2dfb2;
      box-shadow: 0 15px 25px -12px rgba(55, 95, 70, 0.12);
      background: #ffffff;
    }

    .herb-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #ecf7e8, #e0efe0);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: #2f8b66;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    .herb-card:hover .herb-icon {
      background: #2f8b66;
      color: white;
      transform: scale(0.96);
    }

    .herb-details h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e4f3a;
      margin-bottom: 5px;
    }

    .herb-details p {
      font-size: 0.75rem;
      color: #6f8e7c;
      line-height: 1.4;
    }

    .scientific-footer {
      margin-top: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      background: #eef5ea;
      padding: 14px 20px;
      border-radius: 60px;
    }

    .scientific-footer span {
      font-size: 0.8rem;
      font-weight: 500;
      color: #2a6e55;
    }

    .scientific-footer i {
      margin-right: 6px;
      color: #3b8b6e;
    }

    /* responsive */
    @media (max-width: 992px) {
      .herbs-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .section-header h2 {
        font-size: 2.2rem;
      }
      .ingredients-wrapper {
        gap: 40px;
      }
    }

    @media (max-width: 768px) {
      .ingredients-section {
        padding: 60px 0;
      }
      .ingredients-wrapper {
        flex-direction: column;
      }
      .image-col {
        max-width: 100%;
      }
      .image-container img {
        max-height: 320px;
      }
      .herb-floating-badge {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        top: 15px;
        right: 15px;
      }
      .section-header h2 {
        font-size: 1.8rem;
      }
      .herb-card {
        padding: 14px 14px;
      }
    }

    @media (max-width: 480px) {
      .herb-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        border-radius: 16px;
      }
      .herb-details h4 {
        font-size: 0.95rem;
      }
      .scientific-footer {
        flex-direction: column;
        text-align: center;
      }
    }

    /* subtle animation */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .herb-card {
      animation: fadeInUp 0.45s ease backwards;
    }
    .herb-card:nth-child(1) { animation-delay: 0.05s; }
    .herb-card:nth-child(2) { animation-delay: 0.1s; }
    .herb-card:nth-child(3) { animation-delay: 0.15s; }
    .herb-card:nth-child(4) { animation-delay: 0.2s; }
    .herb-card:nth-child(5) { animation-delay: 0.25s; }
    .herb-card:nth-child(6) { animation-delay: 0.3s; }
    .herb-card:nth-child(7) { animation-delay: 0.35s; }
    .herb-card:nth-child(8) { animation-delay: 0.4s; }

    .image-container {
      animation: fadeInUp 0.5s ease forwards;
  }