/**
 * Shuddha Sattva - Ayurvedic Luxury Design System
 */

:root {
  --color-forest:       #1A3D2B;
  --color-forest-mid:   #2E6B47;
  --color-forest-light: #4A8C62;
  --color-gold:         #C9A84C;
  --color-gold-light:   #E8C97A;
  --color-cream:        #FAF6EE;
  --color-cream-dark:   #F0EAD6;
  --color-parchment:    #EDE0C4;
  --color-text-dark:    #1C1A17;
  --color-text-mid:     #4A3728;
  --color-text-light:   #8B7355;
  --color-white:        #FFFFFF;
  --color-error:        #C62828;
  --color-success:      #2E7D32;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Lato', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --shadow-card:   0 2px 20px rgba(26, 61, 43, 0.08);
  --shadow-hover:  0 8px 40px rgba(26, 61, 43, 0.16);
  --shadow-button: 0 4px 15px rgba(201, 168, 76, 0.30);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 50px;
}

/*
 * REFERENCE — header & hero logo (Apr/2026). Source of truth is the rules below;
 * rendered px varies by viewport / scrollbar / zoom.
 *
 * Header (.site-header): min-height 65px; padding 0.405rem 1.8rem.
 * Rotating/static header (.site-header--rotating, .site-header--static-bg):
 *   min-height clamp(72px, 5.5vw, 96px); .header-row-main min-height 47px.
 * Mobile ≤768px: .site-header min-height 54px; rotating min-height clamp(56px, 14vw, 80px).
 *
 * Hero band (.hero--landscape): min-height clamp(317px, 35.64vw, 515px);
 *   ≤768px: clamp(297px, 47.52vw, 515px).
 *
 * Hero logo (.hero__logo-wrap): width min(108%, 100%); max-width min(108%, calc(100vw - 2rem));
 *   ≥769px: min-height 261px; height clamp(261px, 39.914vw, min(499px, 61.26vh));
 *   ≤768px: min-height 238px; height clamp(238px, 45.616vw, min(427px, 59.85vh)).
 *   .hero__logo-img fills the wrap (object-fit: cover; object-position: center top).
 * Example layout (Chrome, Laragon): 1280×720 → logo box ≈1192×412px; 390×844 → ≈350×222px.
 */

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: #0D2818;
  color: var(--color-text-dark);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

/* 24/Mar/2026: slightly increased for taller sticky header (order callout row) */
section { scroll-margin-top: 100px; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

/* ========== HEADER ========== */
.site-header {
  min-height: 65px;
  height: auto;
  padding: 0.405rem 1.8rem;
  /* Header green: +3 shades vs original; each step +2 RGB */
  background: linear-gradient(
    180deg,
    #10241C 0%,
    #132E1E 60%,
    #153422 100%
  );
  border-bottom: 1px solid rgba(201, 168, 76, 0.20);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

/**
 * Sticky header — rotating/static photo backgrounds (18/Apr/2026; 19/Apr/2026: full-width edge-to-edge).
 * .site-header had horizontal padding — absolute .site-header__rotator used inset:0 inside the padding box,
 * so photos never reached the viewport edges. Padding is removed here and applied to .header-row-main instead.
 * Panoramic assets use background-size:cover + center (no stretch); dim scrim keeps nav readable.
 */
.site-header.site-header--rotating,
.site-header.site-header--static-bg {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  background: #10241c;
  /* Slightly taller bar so wide banner art reads like the reference (still one sticky row). */
  min-height: clamp(72px, 5.5vw, 96px);
}

.site-header__rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  min-height: 100%;
}

.site-header__rotator-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.15s ease-in-out;
}

.site-header__rotator-layer.site-header__rotator-layer--visible {
  opacity: 1 !important;
  z-index: 1;
}

.site-header__rotator-layer--broken {
  display: none !important;
}

.site-header__rotator-dim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Green dim: +10% transparency; RGB matches header +3 shades */
  background: linear-gradient(
    180deg,
    rgba(16, 38, 28, 0.792) 0%,
    rgba(19, 46, 30, 0.738) 60%,
    rgba(21, 52, 34, 0.81) 100%
  );
}

.site-header--rotating .header-row-main,
.site-header--static-bg .header-row-main {
  position: relative;
  z-index: 3;
  /* Matches default .site-header horizontal padding so nav/cart align with page grid */
  padding-left: 1.8rem;
  padding-right: 1.8rem;
  box-sizing: border-box;
  max-width: 100%;
}

/* 24/Mar/2026: single row — brand + nav/cart */
.header-row-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 47px;
  position: relative;
}

/**
 * 07/Apr/2026: RCA — default grid is [1fr | auto]: column 1 = brand, column 2 = .header-right.
 * The second column was `auto`, so <nav> shrink-wrapped to content → tabs clustered left + empty space on the right.
 * Verified users: force [auto | minmax(0,1fr)] so the nav column absorbs remaining width (matches ≥900px layout intent).
 */
@media (min-width: 769px) {
  .header-row-main.header-row-main--verified-nav {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

.header-brand-center {
  justify-self: start;
  padding-left: 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  user-select: none;
}

.header-brand-mark {
  font-size: 0.6rem;
  color: var(--color-gold);
  letter-spacing: 0.5em;
  margin-bottom: 3px;
  opacity: 0.8;
}

.header-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.header-brand-sub {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: 3px;
  opacity: 0.85;
}

.header-right {
  position: relative;
  z-index: 2;
  justify-self: stretch;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.5rem;
  min-width: 0;
}

/**
 * 07/Apr/2026: Verified header — CSS Grid on <nav> (4 tracks): primary | grow | cart | trailing.
 * Replaces flex-only layout (RCA: parent .header-right was `auto` width pre–07/Apr/2026 fix above).
 * Trailing column flush right; middle columns absorb space. z-index above centered logo (overlap read).
 */
.header-right.header-right--verified-split,
.header-right:has(.header-nav--verified-split) {
  justify-content: flex-start;
}
.header-nav--verified-split {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  position: relative;
  z-index: 3;
}
.header-nav--verified-split .header-nav__group {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.header-nav--verified-split .header-nav__group--primary {
  min-width: 0;
}
/* 07/Apr/2026: Column 2 — explicit grid track (replaces flex spacer) */
.header-nav--verified-split .header-nav__spacer--flex {
  min-width: 0;
  width: 100%;
}
.header-nav--verified-split .header-nav__group--trailing {
  justify-self: end;
}

/**
 * Reference — Cart ↔ Contact / Account / Log out spacing (verified desktop nav):
 * Final margin-left on .header-nav__group--trailing = 410px (14/Apr/2026: increased from 405px).
 * Also: grid gap on .header-nav--verified-split is 0.35rem between tracks (adds a few px).
 * Scoped @media (min-width: 769px). To change spacing later, edit margin-left below.
 */
@media (min-width: 769px) {
  .header-nav--verified-split .header-nav__group--trailing {
    margin-left: 410px; /* 14/Apr/2026: increased from 405px — widens brand-center breathing room */
  }
  /* 06/Apr/2026: Tighter right gutter when verified — brings Contact/Account/Log out closer to viewport edge */
  .site-header.site-header--verified-customer:not(.site-header--rotating):not(.site-header--static-bg) {
    padding-right: 0.5rem;
  }
  .site-header.site-header--rotating .header-row-main.header-row-main--verified-nav,
  .site-header.site-header--static-bg .header-row-main.header-row-main--verified-nav {
    padding-right: 0.5rem;
  }
}

.header-nav--verified-split .cart-btn {
  margin-left: 0;
}

@media (min-width: 900px) {
  .header-row-main {
    grid-template-columns: auto 1fr;
  }
  .header-right {
    justify-self: stretch;
    width: 100%;
    max-width: none;
  }
  .header-brand-center {
    justify-self: center;
    padding-left: 0;
    text-align: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  position: relative;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--color-gold); }
.nav-link:hover::after { transform: scaleX(1); }

/* 24/Mar/2026: current page — gold + underline; matches cart accent */
.nav-link--active {
  color: var(--color-gold);
}
.nav-link--active::after {
  transform: scaleX(1);
}
.nav-link.nav-link--active:hover {
  color: var(--color-gold-light);
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  border: 1px solid rgba(201, 168, 76, 0.5);
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-left: 0.5rem;
}
.cart-btn:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
}
.cart-btn--active {
  background: rgba(201, 168, 76, 0.14);
  border-color: var(--color-gold);
  color: var(--color-gold);
}
.cart-btn--active:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  border-color: var(--color-gold);
}
.cart-count {
  background: var(--color-gold);
  color: var(--color-forest);
  border-radius: 50%;
  width: 17px;
  height: 17px;
  font-size: 0.65rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-btn:hover .cart-count {
  background: var(--color-forest);
  color: var(--color-gold);
}

/**
 * 11/Apr/2026 (added/updated): Cart attention pulse.
 * Triggered from assets/js/main.js after successful add-to-cart on product detail.
 * Goal: gently highlight top cart location without intrusive motion.
 */
.cart-btn--attention {
  animation: cartAttentionPulse 0.9s ease;
}

@keyframes cartAttentionPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
  35% {
    transform: scale(1.06);
    box-shadow: 0 0 0 8px rgba(201, 168, 76, 0.22);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.16);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  margin-left: 0.5rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--color-forest);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  padding: 1rem 2rem;
}
.mobile-nav a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a.mobile-nav__link--active {
  color: var(--color-gold);
  border-bottom-color: rgba(201, 168, 76, 0.35);
}
.mobile-nav.open { display: flex; }

@media (max-width: 768px) {
  .header-row-main { grid-template-columns: 1fr auto; }
  .header-brand-center { display: none; }
  .nav-link { display: none; }
  /* 06/Apr/2026: Verified split — drawer holds links; bar shows cart + hamburger aligned end */
  .header-right.header-right--verified-split {
    justify-content: flex-end;
  }
  .header-nav--verified-split .header-nav__spacer--flex {
    display: none;
  }
  /* 07/Apr/2026: Desktop grid must not apply on narrow bar — restore flex row for cart + hamburger */
  .header-nav--verified-split {
    display: flex;
    justify-content: flex-end;
    flex: 0 1 auto;
    width: auto;
  }
  .hamburger { display: flex; }
  .cart-btn {
    padding: 0.4rem 0.8rem;
  }
  .cart-btn .cart-btn-text { display: none; }
  .cart-btn svg,
  .cart-btn .cart-count { display: inline-flex; }
}

@media (min-width: 769px) {
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
}

/* ========== MAIN ========== */
.site-main {
  flex: 1;
}

/**
 * Auth shell — login / register (06/Apr/2026).
 * Base storefront body uses #0D2818; here we lift by ~two perceptual steps toward forest mid
 * (#1A4C2D / #234d32) so the page reads less “black hole” while staying on-brand.
 * Scoped via body.auth-page only — no impact on home, product, or checkout layouts.
 */
body.auth-page {
  /* Was #0D2818 — two ~+RGB8-style steps lands near #1d3828; gradient adds depth without new assets */
  background-color: #1a4c2d;
  background-image: linear-gradient(
    165deg,
    #234d32 0%,
    #1a4c2d 42%,
    #163d28 100%
  );
  background-attachment: fixed;
}

/**
 * Login/register — full-viewport photos (same URLs + interval as header rotator; 02/Apr/2026).
 * Fixed z-index 0; main/footer/mobile-nav lifted so they paint above; no pointer events.
 */
body.auth-page .auth-page-main-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

body.auth-page .auth-page__rotator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

body.auth-page .auth-page__rotator-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.15s ease-in-out;
}

body.auth-page .auth-page__rotator-layer.auth-page__rotator-layer--visible {
  opacity: 1 !important;
  z-index: 1;
}

body.auth-page .auth-page__rotator-layer--broken {
  display: none !important;
}

/* Slightly stronger scrim than header strip — keeps form copy readable on busy photos */
body.auth-page .auth-page__rotator-dim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(16, 38, 28, 0.88) 0%,
    rgba(19, 46, 30, 0.82) 45%,
    rgba(21, 52, 34, 0.9) 100%
  );
}

/* When photos load, drop redundant body gradient (still have solid fallback via dim + layers) */
body.auth-page:has(.auth-page-main-bg) {
  background-image: none;
  background-color: #10241c;
}

body.auth-page:has(.auth-page-main-bg) .mobile-nav,
body.auth-page:has(.auth-page-main-bg) .site-main,
body.auth-page:has(.auth-page-main-bg) .site-footer {
  position: relative;
  z-index: 1;
}

body.auth-page .auth-page__wrap {
  position: relative;
  z-index: 1;
}

/* Headings + intro copy sit on green (not inside .card) — high contrast for WCAG on mid-green */
body.auth-page .auth-page__title {
  color: var(--color-cream);
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.auth-page .auth-page__intro {
  color: rgba(250, 246, 238, 0.92);
}

/* Register — legal labels (06/Apr/2026); replace with interactive links when modal/pages exist */
body.auth-page .policy-soon {
  color: var(--color-gold-light);
}

/* “New here?” / “Already have…” — highlighted line above CTA button */
body.auth-page .auth-page__new-here {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

/* Primary secondary action — gold filled (Material: contained button; clear tap target) */
body.auth-page .auth-page__btn-create {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  border: 2px solid var(--color-gold);
  color: var(--color-forest);
  box-shadow: var(--shadow-button);
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

body.auth-page .auth-page__btn-create:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-forest);
  transform: translateY(-1px);
}

body.auth-page .auth-page__btn-create:focus-visible {
  outline: 3px solid rgba(232, 201, 122, 0.55);
  outline-offset: 3px;
}

/* Register page: “Sign in” as outlined secondary to avoid two identical gold blocks */
body.auth-page .auth-page__btn-create--outline {
  background: transparent;
  color: var(--color-gold-light);
  border-color: rgba(232, 201, 122, 0.95);
  box-shadow: none;
}

body.auth-page .auth-page__btn-create--outline:hover {
  background: rgba(201, 168, 76, 0.18);
  border-color: var(--color-gold-light);
  color: var(--color-cream);
}

body.auth-page .auth-page__secondary {
  padding-bottom: 0.5rem;
}

/* Registration — IP transparency line under “Sign in” (smaller than .small) */
body.auth-page .auth-page__footer-note {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(250, 246, 238, 0.72);
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== HERO (home) ==========
   05/Apr/2026: Landscape band (not full viewport). Layers: base gradient → optional single photo OR
   product-thumb mosaic (from DB) → scrim → glass panel + CTA. Recommended custom asset: 1920×640px JPG/WebP.
   05/Apr/2026: .hero__rotator — two full-bleed photos crossfade (HERO_ROTATION_*); panel + tagline + CTA unchanged.
   ========== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero--landscape {
  /* Overall hero band; +10% vs prior (Apr/2026) */
  min-height: clamp(317px, 35.64vw, 515px);
}

.hero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  will-change: transform;
}

/* Full-bleed hero crossfade — sits in z-layer 0 under .hero__scrim */
.hero__rotator {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__rotator .hero__rotator-layer {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

/* Must win over .hero__rotator .hero__rotator-layer (same specificity order) */
.hero__rotator .hero__rotator-layer.hero__rotator-layer--visible {
  opacity: 1 !important;
  z-index: 1;
}

.hero__rotator .hero__rotator-layer--broken {
  display: none !important;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 45% at 78% 12%,
      #4A9B5F 0%,
      #3A8050 25%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 70% 60% at 50% 45%,
      #2A6B40 0%,
      #1E5230 40%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 60% 55% at 18% 85%,
      #0D2B18 0%,
      #0A2014 50%,
      transparent 80%
    ),
    linear-gradient(
      145deg,
      #3A8050 0%,
      #1A4C2D 35%,
      #0D2818 65%,
      #081810 100%
    );
  background-color: #1A4C2D;
}

/* Single custom image from HERO_BACKGROUND_IMAGE (config) */
.hero__bg--photo {
  background-image:
    linear-gradient(rgba(10, 32, 22, 0.648), rgba(6, 18, 12, 0.738)),
    var(--hero-bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero__bg--photo::after {
  opacity: 0.02;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* DB-driven product thumbnails — tiled under scrim */
.hero__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
  z-index: 0;
}

@media (min-width: 600px) {
  .hero__mosaic {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1200px) {
  .hero__mosaic {
    grid-template-columns: repeat(8, 1fr);
  }
}

.hero__mosaic-cell {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 0;
  filter: saturate(1.05);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Green scrim: +10% transparency vs prior (alpha ×0.9) */
  background: linear-gradient(
    120deg,
    rgba(8, 24, 16, 0.792) 0%,
    rgba(10, 32, 22, 0.702) 40%,
    rgba(6, 18, 12, 0.765) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0.82rem clamp(0.45rem, 2.25vw, 1.125rem) 1.215rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  animation: heroFadeIn 1s ease forwards;
}

/* Frosted panel — 05/Apr/2026 base; logo scale + readability refined 05/Apr/2026 */
.hero__panel {
  width: 100%;
  max-width: min(100%, calc(100vw - 1rem));
  padding: clamp(0.559rem, 1.312vw, 0.887rem) clamp(0.9rem, 2.7vw, 1.575rem) clamp(0.585rem, 1.215vw, 0.9rem);
  border-radius: var(--radius-md);
  /* Green glass: +10% transparency vs 0.5 (alpha ×0.9 → 0.45) */
  background: rgba(10, 32, 22, 0.45);
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/*
 * Home hero — logo block (05/Apr/2026; 18/Apr/2026: fix stretch + perceived resolution)
 * 02/Apr/2026: +20% width (90%→108%); shorter frame; cover + top anchor crops bottom.
 * Logo block height: repeated +10% steps; +5%; +2% (Apr/2026).
 */
.hero__logo-wrap {
  width: min(108%, 100%);
  max-width: min(108%, calc(100vw - 2rem));
  margin: 0 auto clamp(0.315rem, 0.9vw, 0.585rem);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 0;
  position: relative;
  background: linear-gradient(180deg, #1a4d32 0%, #0d2818 100%);
  display: block;
  padding: 0;
  min-height: 261px;
  max-height: min(499px, 61.26vh);
  height: clamp(261px, 39.914vw, min(499px, 61.26vh));
}

.hero__logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: none;
  image-rendering: auto;
  -ms-interpolation-mode: bicubic;
}

@media (min-width: 769px) {
  .hero__logo-wrap {
    max-width: min(108%, calc(100vw - 1.5rem));
  }
}

.hero__desc {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 2.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-top: 0;
  margin-bottom: clamp(0.84rem, 2.1vw, 1.416rem);
  text-rendering: optimizeLegibility;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  max-width: 100%;
}

/* One line on wide viewports; wrap naturally on phones */
@media (min-width: 900px) {
  .hero__desc {
    white-space: nowrap;
    font-size: clamp(0.88rem, 1.15vw + 0.35rem, 1.08rem);
    line-height: 1.4;
  }
}

.hero__cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1A3D2B;
  background: var(--color-gold);
  padding: 0.9rem 2.52rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
  margin-top: 0;
}
.hero__cta:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.50);
  color: #0D2818;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
  padding: calc(var(--space-xl) * 0.9) calc(var(--space-md) * 0.9);
  background: var(--color-cream);
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-heading__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}
.section-heading__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--color-forest);
  line-height: 1.1;
}
.section-heading__rule {
  width: 50px;
  height: 2px;
  background: var(--color-gold);
  margin: 1rem auto 0;
  border: none;
}

/* Home products strip: −10% vertical gaps (eyebrow / title / rule / grid vs section padding) */
.products-section .section-heading {
  margin-bottom: calc(var(--space-lg) * 0.9);
}
.products-section .section-heading__eyebrow {
  margin-bottom: 0.45rem;
}
.products-section .section-heading__rule {
  margin: 0.9rem auto 0;
}

/* 12/Apr/2026: FAQ accordion skin (was index.php; 13/Apr/2026: also faq.php) — Material-style elevation + brand colors */
.home-faq-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-white);
}
.home-faq-section__inner {
  max-width: 42rem;
  margin: 0 auto;
}
.home-faq-accordion.accordion-flush .accordion-item {
  border: 1px solid rgba(201, 168, 76, 0.22);
  border-radius: var(--radius-md);
  margin-bottom: 0.65rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-white);
}
.home-faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-forest);
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-dark) 100%);
  padding: 1rem 1.15rem;
}
.home-faq-accordion .accordion-button:not(.collapsed) {
  box-shadow: none;
  color: var(--color-forest);
  background: var(--color-cream-dark);
}
.home-faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.45);
  border-color: transparent;
}
.home-faq-accordion .accordion-body {
  padding: 1rem 1.15rem 1.15rem;
  font-size: 0.95rem;
  color: var(--color-text-mid);
  line-height: 1.65;
  background: var(--color-white);
}
.home-faq-answer {
  white-space: normal;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(201, 168, 76, 0.12);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/*
 * 13/Apr/2026 (fixed): Changed aspect-ratio from 4/3 (landscape) to 1/1 (square) and
 * object-fit from cover to contain.
 *
 * Root cause: Portrait product images (e.g. 600×1200 product-bag shots) were being
 * squished into a landscape 4:3 container — doubly distorted because:
 *   (a) the PHP thumbnail generator created a square thumb by distorting the source, and
 *   (b) even with a correct proportional thumb, object-fit:cover in a 4:3 box would
 *       crop heavy amounts of the portrait image top and bottom.
 *
 * Fix: square (1:1) container + object-fit:contain ensures the full product is always
 * visible without any cropping or distortion, regardless of the uploaded image orientation.
 * The white background of the new PHP-generated thumbnails fills any letterbox padding
 * seamlessly. This also matches how major e-commerce platforms (Amazon, Flipkart) display
 * product images — always showing the complete product in a uniform square frame.
 *
 * Impact: home page product grid (index.php) + related-products strip (product.php) both
 * use this class. Both now show undistorted, fully visible product images.
 */
.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #ffffff;
}
.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__image-wrap img {
  transform: scale(1.04);
}

.product-card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-parchment) 0%, var(--color-cream-dark) 100%);
  color: var(--color-text-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: 0.5rem;
}
.product-card__image-placeholder::before {
  content: '✦';
  font-size: 1.5rem;
  color: var(--color-gold);
  opacity: 0.4;
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-forest);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name,
.product-card__title a {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: 0.4rem;
  line-height: 1.2;
  text-decoration: none;
  transition: color 0.2s;
}
.product-card__title a:hover {
  color: var(--color-gold);
}

.product-card__sku {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}
.star-rating .star--full,
.star-rating .star--half { color: var(--color-gold); }
.star-rating .star--empty { color: #ddd; }
.stars-count {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--color-text-light);
  margin-left: 0.25rem;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  margin-top: auto;
}
.price-current {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-forest);
}
.price-mrp {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.btn-add-cart,
.product-card__btn {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-forest);
  border: 1px solid var(--color-forest);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  text-decoration: none;
}
.btn-add-cart:hover,
.product-card__btn:not(:disabled):hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-forest);
  box-shadow: var(--shadow-button);
}
.product-card__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/*
 * Inline cart qty + Go to cart (home grid + product detail) — 02/Apr/2026
 * Matches .product-card__btn typography (uppercase, letter-spacing, Jost).
 * Qty row: single forest bar (same as Add); Go to cart: gold fill like button :hover for visual hierarchy.
 */
.product-card__cart,
.product-detail-cart {
  width: 100%;
}

.product-qty-row {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-forest);
  background: var(--color-forest);
  box-shadow: none;
}

.product-qty-row__btn {
  flex: 0 0 2.75rem;
  min-height: 2.8rem;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-qty-row__btn:hover:not(:disabled) {
  background: var(--color-gold);
  color: var(--color-forest);
}

.product-qty-row__btn:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: -2px;
  z-index: 1;
}

.product-qty-row__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.product-qty-row__val {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--color-white);
  background: var(--color-forest);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

/* Full-width secondary CTA — same footprint as Add to Cart */
.product-card__go-cart,
a.product-card__go-cart {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--color-forest);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.product-card__go-cart:hover,
a.product-card__go-cart:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-forest);
  box-shadow: var(--shadow-button);
}

.product-card__go-cart:focus-visible {
  outline: 2px solid var(--color-forest-mid);
  outline-offset: 2px;
}

/* Product detail page: same look; primary Add matches full-width card CTA — 02/Apr/2026 */
.product-detail-cart .product-qty-row {
  max-width: 100%;
}

.product-detail-cart .js-store-add {
  display: block;
  width: 100%;
}

.product-detail-cart .product-detail-cart__go-cart,
a.product-detail-cart__go-cart {
  display: block;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--color-forest);
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-sm);
  transition: all 0.25s ease;
}

.product-detail-cart .product-detail-cart__go-cart:hover,
a.product-detail-cart__go-cart:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-forest);
  box-shadow: var(--shadow-button);
}

/* ========== WHY SECTION ========== */
.why-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--color-cream-dark);
  position: relative;
}

.why-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: var(--space-lg);
}

.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-top: 2px solid var(--color-gold);
  background: var(--color-white);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.why-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
}
.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-forest);
  margin-bottom: 0.6rem;
}
.why-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--color-forest);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) var(--space-md) var(--space-md);
  border-top: 2px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.footer-brand__name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}
/* 18/Apr/2026 (added): parent org beside brand — body scale, linked ABHY Global */
.footer-brand__unit {
  font-family: var(--font-body);
  font-size: 0.52em;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  vertical-align: 0.15em;
  white-space: normal;
}
.footer-brand__unit-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-brand__unit-link:hover {
  color: var(--color-gold-light);
}
.footer-brand__tagline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}
.footer-brand__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col p,
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--color-gold-light);
}

/* 18/Apr/2026 (added): Instagram Name Tag — footer Contact column; tap opens profile in new tab */
.footer-instagram {
  margin-top: 1rem;
}
.footer-instagram__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.footer-instagram__link {
  display: inline-block;
  max-width: 140px;
  border-radius: var(--radius-md, 12px);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-instagram__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}
.footer-instagram__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.footer-instagram__fallback {
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

/* 07/Apr/2026: Quick Links — About from header (verified). 13/Apr/2026: guest header uses Products; About stays footer-only. */
.footer-col--quick-links .footer-quick-link--current,
.footer-col--quick-links a.footer-quick-link[aria-current="page"] {
  color: var(--color-gold-light);
  font-weight: 500;
}

/* 18/Apr/2026 (updated): inner flex row — copyright + optional Vasanisha credit */
.footer-bottom {
  max-width: 1200px;
  margin: var(--space-sm) auto 0;
}
.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem 1.25rem;
  width: 100%;
}
.footer-bottom__inner > p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-bottom__credit {
  font-size: 0.6875rem;
  line-height: 1.5;
  max-width: 26rem;
  text-align: right;
  color: rgba(255,255,255,0.32);
}
.footer-bottom__credit-link {
  color: rgba(255,255,255,0.48);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}
.footer-bottom__credit-link:hover {
  color: var(--color-gold-light);
}

/* ========== CONTENT PAGES (About, Cart, Contact, Checkout, etc.) ========== */
.content-page {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  color: var(--color-text-dark);
}

.content-page h1,
.content-page h2,
.content-page h3,
.content-page h5 {
  color: var(--color-text-dark);
}

.content-page .text-muted {
  color: var(--color-text-mid) !important;
}

.content-page .form-label {
  color: var(--color-text-dark);
}

.content-page .card {
  background: var(--color-white);
  border-color: rgba(26, 61, 43, 0.12);
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}
.product-breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.product-breadcrumb .breadcrumb-item a:hover {
  color: var(--color-gold);
}
.product-breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.6);
}

.product-detail-card {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  color: var(--color-text-dark);
}

.product-detail-card h1 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
}

.product-detail-card .text-muted {
  color: var(--color-text-mid) !important;
}

.product-detail-card .product-description {
  color: var(--color-text-mid);
  line-height: 1.7;
}

.product-detail-card .form-label {
  color: var(--color-text-dark);
}

.btn-add-cart {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--color-gold);
  border: 1px solid var(--color-gold);
  color: var(--color-forest);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-add-cart:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  color: var(--color-forest);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
}

.product-gallery__placeholder-img {
  background: var(--color-parchment);
  min-height: 300px;
  object-fit: contain;
}

.reviews-section {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--color-text-dark);
  box-shadow: var(--shadow-card);
}

.reviews-section h2,
.reviews-section h3 {
  color: var(--color-text-dark);
}

/* ========== GLOBAL BUTTONS ========== */
.btn-primary,
.btn-primary-ss {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-forest);
  border: 1px solid var(--color-forest);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-primary:hover,
.btn-primary-ss:hover {
  background: var(--color-forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 61, 43, 0.25);
  color: var(--color-white);
}

/* Checkout Place Order only: keep primary forest styling on hover/active (no lift or color shift). */
.btn-primary-ss.btn-primary-ss--no-hover {
  transition: none;
}
.btn-primary-ss.btn-primary-ss--no-hover:hover,
.btn-primary-ss.btn-primary-ss--no-hover:active {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-white);
  transform: none;
  box-shadow: none;
}
.btn-primary-ss.btn-primary-ss--no-hover:focus:not(:focus-visible) {
  outline: none;
}
.btn-primary-ss.btn-primary-ss--no-hover:focus-visible {
  outline: 2px solid var(--color-forest-mid);
  outline-offset: 2px;
}

/* 08/Apr/2026: Password show/hide control (account.php, register.php) */
.password-toggle-btn {
  min-width: 2.75rem;
  padding-left: 0.65rem;
  padding-right: 0.65rem;
}
.password-toggle-btn .password-toggle-icon svg {
  display: block;
}

.btn-outline-gold {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: transparent;
  border: 1px solid var(--color-gold);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  text-decoration: none;
}
.btn-outline-gold:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  box-shadow: var(--shadow-button);
}

/* ========== TOAST ========== */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast-item {
  padding: 1rem 1.5rem;
  background: var(--color-text-dark);
  color: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-hover);
  animation: toastIn 0.3s ease;
}

.toast-item--success { background: var(--color-success); }
.toast-item--error { background: var(--color-error); }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== SPINNER ========== */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ========== FORMS ========== */
.form-control:focus {
  border-color: var(--color-forest);
  box-shadow: 0 0 0 0.2rem rgba(26, 61, 43, 0.25);
}

/**
 * 11/Apr/2026 (added/updated): Checkout readonly mobile visual treatment.
 * Highlights non-editable account-linked phone field with subtle grey background.
 */
.checkout-phone-readonly[readonly] {
  background-color: #f1f3f5;
  color: #495057;
  border-color: #d5d9de;
  cursor: not-allowed;
}

.form-label { font-weight: 500; color: var(--color-text-dark); }

.pincode-valid { color: var(--color-success); }
.pincode-invalid { color: var(--color-error); }

/* ========== MOBILE ========== */
@media (max-width: 768px) {
  .site-header { min-height: 54px; height: auto; padding: 0.315rem 0.9rem 0.405rem; }
  .site-header.site-header--rotating,
  .site-header.site-header--static-bg {
    padding-left: 0;
    padding-right: 0;
    min-height: clamp(56px, 14vw, 80px);
  }
  .site-header--rotating .header-row-main,
  .site-header--static-bg .header-row-main {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
  .hero--landscape {
    min-height: clamp(297px, 47.52vw, 515px);
  }
  .hero__content { padding: 0.656rem clamp(0.315rem, 1.8vw, 0.675rem) 1.035rem; }
  .hero__panel {
    max-width: 100%;
    padding: 0.559rem 0.765rem 0.675rem;
  }
  .hero__logo-wrap {
    width: min(108%, 100%);
    max-width: min(108%, calc(100vw - 0.75rem));
    min-height: 238px;
    max-height: min(427px, 59.85vh);
    height: clamp(238px, 45.616vw, min(427px, 59.85vh));
    padding: 0;
    margin-bottom: clamp(0.27rem, 0.81vw, 0.495rem);
  }
  .hero__logo-img {
    max-height: none;
    object-position: center top;
  }
  .hero__desc {
    white-space: normal;
    font-size: clamp(0.95rem, 3.2vw, 1.08rem);
    line-height: 1.55;
    margin-bottom: clamp(0.84rem, 2.678vw, 1.339rem);
  }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  /* 18/Apr/2026 (updated): stack copyright + Vasanisha credit on narrow viewports */
  .footer-bottom__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.65rem;
  }
  .footer-bottom__credit {
    text-align: center;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  /* Narrow phones: keep tagline readable; logo still prominent but not taller than hero */
  .hero__desc {
    font-size: clamp(0.98rem, 4.2vw, 1.1rem);
    line-height: 1.65;
  }
  .hero__cta {
    padding: 0.81rem 1.35rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}

/* WhatsApp floating action button */
.whatsapp-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.whatsapp-fab svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 480px) {
  .whatsapp-fab { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

/* ════════════════════════════════════════════════
   === ABOUT PAGE ===
   ════════════════════════════════════════════════ */

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-forest-mid, #2E6B47);
  margin-bottom: 0.6rem;
  display: block;
}
.eyebrow--gold { color: var(--color-gold, #C9A84C); }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--color-gold, #C9A84C);
  border: none;
  margin: 1rem auto 1.75rem;
}
.gold-rule--left { margin-left: 0; }

.about-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 15%, #4A9B5F 0%, #2E7A45 30%, transparent 65%),
    linear-gradient(145deg, #3A8050 0%, #1A4C2D 40%, #0D2818 100%);
}
.about-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}
.about-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 4rem 2rem;
}
.about-hero__content .eyebrow { color: var(--color-gold, #C9A84C); }
.about-hero__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1rem;
}
.about-hero__title em { color: var(--color-gold-light, #E8C97A); font-style: italic; }
.about-hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

.about-section { padding: 6rem 2rem; }
.about-section--light    { background: var(--color-cream, #FAF6EE); }
.about-section--parchment{ background: var(--color-cream-dark, #F0EAD6); }
.about-section--dark     { background: #0D2818; }

.about-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.about-section--centered { text-align: center; }
.about-section--two-col  {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-section__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--color-forest, #1A3D2B);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.about-section__heading--white { color: #fff; }
.about-section__heading em { font-style: italic; color: var(--color-gold, #C9A84C); }

.about-section__text p {
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 300;
  color: var(--color-text-mid, #4A3728);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.about-highlight {
  font-family: var(--font-heading, 'Cormorant Garamond', serif) !important;
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--color-forest, #1A3D2B) !important;
  border-left: 2px solid var(--color-gold, #C9A84C);
  padding-left: 1.25rem;
  margin-top: 1.5rem !important;
}

.about-section__body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text-mid, #4A3728);
  line-height: 1.85;
  max-width: 680px;
  margin: 0 auto 1.5rem;
}
.about-section__body--white { color: rgba(255,255,255,0.75); }
.about-section__body--italic { font-style: italic; color: var(--color-text-light, #8B7355); }

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  background: linear-gradient(135deg, #EDE0C4, #F0EAD6);
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.about-img-placeholder__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.about-img-placeholder__inner span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light, #8B7355);
}

/* 08/Apr/2026: About page — brand one-pager image (replaces about-img-placeholder in section 2). */
.about-hero-figure {
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
}
.about-hero-figure__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  box-shadow: 0 8px 32px rgba(26, 61, 43, 0.08);
}

.name-meaning-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}
.name-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  text-align: center;
  min-width: 200px;
}
.name-card__word {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 2rem;
  color: var(--color-gold, #C9A84C);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.name-card__word span {
  display: block;
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-body);
  font-weight: 300;
  margin-top: 0.3rem;
}
.name-card__meaning {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-light, #E8C97A);
  margin-bottom: 0.75rem;
}
.name-card__desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.name-card__plus {
  font-size: 1.5rem;
  color: var(--color-gold, #C9A84C);
  opacity: 0.5;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}
.value-card {
  background: #fff;
  border-top: 2px solid var(--color-gold, #C9A84C);
  padding: 2rem 1.5rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 2px 20px rgba(26,61,43,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 8px 35px rgba(26,61,43,0.12); }
.value-card__icon { margin-bottom: 1.25rem; }
.value-card__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-forest, #1A3D2B);
  margin-bottom: 0.6rem;
}
.value-card__text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-mid, #4A3728);
  line-height: 1.7;
}

.product-standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 3rem;
  margin: 2.5rem auto;
  max-width: 780px;
  text-align: left;
}
.standard-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.standard-item__icon {
  color: var(--color-gold, #C9A84C);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}
.standard-item strong {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1rem;
  color: var(--color-forest, #1A3D2B);
  display: block;
  margin-bottom: 0.2rem;
}
.standard-item p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-text-mid, #4A3728);
  line-height: 1.6;
  margin: 0;
}

.founder-quote {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.founder-quote__mark {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--color-gold, #C9A84C);
  opacity: 0.2;
  margin-bottom: 1rem;
  display: block;
}
.founder-quote__text {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}
.founder-quote__attribution { text-align: center; }
.founder-quote__line {
  width: 40px;
  height: 1px;
  background: var(--color-gold, #C9A84C);
  margin: 0 auto 1rem;
  opacity: 0.6;
}
.founder-quote__attribution p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--color-gold, #C9A84C);
  margin: 0;
}
.founder-quote__location {
  font-size: 0.72rem !important;
  color: rgba(255,255,255,0.35) !important;
  margin-top: 0.3rem !important;
  letter-spacing: 0.1em !important;
}

/*
 * 09/Apr/2026: Delivery areas card/list CSS removed.
 * Classes affected: .delivery-areas-card, .delivery-areas-card__heading,
 * .delivery-areas-list, .delivery-areas-list li, .delivery-dot,
 * .delivery-areas-list strong, .delivery-areas-list small,
 * .delivery-areas-card__note.
 *
 * These were orphaned after the "Where We Deliver" section was removed from
 * about.php (08/Apr/2026). The footer "Delivery Areas" column and product.php
 * inline text were also removed on 09/Apr/2026. No active HTML references remain.
 * Delivery availability is now communicated solely via the checkout pincode
 * validation flow (check-pincode.php → product_pincode_feedback).
 */

.about-cta {
  background: var(--color-forest, #1A3D2B);
  padding: 6rem 2rem;
  text-align: center;
  border-top: 2px solid rgba(201,168,76,0.25);
}
.about-cta__inner { max-width: 640px; margin: 0 auto; }
.about-cta__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
}
.about-cta__sub {
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.about-cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.about-cta__contact {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-cta__contact a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.05em;
}
.about-cta__contact a:hover { color: var(--color-gold, #C9A84C); }

@media (max-width: 768px) {
  .about-section--two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .name-meaning-grid { gap: 1.5rem; }
  .product-standards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .about-section { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .about-cta__buttons { flex-direction: column; align-items: center; }
  .about-cta__contact { flex-direction: column; gap: 0.75rem; }
}

/* =============================================================================
   LAUNCH TEASER STRIP — 17/Apr/2026
   ─────────────────────────────────────────────────────────────────────────────
   Thin, dismissible "We're live!" announcement ribbon rendered at the very top
   of <body> by includes/header.php. Replaces the 09/Apr/2026 internal-testing
   modal. Visible to all visitors; dismiss is per-session via sessionStorage.

   Design language: Material Design "banner" pattern (M3 Banner — Status) —
     • Single-line on desktop, wraps on narrow screens
     • Brand gradient (forest green) + gold accent for consistency with the
       existing header / site palette
     • IconButton close (×) — 40×40 hit target per M3 touch-target spec
     • Primary CTA uses a solid filled-tonal button look (M3 FilledTonalButton)

   Stacking: z-index 4000 keeps the teaser above .site-header (z-index 1000)
     and below any true overlay modals (9000+ — e.g. cart drawer, if added).
   Layout: position:relative (not sticky) — scrolls with page so shoppers
     can reach it again on refresh but it doesn't occlude the sticky header.
   ============================================================================= */

.launch-teaser {
  /* Hidden by default; initLaunchTeaser() adds .launch-teaser--visible on load */
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.22s ease, max-height 0.26s ease;

  /* Brand gradient — mirrors existing dark-green surface (#0D2818 → #143d23) */
  background: linear-gradient(90deg, #0D2818 0%, #143d23 55%, #0D2818 100%);
  border-bottom: 1px solid rgba(201, 168, 76, 0.35);  /* subtle gold hairline */
  color: #f6efd9;
  font-family: inherit;
  /* Keep above header's in-page content; below any true overlays */
  position: relative;
  z-index: 4000;
}

.launch-teaser--visible {
  opacity: 1;
  max-height: 120px;  /* generous — accommodates 2-line wrap on mobile */
}

.launch-teaser--dismissing {
  opacity: 0;
  max-height: 0;
}

.launch-teaser__inner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  flex-wrap: wrap;                 /* mobile: wrap message under icon + CTA */
}

.launch-teaser__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #C9A84C;                  /* brand gold */
  flex-shrink: 0;
}

.launch-teaser__message {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
  min-width: 0;                    /* allow flex shrink on narrow screens */
}

.launch-teaser__message-lead {
  color: #C9A84C;
  font-weight: 600;
  margin-right: 0.35rem;
  letter-spacing: 0.02em;
}

.launch-teaser__message-body {
  color: rgba(246, 239, 217, 0.92);
}

.launch-teaser__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;            /* pill — Material FilledTonalButton */
  background: #C9A84C;
  color: #0D2818;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.launch-teaser__cta:hover,
.launch-teaser__cta:focus-visible {
  background: #dbba5d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  outline: none;
  transform: translateY(-1px);
}

.launch-teaser__cta:active {
  transform: translateY(0);
  background: #b89641;
}

.launch-teaser__close {
  /* M3 touch-target 40×40, visually 32×32 button face */
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: rgba(246, 239, 217, 0.75);
  border: 1px solid rgba(246, 239, 217, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.launch-teaser__close:hover,
.launch-teaser__close:focus-visible {
  background: rgba(246, 239, 217, 0.12);
  color: #ffffff;
  border-color: rgba(246, 239, 217, 0.45);
  outline: none;
}

.launch-teaser__close:active {
  background: rgba(246, 239, 217, 0.22);
}

/* Narrow screens: compact padding, smaller message, message wraps below icon */
@media (max-width: 600px) {
  .launch-teaser__inner {
    padding: 0.5rem 0.75rem;
    gap: 0.6rem;
  }
  .launch-teaser__message {
    font-size: 0.85rem;
    flex-basis: 100%;
    order: 3;                      /* wrap message onto its own line */
  }
  .launch-teaser__cta {
    padding: 0.36rem 0.8rem;
    font-size: 0.8rem;
    order: 2;
  }
  .launch-teaser__close { order: 1; margin-left: auto; }
  .launch-teaser__icon  { order: 0; }
  .launch-teaser--visible { max-height: 160px; }   /* allow 2-line wrap */
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .launch-teaser,
  .launch-teaser--visible,
  .launch-teaser--dismissing {
    transition: none;
  }
  .launch-teaser__cta,
  .launch-teaser__close {
    transition: none;
  }
}

/* =============================================================================
   TESTING NOTICE POPUP — 09/Apr/2026 (RETIRED 17/Apr/2026)
   ─────────────────────────────────────────────────────────────────────────────
   The modal HTML has been removed from includes/header.php and replaced by the
   launch-teaser strip above. The CSS below is retained (dormant) so that:
     1. Re-enabling a future full-screen notice (maintenance, holiday closure,
        etc.) is a one-line change — just re-render the HTML block.
     2. No cascade side-effects from a sudden rule deletion during upgrade.
   Safe to delete in a future cleanup commit once we are confident we will not
   revive this pattern.
   ============================================================================= */

/**
 * Full-screen semi-transparent backdrop.
 * z-index 9000 — above sticky header (z-index 1000) and all page content.
 */
.testing-notice-overlay {
  position: fixed;
  inset: 0;                                    /* top/right/bottom/left: 0 */
  z-index: 9000;
  background: rgba(10, 20, 14, 0.72);          /* dark forest tint */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  /* Hidden by default; JS removes .testing-notice-overlay--hidden to show */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

/* Visible state — added by JS on init when not dismissed */
.testing-notice-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

/* Dismiss animation — JS adds this before removing from DOM */
.testing-notice-overlay--dismissing {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

/**
 * Popup card — brand-aligned (cream background, gold accents, forest text).
 */
.testing-notice-card {
  background: var(--color-cream, #FAF6EE);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: var(--radius-md, 10px);
  box-shadow: 0 16px 56px rgba(10, 20, 14, 0.45);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  animation: testingNoticeSlideIn 0.32s cubic-bezier(0.34, 1.28, 0.64, 1) both;
}

@keyframes testingNoticeSlideIn {
  from { transform: translateY(18px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* Gold top-border accent bar */
.testing-notice-card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold, #C9A84C), var(--color-gold-light, #E8C97A), var(--color-gold, #C9A84C));
  border-radius: var(--radius-md, 10px) var(--radius-md, 10px) 0 0;
}

/* Brand badge row at top of card */
.testing-notice-badge {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.testing-notice-badge__icon {
  width: 28px;
  height: 28px;
  background: var(--color-forest, #1A3D2B);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testing-notice-badge__icon svg {
  display: block;
}

.testing-notice-badge__label {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-forest, #1A3D2B);
}

/* Main heading */
.testing-notice-heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(1.45rem, 3.5vw, 1.85rem);
  font-weight: 500;
  color: var(--color-text-dark, #1C1A17);
  line-height: 1.25;
  margin: 0 0 1rem;
}

/* Divider line */
.testing-notice-divider {
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.3);
  margin: 0 0 1.1rem;
}

/* Body paragraphs */
.testing-notice-body {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-mid, #4A3728);
  line-height: 1.72;
  margin: 0 0 0.65rem;
}

.testing-notice-body:last-of-type {
  margin-bottom: 0;
}

/* Highlighted tester note at bottom */
.testing-notice-tester-note {
  margin-top: 1.1rem;
  padding: 0.75rem 1rem;
  background: rgba(26, 61, 43, 0.06);
  border-left: 3px solid var(--color-gold, #C9A84C);
  border-radius: 0 var(--radius-sm, 4px) var(--radius-sm, 4px) 0;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-forest, #1A3D2B);
  line-height: 1.6;
}

.testing-notice-tester-note a {
  color: var(--color-forest, #1A3D2B);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testing-notice-tester-note a:hover {
  color: var(--color-gold, #C9A84C);
}

/* Footer row — dismiss button */
.testing-notice-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  gap: 1rem;
}

.testing-notice-footer__hint {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.75rem;
  color: var(--color-text-light, #8B7355);
  font-weight: 300;
  flex: 1;
}

/* Dismiss / acknowledge button */
.testing-notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.5rem;
  background: var(--color-forest, #1A3D2B);
  color: var(--color-white, #fff);
  border: none;
  border-radius: var(--radius-pill, 50px);
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.testing-notice-btn:hover,
.testing-notice-btn:focus-visible {
  background: var(--color-forest-mid, #2E6B47);
  box-shadow: var(--shadow-button, 0 4px 15px rgba(201,168,76,0.3));
  transform: translateY(-1px);
  outline: none;
}

.testing-notice-btn:active {
  transform: translateY(0);
}

/* Responsive — compact card on small screens */
@media (max-width: 540px) {
  .testing-notice-card {
    padding: 2rem 1.5rem 1.5rem;
  }

  .testing-notice-heading {
    font-size: 1.3rem;
  }

  .testing-notice-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
  }

  .testing-notice-footer__hint {
    text-align: center;
  }

  .testing-notice-btn {
    justify-content: center;
    padding: 0.7rem 1.5rem;
  }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .testing-notice-card {
    animation: none;
  }
  .testing-notice-overlay,
  .testing-notice-overlay--dismissing {
    transition: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   POLICY PAGE — shipping-policy.php + cancellation-refund.php
                 + terms-conditions.php (14/Apr/2026)
                 + privacy-policy.php   (17/Apr/2026)
   14/Apr/2026 (added): Initial policy page styles (light parchment theme).
   14/Apr/2026 (updated): Converted fully to DARK THEME to match site background.
   RCA: body { background-color: #0D2818 } bleeds through .site-main (transparent).
   Previous background: #faf8f4 (light) caused dark text (#2c2c2a) to be invisible.
   Fix: .policy-page__body → transparent; all text → white/rgba(255,255,255,*);
        card sections → semi-transparent dark overlays with gold accent borders.
   Impact: Both policy pages now render correctly on the dark site background.
   No DB, no PHP, no other pages affected — CSS-only change.
   ─────────────────────────────────────────────────────────────────────────
   17/Apr/2026 (hardened — readability regression fix):
     Issue: On live deployment the policy pages still rendered with dark body
       text (see screenshots from user — Privacy, Shipping, Cancellation &
       Refund, Terms). Cause: body { color: var(--color-text-dark) = #1C1A17 }
       inherits into every descendant that does not override `color` — and a
       cached/stale style.css (pre-14/Apr) on production was not shipping the
       white overrides either.
     Two-layer defence applied here so this can never silently break again:
       (a) Scope-level rule `.policy-page { color:#fff }` — any descendant
           that does NOT explicitly set its own color now inherits white
           instead of the dark body default. Specificity 0,1,0 beats `body`.
       (b) `!important` added on every critical body-text rule
           (`.policy-section p`, `.policy-list li`, `.policy-overview`,
           `.policy-address`, `.policy-section__heading`, `.policy-callout`,
           `.policy-page__title`, `.policy-page__subtitle`) so any future
           accidental override (e.g. a Bootstrap utility class, a tag-level
           inline style, a vendor stylesheet) cannot regress legibility.
     Companion fix: cache-busting `?v=filemtime()` on the style.css <link>
       in includes/header.php — so returning visitors get the new CSS
       immediately instead of waiting for their browser cache TTL.
     No PHP, no DB, no other pages affected — purely CSS + one-line PHP.
   ═══════════════════════════════════════════════════════════════════════════ */

/*
 * 17/Apr/2026 (added): Scope-level foreground colour for the entire policy
 * layout. This single declaration fixes ~90% of the regression by overriding
 * the inherited `body { color: #1C1A17 }` for anything inside .policy-page
 * that does not set its own colour. Specificity: 0,1,0 — beats body (0,0,1).
 *
 * NOTE: We deliberately do NOT use `.policy-page * { color: inherit }` — that
 * would over-reach and flatten intentionally-gold elements (section number
 * badge, tag badge, callouts, links). Instead we rely on normal inheritance
 * plus explicit overrides below.
 */
.policy-page {
    color: #ffffff;
}

/* ── Hero banner ─────────────────────────────────────────────────────────── */
.policy-page__hero {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.40) 0%,
    rgba(13, 40, 24, 0.55) 100%
  ), var(--color-forest, #1A3D2B);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
.policy-page__hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
/* 14/Apr/2026 (updated): was var(--color-light,#f5f0e8) — now #fff for max legibility */
/* 17/Apr/2026 (hardened): !important so body-inherited dark colour cannot win */
.policy-page__title {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: #ffffff !important;
  margin: 0.5rem 0 1rem;
}
/* 14/Apr/2026 (updated): was rgba(245,240,232,0.75) — now white 72% */
/* 17/Apr/2026 (hardened): !important — see block header RCA */
.policy-page__subtitle {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Body wrapper ────────────────────────────────────────────────────────── */
/* 14/Apr/2026 (updated): was background:#faf8f4 (light parchment) — see RCA above */
.policy-page__body {
  background: transparent;
  padding: 3rem 1.5rem 4rem;
}
.policy-page__container {
  max-width: 780px;
  margin: 0 auto;
}

/* ── Overview paragraph ─────────────────────────────────────────────────── */
/* 14/Apr/2026 (updated): was white card — now dark semi-transparent with gold border */
/* 17/Apr/2026 (hardened): !important — see block header RCA */
.policy-overview {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-gold, #c9a84c);
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88) !important;
}
.policy-overview p { margin: 0; }
/* 17/Apr/2026 (hardened): !important — same rationale as .policy-section a / .policy-address a */
.policy-overview a { color: var(--color-gold, #c9a84c) !important; text-decoration: none; }
.policy-overview a:hover { text-decoration: underline; }

/* ── Individual sections ─────────────────────────────────────────────────── */
.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* 14/Apr/2026: was #e8e2d8 */
}
.policy-section:last-child { border-bottom: none; }

/* ── Section heading with gold number badge ──────────────────────────────── */
/* 14/Apr/2026 (updated): was var(--color-dark,#1a1a18) — now #fff */
/* 17/Apr/2026 (hardened): !important — see block header RCA */
.policy-section__heading {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.policy-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--color-gold, #c9a84c);
  color: #fff;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Phase / tag badge beside heading ───────────────────────────────────── */
.policy-section__tag {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(201, 168, 76, 0.18);
  color: var(--color-gold, #c9a84c);
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.15rem 0.55rem;
  border-radius: 20px;
  vertical-align: middle;
}

/* ── Highlighted section (WhatsApp Orders) ───────────────────────────────── */
/* 14/Apr/2026 (updated): was #fffdf5 (light cream) — now dark translucent gold tint */
.policy-section--highlight {
  background: rgba(201, 168, 76, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 2.5rem;
}
.policy-section--highlight .policy-section__heading { margin-bottom: 0.75rem; }

/* ── Contact section ─────────────────────────────────────────────────────── */
/* 14/Apr/2026 (updated): was #fff (white card) — now dark semi-transparent */
.policy-section--contact {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* ── Body text within sections ──────────────────────────────────────────── */
/* 14/Apr/2026 (updated): was var(--color-text,#2c2c2a) — now white 88% */
/* 17/Apr/2026 (hardened): !important — this is the MAIN body paragraph rule */
/*   across all 4 policy pages (Privacy, Shipping, Cancellation, Terms). If */
/*   only one rule in this block could carry !important, it would be this. */
.policy-section p {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88) !important;
  margin-bottom: 0.75rem;
}
.policy-section p:last-child { margin-bottom: 0; }

/* ── Bullet lists ────────────────────────────────────────────────────────── */
.policy-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}
/* 14/Apr/2026 (updated): text was #2c2c2a — now white 85%; divider now white 10% */
/* 17/Apr/2026 (hardened): !important — see block header RCA */
.policy-list li {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
}
.policy-list li:last-child { border-bottom: none; }
.policy-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.4rem;
  color: var(--color-gold, #c9a84c);
  font-size: 0.6rem;
  line-height: 1.65;
}

/* ── Note / caveat text ─────────────────────────────────────────────────── */
/* 14/Apr/2026 (updated): was #666 (dark grey) — now white 52% italic */
.policy-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.52) !important;
  font-style: italic;
  margin-top: 0.5rem !important;
}

/* ── Return policy placeholder ───────────────────────────────────────────── */
/* Replace <span> with <a href="cancellation-refund.php"> once page is live */
.policy-link-placeholder {
  color: var(--color-gold, #c9a84c);
  font-weight: 500;
  border-bottom: 1px dashed var(--color-gold, #c9a84c);
  cursor: default;
}

/* ── Address block ───────────────────────────────────────────────────────── */
/* 14/Apr/2026 (updated): was #2c2c2a — now white 88% */
/* 17/Apr/2026 (hardened): !important — see block header RCA */
.policy-address {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.88) !important;
  font-style: normal;
}
/* 17/Apr/2026 (hardened): !important on gold so cached dark-link colour never wins. */
/*   (Cancellation-refund screenshot showed these rendering in default blue.) */
.policy-address a { color: var(--color-gold, #c9a84c) !important; text-decoration: none; }
.policy-address a:hover { text-decoration: underline; }

/* ── Inline links inside policy body ────────────────────────────────────── */
/* 17/Apr/2026 (hardened): !important on gold — same rationale as .policy-address a */
.policy-section a { color: var(--color-gold, #c9a84c) !important; text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
/* .policy-overview a inline-gold rule lives higher up (line ~2847) — already */
/*   hardened with !important on the same 17/Apr/2026 pass. */

/* ── Footer quick-link active state for policy pages ───────────────────── */
/* 14/Apr/2026: shipping-policy, cancellation-refund, terms-conditions */
.footer-quick-link--current[data-nav-key="shipping-policy"],
.footer-quick-link--current[data-nav-key="cancellation-refund"],
.footer-quick-link--current[data-nav-key="terms-conditions"] {
  color: var(--color-gold, #c9a84c);
  font-weight: 500;
}

/* ── Subsection headings (h3 inside a policy section) ───────────────────── */
/* 14/Apr/2026 (updated): was #1a1a18 (dark) — now gold-light for dark bg visibility */
.policy-subsection__heading {
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold-light, #e8c97a);
  margin: 1.25rem 0 0.5rem;
}

/* ── Callout / alert box (time-sensitive notice) ────────────────────────── */
/* 14/Apr/2026 (updated): was light-gold tint on white — now dark translucent + gold border */
/* 17/Apr/2026 (hardened): !important — see block header RCA */
.policy-callout {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-left: 3px solid var(--color-gold, #c9a84c);
  border-radius: 0 6px 6px 0;
  padding: 0.9rem 1.25rem;
  margin: 1rem 0;
  font-family: var(--font-body, 'Jost', sans-serif);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88) !important; /* 14/Apr/2026: was #2c2c2a */
}

/* ── Responsive adjustments ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .policy-page__hero { padding: 2.5rem 1rem 2rem; }
  .policy-page__body { padding: 2rem 1rem 3rem; }
  .policy-section--highlight,
  .policy-section--contact { padding: 1.25rem 1rem; }
  .policy-section__heading { font-size: 1.25rem; }
}
