/* ============================================================
   SARB Herb Health Care — Premium Ayurvedic Ecommerce
   Design tokens & global styles
   ============================================================ */

:root {
  /* Colors */
  --bg: #041C10;
  --bg-2: #082914;
  --card: #0E2F18;
  --glass: rgba(255, 255, 255, 0.04);
  --glass-strong: rgba(255, 255, 255, 0.07);
  --gold: #C9A648;
  --gold-soft: rgba(201, 166, 72, 0.30);
  --gold-hair: rgba(201, 166, 72, 0.18);
  --primary: #72C043;
  --primary-2: #8BD84F;
  --btn-a: #74C73E;
  --btn-b: #5EAD35;
  --text: #F7F7F7;
  --text-2: #D4D8D3;
  --muted: #9DA89F;
  --line: rgba(255, 255, 255, 0.06);

  /* Radii */
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 28px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card: 0 30px 60px -30px rgba(0, 0, 0, 0.7), 0 0 0 1px var(--gold-hair);
  --shadow-lift: 0 40px 80px -20px rgba(0, 0, 0, 0.8), 0 0 0 1px var(--gold-soft), 0 0 40px -10px rgba(201, 166, 72, 0.2);
  --shadow-btn: 0 10px 30px -8px rgba(116, 199, 62, 0.55), 0 0 0 1px rgba(201, 166, 72, 0.25) inset;

  /* Layout */
  --max: 1440px;
  --content: 1320px;
  --pad: 60px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ------------------- Global atmospheric background ------------------- */
.atmos {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.atmos::before {
  /* Deep base radial – forest depth */
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(114, 192, 67, 0.10), transparent 60%),
    radial-gradient(1000px 700px at 85% 30%, rgba(201, 166, 72, 0.09), transparent 65%),
    radial-gradient(900px 900px at 50% 100%, rgba(8, 41, 20, 0.9), transparent 70%),
    linear-gradient(180deg, #031507 0%, #041C10 40%, #051a0e 100%);
}
.atmos::after {
  /* Fine noise / dust */
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' seed='7'/><feColorMatrix values='0 0 0 0 0.6  0 0 0 0 0.7  0 0 0 0 0.5  0 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
}

.leaves, .dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.leaf {
  position: absolute;
  border-radius: 45% 55% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(140deg, rgba(234, 242, 182, 0.96) 14%, rgba(72, 113, 58, 0.2) 86%);
  box-shadow: inset 0 0 24px rgba(255,255,255,0.1), 0 12px 35px rgba(0,0,0,0.14);
  filter: blur(0.25px);
  opacity: 0.34;
  animation: leaf-drift linear infinite;
  transform-origin: center;
}

.leaf::before {
  content: '';
  position: absolute;
  inset: 16% 32% 16% 32%;
  border-radius: 50%;
  background: rgba(255,255,255,0.32);
  transform: rotate(24deg);
  filter: blur(0.9px);
}

.dust-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 16px rgba(255,255,255,0.16);
  opacity: 0.38;
  animation: dust-float linear infinite alternate;
}

@keyframes leaf-drift {
  0% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6vh) rotate(7deg); }
  50% { transform: translateY(-12vh) rotate(14deg); }
  75% { transform: translateY(-6vh) rotate(8deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

@keyframes dust-float {
  0% { transform: translateY(0) translateX(0); opacity: 0.15; }
  50% { transform: translateY(-19vh) translateX(11px); opacity: 0.55; }
  100% { transform: translateY(0) translateX(-12px); opacity: 0.15; }
}

/* Faint god ray behind sections */
.raybed {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background:
    conic-gradient(from 210deg at 50% -10%,
      transparent 0deg,
      rgba(201,166,72,0.06) 20deg,
      transparent 40deg,
      rgba(114,192,67,0.05) 60deg,
      transparent 80deg);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

/* ------------------- Typography ------------------- */
h1, h2, h3, .display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
  color: var(--text);
}
h1 { font-size: clamp(42px, 5.6vw, 82px); }
h2 { font-size: clamp(34px, 3.6vw, 58px); font-weight: 500; }
h3 { font-size: clamp(20px, 1.4vw, 26px); font-weight: 600; }

p { margin: 0; color: var(--text-2); }
.muted { color: var(--muted); }
.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold { color: var(--gold); }
.green { color: var(--primary); }
.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

/* ------------------- Layout ------------------- */
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
section { position: relative; }

/* ------------------- Glass card ------------------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  border: 1px solid var(--gold-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.glass::before {
  /* subtle inner light */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(255,255,255,0.06) 0%, transparent 30%, transparent 70%, rgba(201,166,72,0.05) 100%);
  pointer-events: none;
}

/* ------------------- Buttons ------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease, filter .3s ease;
  position: relative;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  color: #061a09;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  box-shadow: 0 18px 40px -8px rgba(116,199,62,0.65), 0 0 0 1px rgba(201,166,72,0.4) inset, 0 0 40px -5px rgba(201,166,72,0.35);
}
.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.btn-ghost:hover {
  color: var(--gold);
}
.btn svg { width: 18px; height: 18px; }

/* ------------------- Announcement Bar ------------------- */
.announcement {
  background: linear-gradient(90deg, #030f07, #08211010, #030f07);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow: hidden;
  position: relative;
  z-index: 60;
}
.announcement-track {
  display: flex;
  gap: 48px;
  padding: 10px 0;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.announcement-item .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ------------------- Header ------------------- */
.header-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 var(--pad);
  margin-top: 16px;
}
.header {
  max-width: var(--content);
  margin: 0 auto;
  height: 84px;
  padding: 0 24px 0 28px;
  border-radius: 999px;
  background: rgba(6, 20, 12, 0.55);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.03) inset;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled {
  background: rgba(4, 16, 9, 0.85);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.85), 0 0 0 1px var(--gold-soft) inset;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  width: 72px; height: 72px;
  display: flex; 
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 32px; height: 32px; }
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(201, 166, 72, 0.3));
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
}
.logo-name {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-name .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}
.logo-name .tag {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}
.logo-name {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-name .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
}
.logo-name .tag {
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
}
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav a::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease, left .3s ease;
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; left: 0; }
.nav a.active { color: var(--gold); }
.nav a.active::after { width: 100%; left: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hamburger — only visible once the inline nav collapses */
.nav-toggle { display: none; }

.mobile-nav {
  display: none;
  max-width: var(--content);
  margin: 10px auto 0;
  padding: 10px;
  border-radius: var(--r-lg);
  background: rgba(4, 16, 9, 0.94);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid var(--gold-soft);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.85);
}
.mobile-nav.open { display: grid; }
.mobile-nav a {
  padding: 13px 16px;
  border-radius: 14px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background .25s ease, color .25s ease;
}
.mobile-nav a:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.mobile-nav a.active {
  background: rgba(114, 192, 67, 0.16);
  color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-hair) inset;
}
.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-hair);
  display: grid; place-items: center;
  color: var(--text-2);
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
}
.icon-btn:hover {
  background: rgba(201,166,72,0.10);
  color: var(--gold);
  border-color: var(--gold-soft);
  box-shadow: 0 0 20px -5px rgba(201,166,72,0.5);
}
.icon-btn svg { width: 18px; height: 18px; }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  color: #041a09;
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  border: 2px solid var(--bg);
}

/* ============================================================
   HERO
   ============================================================ */
/* The stone podium sits at 72% / 71% inside header-bg.png. Anchoring the
   background there means that exact point of the artwork always lands at 72%/71%
   of the hero box — so the product line-up below can be pinned to the same
   coordinates and stays on the podium at every viewport size. */
.hero {
  position: relative;
  margin-top: -100px;
  padding: 170px 0 110px;
  min-height: 760px;
  overflow: hidden;
  background-image: url('assets/header-bg.png');
  background-size: cover;
  background-position: 72% 71%;
  background-repeat: no-repeat;
}
.hero::before {
  /* Localized readability overlay — darkens ONLY the left (text) zone,
     fades to fully clear before the centre so the forest stays vivid.
     Plus a slim top scrim for nav legibility and a soft bottom blend. */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,14,8,0.92) 0%, rgba(3,14,8,0.72) 24%, rgba(3,14,8,0.34) 44%, rgba(3,14,8,0) 62%),
    linear-gradient(180deg, rgba(3,14,8,0.38) 0%, rgba(3,14,8,0) 15%),
    linear-gradient(180deg, rgba(4,20,12,0) 66%, rgba(4,20,12,0.58) 86%, rgba(4,20,12,0.94) 100%);
  pointer-events: none;
}
/* Feathered blur confined to the left text zone only */
.hero-blur {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  backdrop-filter: blur(5px) saturate(104%);
  -webkit-backdrop-filter: blur(5px) saturate(104%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 26%, rgba(0,0,0,0) 54%);
          mask-image: linear-gradient(90deg, #000 0%, #000 26%, rgba(0,0,0,0) 54%);
}
.hero .container { position: relative; z-index: 2; }
/* Product line-up resting on the stone podium (see .hero background anchor) */
.hero-products {
  position: absolute;
  z-index: 2;
  left: 72%;
  top: 71%;
  transform: translate(-50%, -100%);
  width: clamp(300px, 30vw, 500px);
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,0.6));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  min-height: 480px;
}
.hero-left { position: relative; z-index: 2; max-width: 640px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(201,166,72,0.06);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-label .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero-title {
  font-size: clamp(48px, 6.4vw, 96px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title .em {
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
}
.hero-desc {
  font-size: 17px;
  color: var(--text-2);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--gold-soft);
  display: grid; place-items: center;
  color: var(--text);
  flex-shrink: 0;
}
.hero-play svg { width: 14px; height: 14px; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 560px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-icon {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: rgba(201,166,72,0.06);
  border: 1px solid var(--gold-hair);
  display: grid; place-items: center;
  color: var(--gold);
}
.trust-icon svg { width: 20px; height: 20px; }
.trust-item .label {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.3;
  font-weight: 500;
}

/* ============================================================
   POWER OF AYURVEDA — stats strip
   ============================================================ */
.section { padding: 100px 0; position: relative; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head .sub { color: var(--text-2); font-size: 17px; max-width: 560px; margin: 0 auto; }

.stats-card {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 48px 20px;
  border-radius: var(--r-xl);
}
.stat {
  text-align: center;
  padding: 8px 24px;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(201,166,72,0.18), rgba(201,166,72,0.02));
  border: 1px solid var(--gold-soft);
  color: var(--gold);
}
.stat-icon svg { width: 24px; height: 24px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
}
.stat-num .u { color: var(--gold); }
.stat-label {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ============================================================
   WELLNESS CATEGORIES
   ============================================================ */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}
.cat {
  padding: 32px 20px 28px;
  border-radius: var(--r-lg);
  text-align: center;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease;
  position: relative;
}
.cat::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, var(--gold-soft), transparent 40%, transparent 60%, var(--gold-soft));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.cat:hover::after { opacity: 1; }
.cat-ico {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(201,166,72,0.15), rgba(201,166,72,0.02));
  border: 1px solid var(--gold-hair);
  color: var(--gold);
  transition: transform .4s ease, box-shadow .4s ease;
}
.cat:hover .cat-ico {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 30px -5px rgba(201,166,72,0.5);
}
.cat-ico svg { width: 28px; height: 28px; }
.cat-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.cat-count {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   BESTSELLERS
   ============================================================ */
.bestsellers-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 50px;
  gap: 40px;
}
.bestsellers-head .left { max-width: 640px; }
.bestsellers-head h2 { margin-top: 12px; }
.tabs {
  display: flex; gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-hair);
}
.tab {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  border: none;
  background: transparent;
  transition: all .3s ease;
  font-family: inherit;
  font-weight: 500;
}
.tab.active {
  background: linear-gradient(135deg, rgba(114,192,67,0.20), rgba(94,173,53,0.12));
  color: var(--text);
  box-shadow: 0 0 0 1px var(--gold-soft) inset;
}
.tab:hover:not(.active) { color: var(--text); }

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  padding: 24px;
  border-radius: var(--r-lg);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
/* Price row hugs the bottom so cards in a row line up regardless of copy length */
.product .product-foot { margin-top: auto; }
.product-media {
  position: relative;
  width: 100%;
  height: 340px;
  border-radius: var(--r);
  overflow: hidden;
  background: radial-gradient(circle at 50% 60%, rgba(201,166,72,0.14), transparent 60%), linear-gradient(180deg, #0a2513, #061a0c);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-hair);
  padding: 16px;
  box-sizing: border-box;
}
.product-photo {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  padding: 0;
  display: block;
  margin: auto;
}
.product-illustration {
  position: relative;
  width: 110px;
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.product-illustration .product-cap {
  width: 54px;
  height: 22px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, #e2c574, #8a6a2e);
  margin-bottom: 4px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.product-illustration .product-vessel {
  width: 100%;
  min-height: 110px;
  border-radius: 18px 18px 24px 24px;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #f5edcf;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  background: linear-gradient(180deg, #5c3a1a, #3d2410);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}
.product-illustration.capsule .product-vessel {
  background: linear-gradient(180deg, #164023, #0a2513);
}
.product-illustration.oil .product-vessel {
  background: linear-gradient(180deg, #0e2f18, #05160b);
}
.product-media .halo {
  position: absolute;
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,130,0.25), transparent 65%);
  filter: blur(15px);
  top: 20%; left: 20%;
}
.product-bottle {
  position: relative;
  width: 100px; height: 160px;
  z-index: 2;
  transition: transform .5s ease;
}
.product:hover .product-bottle { transform: translateY(-6px) scale(1.03); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3;
}
.product-tag.new { background: rgba(114,192,67,0.15); color: var(--primary-2); border: 1px solid rgba(114,192,67,0.35); }
.product-tag.best { background: rgba(201,166,72,0.12); color: var(--gold); border: 1px solid var(--gold-soft); }
.product-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(4,16,9,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-hair);
  display: grid; place-items: center;
  color: var(--text-2);
  cursor: pointer;
  z-index: 3;
  transition: all .3s ease;
}
.product-wishlist:hover { color: #ff8b8b; border-color: rgba(255,139,139,0.4); }
.product-wishlist svg { width: 14px; height: 14px; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 4px;
  line-height: 1.2;
}
.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}
.product:hover .product-name a { color: var(--gold); }
.product-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 14px;
  min-height: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.product-rating {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px;
}
.product-rating .count { color: var(--muted); font-size: 11px; }
/* Grey star row with a gold overlay clipped to the score — gives real half stars */
.stars {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.16);
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
.stars .fill {
  position: absolute;
  left: 0; top: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
  letter-spacing: 1px;
}
.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--text);
  font-weight: 600;
  line-height: 1;
}
.product-price .strike {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}
.product-add {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  color: #041a09;
  display: grid; place-items: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 0 0 1px rgba(201,166,72,0.3) inset;
}
.product-add:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 24px -6px rgba(116,199,62,0.6), 0 0 0 1px rgba(201,166,72,0.5) inset;
}
.product-add svg { width: 18px; height: 18px; }

.products-cta {
  display: flex; justify-content: center;
  margin-top: 50px;
}

/* ============================================================
   SHOP / PRODUCTS PAGE
   ============================================================ */

/* ------------------- Hero ------------------- */
.shop-hero {
  position: relative;
  margin-top: -100px;
  padding: 176px 0 96px;
  overflow: hidden;
  background-image: url('assets/product-header-bg.png');
  background-size: cover;
  background-position: center 55%;
  background-repeat: no-repeat;
}
.shop-hero::before {
  /* Readability scrim: darkest behind the copy, clearing towards the packshot,
     then blending into the page background at the bottom. */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 14, 8, 0.94) 0%, rgba(3, 14, 8, 0.82) 30%, rgba(3, 14, 8, 0.45) 55%, rgba(3, 14, 8, 0.25) 100%),
    linear-gradient(180deg, rgba(3, 14, 8, 0.55) 0%, rgba(3, 14, 8, 0) 22%),
    linear-gradient(180deg, rgba(4, 28, 16, 0) 55%, rgba(4, 28, 16, 0.75) 88%, var(--bg) 100%);
  pointer-events: none;
}
.shop-hero .container { position: relative; z-index: 2; }

.shop-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 380px;
}
.shop-hero-left { max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--text-2); text-decoration: none; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { display: inline-grid; place-items: center; color: var(--gold); opacity: .7; }
.breadcrumb .sep svg { width: 13px; height: 13px; }
.breadcrumb [aria-current] { color: var(--gold); }

.shop-hero-title {
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  margin: 0 0 10px;
}
.shop-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.1vw, 30px);
  color: var(--gold);
  margin: 0 0 22px;
  line-height: 1.2;
}
.shop-hero-desc {
  max-width: 470px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.85;
  margin: 0;
}

.shop-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
}
.shop-hero-visual img {
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.6));
}
/* Gold arc glowing behind the packshot */
.shop-hero-visual .hero-arc {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(520px, 92%);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  border-radius: 50%;
  border: 1px solid rgba(201, 166, 72, 0.55);
  background: radial-gradient(circle at 50% 50%, rgba(201, 166, 72, 0.16), transparent 62%);
  box-shadow: 0 0 60px -10px rgba(201, 166, 72, 0.35);
  pointer-events: none;
}

/* ------------------- Trust strip ------------------- */
.trust-strip-wrap {
  position: relative;
  z-index: 3;
  margin-top: -52px;
  padding-bottom: 10px;
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  padding: 20px 12px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(12, 44, 23, 0.92), rgba(7, 30, 16, 0.94));
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid var(--gold-soft);
  box-shadow: var(--shadow-card);
}
.trust-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 12px;
  position: relative;
}
.trust-cell + .trust-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 12%; bottom: 12%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}
.trust-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--gold);
  background: radial-gradient(circle at 30% 30%, rgba(201, 166, 72, 0.20), rgba(201, 166, 72, 0.03));
  border: 1px solid var(--gold-soft);
}
.trust-ico svg { width: 20px; height: 20px; }
.trust-copy {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.trust-copy strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

/* ------------------- Catalogue layout ------------------- */
.shop-content { padding: 60px 0 90px; }
.shop-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
/* Grid/flex children default to min-width:auto, which lets the scrollable
   category rail push the whole layout wider than the viewport. */
.shop-layout > *,
.shop-sidebar > * { min-width: 0; }

/* Sidebar */
.shop-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 116px;
}
.sidebar-card {
  padding: 22px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gold-hair);
  background: linear-gradient(180deg, rgba(14, 47, 24, 0.55), rgba(8, 33, 17, 0.55));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.sidebar-heading {
  margin: 0 0 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.15;
}
.sidebar-heading.serif-lg { font-size: 28px; margin-bottom: 20px; }

/* Category list — inherits .tabs for the filter JS, so reset the pill chrome */
.category-list {
  display: grid;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}
.category-list .tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  text-align: left;
  color: var(--text-2);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  box-shadow: none;
}
.category-list .tab .chev {
  width: 14px; height: 14px;
  flex-shrink: 0;
  opacity: .55;
  transition: transform .25s ease, opacity .25s ease;
}
.category-list .tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.category-list .tab:hover .chev { transform: translateX(2px); opacity: .9; }
.category-list .tab.active {
  background: linear-gradient(135deg, rgba(114, 192, 67, 0.28), rgba(94, 173, 53, 0.16));
  color: var(--text);
  border-color: var(--gold-soft);
  font-weight: 600;
  box-shadow: 0 8px 20px -10px rgba(116, 199, 62, 0.6);
}
.category-list .tab.active .chev { opacity: 1; }
.category-list .tab .count {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.category-list .tab.active .count { color: rgba(255, 255, 255, 0.75); }

/* Why-choose promo card */
.sidebar-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.sidebar-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-2);
}
.sidebar-features .check {
  width: 18px; height: 18px;
  margin-top: 1px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(114, 192, 67, 0.18);
  border: 1px solid rgba(114, 192, 67, 0.4);
  color: var(--primary-2);
}
.sidebar-features .check svg { width: 9px; height: 9px; }
.promo-media {
  margin-top: 20px;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--gold-hair);
}
.promo-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Main column */
.shop-main { min-width: 0; }
.sort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.results { font-size: 14px; color: var(--text-2); margin: 0; }
.sort-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 6px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--gold-hair);
}
.sort-controls label { font-size: 13px; color: var(--muted); white-space: nowrap; }
.sort-controls select {
  appearance: none;
  -webkit-appearance: none;
  padding: 8px 30px 8px 6px;
  border: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A648' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 6px center;
  background-size: 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
.sort-controls select option { background: #0b2916; color: var(--text); }

/* Product grid — auto-fits inside whatever width the main column has */
.shop-products {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 20px;
}
.shop-products .product { padding: 16px; }
.shop-products .product-media {
  height: 210px;
  margin-bottom: 16px;
  padding: 12px;
}
.shop-products .product-name { font-size: 19px; }

/* Card price footer (also used on the home page grid) */
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}
.price-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  min-width: 0;
}
.product-mrp {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}
.save-badge {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #06210d;
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  white-space: nowrap;
}
.product-rating { margin-top: 4px; }
.product-wishlist.saved { color: #ff8b8b; border-color: rgba(255, 139, 139, 0.45); }
.product-wishlist.saved svg { fill: currentColor; }

/* ------------------- Pagination ------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.page-button {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--gold-hair);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-2);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all .25s ease;
}
.page-button:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--gold-soft);
  background: rgba(201, 166, 72, 0.10);
}
.page-button.active {
  background: linear-gradient(135deg, var(--btn-a), var(--btn-b));
  border-color: transparent;
  color: #06210d;
  font-weight: 700;
  cursor: default;
}
.page-button.page-nav svg { width: 15px; height: 15px; }
.page-button:disabled:not(.active) { opacity: .35; cursor: not-allowed; }

/* ------------------- Service strip ------------------- */
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 70px;
  padding: 24px 12px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(12, 44, 23, 0.75), rgba(7, 30, 16, 0.8));
  border: 1px solid var(--gold-hair);
}
.service-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 4px 14px;
  position: relative;
}
.service-cell + .service-cell::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-soft), transparent);
}
.service-ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(201, 166, 72, 0.08);
  border: 1px solid var(--gold-hair);
}
.service-ico svg { width: 21px; height: 21px; }
.service-copy {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.service-copy strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.detail-page {
  padding: 150px 0 90px;
  position: relative;
}
.detail-page .breadcrumb { margin-bottom: 30px; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.detail-media {
  position: relative;
  border-radius: var(--r-xl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  padding: 40px;
  background: radial-gradient(circle at 50% 55%, rgba(201, 166, 72, 0.16), transparent 62%),
              linear-gradient(180deg, #0a2513, #061a0c);
  border: 1px solid var(--gold-soft);
}
.detail-media img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.detail-media .product-tag { top: 20px; left: 20px; }

.detail-body { padding-top: 6px; }
.detail-body .eyebrow { display: inline-block; margin-bottom: 14px; }
.detail-body h1 {
  font-size: clamp(34px, 3.6vw, 52px);
  margin-bottom: 16px;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.detail-rating .stars { font-size: 16px; }
.detail-rating .count { font-size: 13px; color: var(--muted); }
.detail-summary {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 26px;
}
.detail-price {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-price .product-price { font-size: 40px; }
.detail-price .product-mrp { font-size: 17px; }
.detail-tax { font-size: 12px; margin-top: 6px; }

.detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0;
  flex-wrap: wrap;
}
.detail-wishlist {
  position: static;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.detail-wishlist svg { width: 20px; height: 20px; }

.detail-assurance {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.detail-assurance li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--text-2);
}
.detail-assurance li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(114, 192, 67, 0.8);
}

.detail-about {
  margin-top: 60px;
  padding: 40px;
  border-radius: var(--r-xl);
}
.detail-about h2 { font-size: clamp(26px, 2.4vw, 36px); margin-bottom: 18px; }
.detail-about p { line-height: 1.9; font-size: 15px; }
.detail-note { margin-top: 18px; font-size: 13px; }

.detail-missing {
  padding: 60px 40px;
  border-radius: var(--r-xl);
  text-align: center;
  display: grid;
  gap: 18px;
  justify-items: center;
}

.detail-page .service-strip { margin-top: 60px; }
.related-head { margin: 80px 0 32px; }
.related-head h2 { margin-top: 12px; }
/* Three related picks — fixed columns so they span the full row */
#related-list { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .detail-page { padding: 110px 0 70px; }
  #related-list { grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr)); }
  .detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .detail-media { aspect-ratio: 4 / 3; padding: 26px; }
  .detail-about { padding: 28px 22px; }
  .related-head { margin: 56px 0 26px; }
}
@media (max-width: 560px) {
  .detail-assurance { grid-template-columns: 1fr; }
  .detail-actions .btn { width: 100%; justify-content: center; }
}

/* ------------------- Shop responsive ------------------- */
@media (max-width: 1100px) {
  .shop-layout { grid-template-columns: 1fr; gap: 24px; }
  /* Dissolve the aside so its two cards become direct grid items and can be
     reordered around the product grid. */
  .shop-sidebar { display: contents; }
  /* Categories become a horizontal chip rail above the grid */
  .shop-sidebar .sidebar-card:first-child { order: 1; padding: 16px; }
  .category-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
  }
  .category-list .tab { width: auto; flex: 0 0 auto; white-space: nowrap; }
  .category-list .tab .chev { display: none; }
  /* Promo card drops below the products */
  .shop-main { order: 2; }
  .promo-card { order: 3; }
  .promo-media { aspect-ratio: 21 / 9; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); gap: 12px 4px; }
  .trust-cell:nth-child(4)::before { display: none; }
  .service-strip { grid-template-columns: repeat(2, 1fr); gap: 16px 4px; }
  .service-cell:nth-child(3)::before { display: none; }
}
@media (max-width: 900px) {
  .shop-hero { margin-top: -78px; padding: 120px 0 80px; background-position: center 40%; }
  .shop-hero-grid { grid-template-columns: 1fr; gap: 28px; min-height: 0; }
  .shop-hero-left { max-width: 100%; }
  .shop-hero-desc { max-width: 100%; }
  .shop-hero-visual { min-height: 0; order: 2; }
  .shop-hero-visual img { width: min(340px, 80%); }
  .shop-hero-visual .hero-arc { width: min(380px, 88%); }
  .shop-hero::before {
    background:
      linear-gradient(180deg, rgba(3, 14, 8, 0.9) 0%, rgba(3, 14, 8, 0.72) 45%, rgba(3, 14, 8, 0.55) 70%, var(--bg) 100%);
  }
  .trust-strip-wrap { margin-top: -34px; }
  .shop-content { padding: 44px 0 70px; }
  .shop-products { grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr)); gap: 16px; }
  .sort-row { gap: 12px; }
  .service-strip { margin-top: 50px; }
}
@media (max-width: 620px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); padding: 16px 8px; }
  .trust-cell { justify-content: flex-start; gap: 10px; padding: 8px; }
  .trust-cell::before { display: none !important; }
  .service-strip { grid-template-columns: 1fr; padding: 18px 12px; }
  .service-cell { justify-content: flex-start; }
  .service-cell::before { display: none !important; }
  .sort-row { flex-direction: column; align-items: stretch; }
  .sort-controls { justify-content: space-between; }
  .shop-products { grid-template-columns: 1fr; }
  .shop-products .product-media { height: 260px; }
}

/* ============================================================
   ABOUT / ROOTED IN AYURVEDA
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 60px 100px -30px rgba(0,0,0,0.8), 0 0 0 1px var(--gold-soft) inset;
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4,16,9,0.5));
  pointer-events: none;
}
.about-media .float-tag {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  padding: 20px 24px;
  background: rgba(6,20,12,0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-soft);
  border-radius: 20px;
  z-index: 3;
  display: flex; align-items: center; gap: 16px;
}
.float-tag .ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,166,72,0.25), rgba(201,166,72,0.05));
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-tag .ico svg { width: 22px; height: 22px; }
.float-tag .t { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; color: var(--text); line-height: 1.1; }
.float-tag .s { font-size: 12px; color: var(--muted); margin-top: 2px; }

.about-body h2 { margin-top: 16px; margin-bottom: 22px; }
.about-body h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.about-body p { margin-bottom: 24px; font-size: 16px; color: var(--text-2); }
.about-features { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
.about-features li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text-2);
}
.about-features .check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(114,192,67,0.15);
  color: var(--primary-2);
  display: grid; place-items: center;
  border: 1px solid rgba(114,192,67,0.35);
  flex-shrink: 0;
}
.about-features svg { width: 12px; height: 12px; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.astat {
  padding: 24px 20px;
  border-radius: var(--r);
  text-align: center;
}
.astat .n { font-family: 'Cormorant Garamond', serif; font-size: 40px; color: var(--gold); font-weight: 500; line-height: 1; }
.astat .l { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  padding: 32px 30px;
  border-radius: var(--r-lg);
  position: relative;
}
.testimonial .quote-mark {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
}
.t-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 20px; }
.t-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 28px;
  font-style: italic;
}
.t-person {
  display: flex; align-items: center; gap: 14px;
}
.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-soft);
  overflow: hidden;
  flex-shrink: 0;
  background: #0e2f18;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-avatar.mono {
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
  background: radial-gradient(circle at 30% 28%, rgba(201,166,72,0.30), rgba(20,50,28,0.95));
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.t-name { font-weight: 600; color: var(--text); font-size: 15px; }
.t-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

.testimonials-dots {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 40px;
}
.tdot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); cursor: pointer; transition: all .3s ease; }
.tdot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-wrap { padding: 60px 0 100px; }
.newsletter {
  padding: 60px 60px;
  border-radius: var(--r-xl);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,72,0.15), transparent 60%);
  filter: blur(10px);
  pointer-events: none;
}
.newsletter .corner-leaf {
  position: absolute;
  color: var(--primary);
  opacity: 0.22;
  pointer-events: none;
  line-height: 0;
}
.newsletter .corner-leaf.a { top: -14px; left: -16px; transform: rotate(-12deg); }
.newsletter .corner-leaf.b { bottom: -18px; right: -14px; transform: rotate(168deg); }
.newsletter .corner-leaf svg { width: 96px; height: 96px; }

.newsletter h2 { margin-bottom: 14px; }
.newsletter h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.newsletter p { color: var(--text-2); font-size: 15px; }

.newsletter-form {
  display: flex;
  gap: 8px;
  padding: 6px;
  background: rgba(4,16,9,0.7);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 22px;
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(3,12,7,0.7));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.3fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 20px; max-width: 300px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer h4 {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
}
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-list a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease;
}
.footer-list a:hover { color: var(--gold); }
.footer-contact { display: grid; gap: 14px; font-size: 14px; color: var(--text-2); }
.footer-contact .row { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact .ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(201,166,72,0.08);
  color: var(--gold);
  display: grid; place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--gold-hair);
}
.footer-contact .ico svg { width: 14px; height: 14px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px 24px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.footer-bottom .copy { font-size: 13px; color: var(--muted); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
}
.footer-legal a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s ease;
}
.footer-legal a:hover { color: var(--gold); }
.footer-pay { display: flex; gap: 10px; align-items: center; }
.pay-chip {
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-hair);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-2);
  min-width: 48px;
  text-align: center;
}

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

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  :root { --pad: 40px; }
  .cats-grid { grid-template-columns: repeat(4, 1fr); }
  .stats-card { grid-template-columns: repeat(5, 1fr); padding: 36px 12px; }
  .about-grid { gap: 50px; }
  .header { gap: 24px; }
  .nav { gap: 22px; }
  /* Brand takes its own row so the four link columns stay on one line */
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 44px 30px; }
  .footer-brand { grid-column: span 4; }
  .footer-brand p { max-width: 460px; }
}
@media (max-width: 1024px) {
  /* Inline nav no longer fits — hand over to the hamburger menu */
  .nav { display: none; }
  .nav-toggle { display: grid; }
  .header { grid-template-columns: auto 1fr; }
  .header-actions { justify-content: flex-end; }
}
@media (max-width: 900px) {
  :root { --pad: 24px; }
  .header-wrap { top: 10px; margin-top: 10px; padding: 0 16px; }
  .header { height: 68px; padding: 0 12px 0 18px; gap: 12px; }
  .logo-mark { width: 54px; height: 54px; }
  .hero { margin-top: -78px; padding: 120px 0 50px; min-height: auto; }
  /* The left-zone blur pane would sit on top of the now-in-flow packshot and
     blur the products themselves — a vertical scrim reads better here anyway. */
  .hero-blur { display: none; }
  .hero::before {
    background: linear-gradient(180deg, rgba(3,14,8,0.88) 0%, rgba(3,14,8,0.66) 40%, rgba(3,14,8,0.4) 62%, rgba(4,20,12,0.92) 100%);
  }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: auto; }
  .hero-left { max-width: 100%; }
  .hero-products {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    bottom: auto;
    width: min(340px, 78%);
    margin: 8px auto 0;
    display: block;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,0.5));
  }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .stat + .stat::before { display: none; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .products:not(.shop-products) { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .testimonials-track { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 28px; }
  .newsletter-wrap { padding: 40px 0 70px; }
  .footer { padding-top: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; margin-bottom: 44px; }
  .footer-grid > *:last-child { grid-column: span 2; }
  .footer-brand { grid-column: span 2; }
  .bestsellers-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  :root { --pad: 18px; }
  .header { padding: 0 10px 0 12px; gap: 8px; }
  .hide-sm { display: none; }
  .logo-mark { width: 44px; height: 44px; }
  .logo-name .brand { font-size: 18px; }
  .logo-name .tag { font-size: 8px; letter-spacing: 0.18em; white-space: nowrap; }
  /* The ghost button's side padding made stacked CTAs look mis-indented */
  .hero-desc { margin-bottom: 24px; }
  .hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 32px; }
  .hero-trust { display: grid; grid-template-columns: repeat(auto-fit, minmax(72px, 1fr)); gap: 8px; justify-items: start; }
  .trust-item .label { font-size: 11px; line-height: 1.2; word-break: break-word; }
  .hero-title { font-size: clamp(40px, 12vw, 56px); }
  
  .stats-card { gap: 16px 0; padding: 24px 12px; }
  .stat-icon { width: 36px; height: 36px; margin-bottom: 8px; }
  .stat-icon svg { width: 16px; height: 16px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 10px; letter-spacing: 0.15em; }
  .stat:last-child { grid-column: span 2; }

  .newsletter { padding: 34px 20px; }
  .newsletter-form { flex-direction: column; border-radius: var(--r); padding: 10px; }
  .newsletter-form .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > *:last-child,
  .footer-brand { grid-column: span 1; }
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-legal { justify-content: center; gap: 10px 18px; }
  .footer-pay { flex-wrap: wrap; justify-content: center; gap: 8px; }
}
