/* ═══════════════════════════════════════════════════════════════
   NATURIQ ELITE — Luxury Deep Navy + Warm Gold Design System
   Premium Indian biotech skincare. Midnight depth, gold warmth.
═══════════════════════════════════════════════════════════════ */

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

:root {
  /* ── Primary: Deep Navy ── */
  --purple:        #1A2744;   /* midnight navy — primary brand */
  --purple-dark:   #0D1A2E;   /* deepest navy */
  --purple-hover:  #243560;   /* navy hover */
  --purple-light:  #EEF0F6;   /* barely-there lavender-grey */
  --purple-pale:   #F6F7FA;   /* lightest bg */
  --purple-mid:    #C8CCDC;   /* muted border */

  /* ── Gold Accent ── */
  --gold:          #C9A96E;   /* warm brushed gold — CTAs, highlights */
  --gold-dark:     #A8854A;   /* deep gold hover */
  --gold-light:    #F5EDD8;   /* pale gold tint */
  --gold-glow:     rgba(201,169,110,0.25);

  /* ── Neutrals ── */
  --white:         #FFFFFF;
  --off-white:     #FAF9F7;   /* warm ivory — body bg */
  --light-grey:    #F0EDE8;   /* warm light section bg */
  --border:        #E2DDD6;   /* warm border */
  --border-mid:    #C8C0B4;   /* mid border */

  /* ── Text ── */
  --dark:          #0D1A2E;   /* near-black navy */
  --mid:           #4A5568;   /* medium grey-navy */
  --light:         #8892A0;   /* muted text */
  --lighter:       #B0B8C4;   /* very muted */

  /* ── Deep Navy (brand dark tone — interior page heroes, footer; matches nav/announcement bar) ── */
  --charcoal:       #0D1A2E;
  --charcoal-mid:   #16263F;
  --charcoal-border: rgba(255,255,255,0.08);

  /* ── Functional ── */
  --orange:        #C9A96E;   /* reuse gold for star/badge accents */
  --green:         #2E7D52;   /* discount green */
  --teal:          #C9A96E;   /* badge: gold */

  /* ── Typography ── */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:    'DM Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* ── Shape ── */
  --radius:        10px;
  --radius-sm:     6px;
  --radius-lg:     18px;
  --radius-pill:   50px;

  /* ── Layout ── */
  --container:     1280px;
  --gutter:        32px;
  --section-v:     88px;

  /* ── Shadows ── */
  --shadow-sm:     0 2px 12px rgba(13,26,46,0.08);
  --shadow-md:     0 6px 28px rgba(13,26,46,0.13);
  --shadow-lg:     0 12px 48px rgba(13,26,46,0.18);
  --shadow-gold:   0 4px 20px rgba(201,169,110,0.30);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { display: block; max-width: 100%; }
p { line-height: 1.72; }

/* ── Headings use Playfair Display ── */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.18; }
h1 { font-size: clamp(36px, 5vw, 68px); }
h2 { font-size: clamp(26px, 3vw, 40px); }
h3 { font-size: clamp(18px, 2vw, 24px); }

/* ── Gold button — primary action ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  font-size: 14px; font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,169,110,0.45); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ══════════════════════════════════════════════════════════════
   CURSOR
══════════════════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed; pointer-events: none;
  border-radius: 50%; z-index: 10000;
  transition: opacity 0.3s, transform 0.15s;
}
.cursor-dot  { width: 6px; height: 6px; background: var(--gold); transform: translate(-50%,-50%); }
.cursor-ring { width: 28px; height: 28px; border: 1.5px solid rgba(201,169,110,0.5); transform: translate(-50%,-50%); }

/* ══════════════════════════════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════════════════════════════ */
.page-loader {
  position: fixed; inset: 0;
  background: var(--purple-pale);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
/* Loader logo — pure black on pale ice background */
.loader-logo img {
  height: 68px; width: auto;
  filter: brightness(0);
}
.loader-logo {
  display: flex; align-items: center; justify-content: center;
}
.loader-logo .logo-wrap { align-items: center; gap: 5px; }
.loader-logo .logo-tagline {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--purple);
  font-style: italic;
}
.loader-logo .logo-tm { font-size: 13px; color: var(--dark); margin-top: 5px; }

/* Footer logo variants */
.logo-tm--footer { color: rgba(255,255,255,0.55); }
.logo-tagline--footer {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  letter-spacing: 0.14em;
}
.loader-bar {
  width: 140px; height: 3px;
  background: var(--purple-mid);
  margin: 22px auto 0;
  border-radius: 2px;
  overflow: hidden;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: var(--purple);
  border-radius: 2px;
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }
.loader-text {
  margin-top: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: var(--dark);
  padding: 9px 0;
  overflow: hidden;
}
.announce-marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 55s linear infinite;
}
.announce-marquee span {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.80);
  font-family: var(--sans);
}
.ticker-dot { color: var(--gold) !important; opacity: 1; }
.ticker-dot {
  display: inline-block;
  color: rgba(255,255,255,0.45);
  margin: 0 1.2em;
  font-size: 8px;
  vertical-align: middle;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 500;
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(21,101,192,0.12); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* ── Logo Wrapper — shared across nav, loader, footer ── */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.logo-img-row {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.logo-tm {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-left: 2px;
  margin-top: 4px;
  font-family: var(--sans);
  opacity: 0.75;
}

.logo-tagline {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: var(--mid);
  font-style: italic;
  font-family: var(--sans);
  white-space: nowrap;
  line-height: 1;
  padding-left: 1px;
}

/* Nav logo — pure black, original colour */
.nav-logo img {
  height: 48px; width: auto;
  filter: brightness(0);
}
.nav-logo .logo-wrap { gap: 2px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  font-family: var(--sans);
  color: var(--mid);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-link:hover { background: var(--gold-light); color: var(--dark); }
.nav-link.active { color: var(--gold-dark); font-weight: 600; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  border: none; background: transparent;
  font-family: var(--sans);
}
.nav-icon-btn:hover { background: var(--gold-light); color: var(--dark); }
.nav-cart-btn {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.2s, transform 0.15s;
  border: none; cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.nav-cart-btn:hover { background: var(--purple-hover); transform: translateY(-1px); }
/* Icon-only WhatsApp affordance — secondary to the single primary CTA */
.nav-whatsapp-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: #25D366;
  border: 1.5px solid rgba(37,211,102,0.35);
  transition: background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.nav-whatsapp-btn:hover { background: rgba(37,211,102,0.08); border-color: #25D366; }
.nav-whatsapp-btn svg { width: 18px; height: 18px; }

.nav-cart-count {
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; justify-content: center;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: var(--radius-sm);
}
.nav-hamburger span {
  display: block; height: 2px; width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Cart Toast ── */
.cart-toast {
  position: fixed; top: 88px; right: 24px; z-index: 9998;
  background: var(--dark);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
}
.cart-toast.show { opacity: 1; transform: translateY(0); }
.cart-toast svg { color: var(--gold); flex-shrink: 0; }
.nav-progress {
  height: 3px;
  background: var(--purple);
  width: 0%;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════════════════════════════
   AMBIENT CANVAS
══════════════════════════════════════════════════════════════ */
#ambientCanvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.35;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-banner {
  width: 100%; height: 560px;
  position: relative;
  background: linear-gradient(135deg, var(--purple-pale) 0%, #C9E8FF 100%);
  overflow: hidden;
}
.hero-banner-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
/* Subtle frame + bottom fade so the photo reads as composed, not pasted-in */
.hero-banner::before {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  pointer-events: none;
  z-index: 2;
}
.hero-banner::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 38%;
  background: linear-gradient(to bottom, transparent 0%, rgba(13,26,46,0.55) 75%, var(--charcoal) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Text band beneath the photo — no overlay, no overlap, ever */
.hero-text-band {
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201,169,110,0.10) 0%, transparent 60%),
    var(--charcoal);
  padding: 56px 72px 64px;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-banner-text { max-width: 640px; text-align: center; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 22px;
}
.hero-tag::before, .hero-tag::after {
  content: "";
  width: 28px; height: 1px;
  background: rgba(201,169,110,0.5);
}
.hero-headline {
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 700;
  line-height: 1.22;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; font-weight: 600; color: var(--gold-light); }
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 34px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-cta-wrap { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 30px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  border: none; cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(201,169,110,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.02em;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.85); }

/* kept for any remaining references */
.btn-purple {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: #fff;
  padding: 14px 30px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  font-family: var(--sans);
  transition: background 0.22s, transform 0.15s, box-shadow 0.22s;
  box-shadow: var(--shadow-gold);
}
.btn-purple:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* Trust bar */
.trust-bar {
  background: var(--purple-pale);
  border-bottom: 1px solid var(--purple-mid);
}
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: stretch;
}
.trust-item {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 16px 12px;
  border-right: 1px solid var(--purple-mid);
  font-size: 12px;
  font-weight: 600;
  color: var(--purple-dark);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-item svg { color: var(--purple); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   MARQUEE STRIP
══════════════════════════════════════════════════════════════ */
.brand-strip {
  background: var(--gold-light);
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: 12px 0;
  overflow: hidden;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeScroll 50s linear infinite;
}
.marquee-track span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: var(--sans);
}

/* ══════════════════════════════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════════════════════════════ */
.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
  display: block; margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600; line-height: 1.18;
  color: var(--dark); margin-bottom: 12px;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--gold-dark); }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO — interior-page identity band (Knowledge Center,
   product, about, rituals, etc.). True charcoal, not navy —
   matches the brand's real dark-mode reference tone.
══════════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--charcoal);
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(201,169,110,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; max-width: 760px; }
.page-hero .section-label { color: var(--gold); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.16;
  color: #fff;
  margin-top: 4px;
}
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--gold-light); }
.page-hero p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
}
@media (max-width: 768px) {
  .page-hero { padding: 72px 0 44px; }
}

.section-sub {
  font-size: 16px; color: var(--mid);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════════════════════════ */
.categories {
  padding: var(--section-v) 0;
}
.categories-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}
.section-head {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-head h2 {
  font-size: 22px; font-weight: 700; color: var(--dark);
}
.section-head a {
  font-size: 13px; font-weight: 700;
  color: var(--purple);
  display: flex; align-items: center; gap: 5px;
}
.section-head a:hover { text-decoration: underline; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.cat-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  aspect-ratio: 3/4;
  background: var(--dark);
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }
.cat-img-wrap {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.72);
}
.cat-card:hover .cat-img-wrap img { filter: brightness(0.55); }
.cat-card h3 {
  position: absolute; bottom: 36px; left: 0; right: 0;
  font-size: 15px; font-weight: 600;
  font-family: var(--display);
  color: #fff; text-align: center;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  z-index: 1;
}
.cat-card p {
  position: absolute; bottom: 16px; left: 0; right: 0;
  font-size: 11px; font-weight: 600;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.12em; text-transform: uppercase;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID
══════════════════════════════════════════════════════════════ */
.collections {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.collections-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--light-grey);
  overflow: hidden;
}
.product-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-image-wrap img { transform: scale(1.06); }

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #E8F4FE, #C5DCF5);
}
.product-numeral { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--purple); font-weight: 600; }
.product-glyph { font-size: 28px; color: var(--purple-mid); }

.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
}
.badge-new     { background: var(--purple); }
.badge-limited { background: #c0392b; }
.badge-sale    { background: var(--orange); }
.badge-bestseller { background: var(--teal); }

.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  transition: color 0.2s, background 0.2s;
  font-size: 15px;
}
.product-wishlist:hover { color: #e74c3c; background: #fff; }

.product-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}
.product-card:hover .product-overlay { opacity: 1; transform: translateY(0); }
.product-add-btn {
  width: 100%;
  background: var(--purple);
  color: #fff;
  border: none; border-radius: var(--radius);
  padding: 11px;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
}
.product-add-btn:hover { background: var(--purple-hover); }

.product-info { padding: 14px 16px 18px; }
.product-category {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--purple); display: block; margin-bottom: 5px;
}
.product-name { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.35; }
.product-size { font-size: 12px; color: var(--light); margin-bottom: 8px; }
.product-rating {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; color: var(--mid); margin-bottom: 10px;
}
.product-rating-stars { color: var(--orange); letter-spacing: 1px; font-size: 13px; }

.product-footer { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.product-price { font-size: 18px; font-weight: 700; color: var(--dark); font-family: var(--display); }
.product-price-mrp { font-size: 13px; color: var(--lighter); text-decoration: line-through; }
.product-discount { font-size: 11px; font-weight: 700; color: var(--green); background: rgba(46,125,82,0.1); padding: 2px 8px; border-radius: var(--radius-pill); }

.collection-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   FEATURE BANNER (hero-style inline banner)
══════════════════════════════════════════════════════════════ */
.feature-banner {
  margin: var(--section-v) 0;
}
.feature-banner-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.feature-banner-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex; align-items: flex-end;
  cursor: pointer;
}
.feature-banner-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.feature-banner-card:hover img { transform: scale(1.04); }
.fb-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,12,22,0.92) 0%, rgba(8,12,22,0.55) 45%, rgba(8,12,22,0.05) 80%);
}
.fb-content {
  position: relative; z-index: 1;
  padding: 28px;
}
.fb-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.fb-title {
  font-size: 22px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
  line-height: 1.25;
}
.fb-sub { font-size: 13px; color: rgba(255,255,255,0.78); margin-bottom: 16px; }
.fb-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: var(--purple);
  font-size: 12px; font-weight: 700;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.fb-link:hover { background: var(--purple-light); }

/* ══════════════════════════════════════════════════════════════
   CRAFT / SCIENCE
══════════════════════════════════════════════════════════════ */
.craft {
  padding: var(--section-v) 0;
  background: var(--light-grey);
}
.craft-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}
.craft-header { text-align: center; margin-bottom: 48px; }
.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.craft-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--purple-mid);
  transition: transform 0.25s, box-shadow 0.25s;
}
.craft-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.craft-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
  color: var(--purple);
}
.craft-number { font-size: 11px; font-weight: 700; color: var(--purple); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.craft-item h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.craft-item p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   PILLARS / WHY US
══════════════════════════════════════════════════════════════ */
.pillars {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.pillars-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pillar {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar:hover { border-color: var(--purple-mid); box-shadow: var(--shadow-sm); }
.pillar-icon-wrap {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.pillar-icon { font-size: 22px; color: var(--purple); }
.pillar h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pillar p  { font-size: 13px; color: var(--mid); }

/* ══════════════════════════════════════════════════════════════
   MANIFESTO / ABOUT
══════════════════════════════════════════════════════════════ */
.manifesto {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.manifesto-split {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.manifesto-headline {
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 700; line-height: 1.2;
  color: var(--dark); margin-bottom: 28px;
}
.manifesto-headline em { font-style: italic; font-weight: 300; color: var(--purple); }

.manifesto-story-block {
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 2px solid var(--purple-mid);
}
.manifesto-chapter {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.manifesto-p {
  font-size: 15px; color: var(--mid);
  line-height: 1.78; margin-bottom: 10px;
}
.manifesto-p:last-child { margin-bottom: 0; }
.manifesto-p em { font-style: italic; color: var(--dark); }
.manifesto-sign {
  font-size: 14px;
  color: var(--purple);
  margin-top: 6px;
  padding-left: 0;
  border-left: none;
}
.manifesto-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-grey);
  box-shadow: var(--shadow-lg);
}
.manifesto-img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════════════════════
   INGREDIENTS / PROVENANCE
══════════════════════════════════════════════════════════════ */
.provenance {
  padding: var(--section-v) 0;
}
.provenance-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}
.provenance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .provenance-grid { grid-template-columns: repeat(2, 1fr); }
}
.prov-card {
  background: var(--purple-pale);
  border: 1px solid var(--purple-mid);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.prov-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prov-region {
  font-size: 14px; font-weight: 700;
  color: var(--purple); margin-bottom: 8px; display: block;
}
.prov-material { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ══════════════════════════════════════════════════════════════
   REVIEWS / PRESS
══════════════════════════════════════════════════════════════ */
.press {
  padding: var(--section-v) 0;
  background: var(--purple-pale);
}
.press-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  text-align: center;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.press-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: left;
  border: 1px solid var(--purple-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}
.press-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.press-stars { color: var(--orange); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.press-quote {
  font-size: 14px; line-height: 1.68;
  color: var(--dark); margin-bottom: 18px;
  font-style: italic;
}
.press-author {
  display: flex; align-items: center; gap: 10px;
}
.press-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--purple);
}
.press-author-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.press-author-info span   { font-size: 11px; color: var(--light); }
.press-pub { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--purple); display: block; margin-bottom: 10px; }

/* ══════════════════════════════════════════════════════════════
   OUR PHILOSOPHY
══════════════════════════════════════════════════════════════ */
.philosophy {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.philosophy-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}
.philosophy-header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.philosophy-tagline {
  font-size: 16px;
  color: var(--purple);
  font-weight: 600;
  margin-top: 8px;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.philosophy-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s;
}
.philosophy-item:hover { border-color: var(--purple-mid); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.philosophy-item h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.philosophy-item p  { font-size: 13px; color: var(--mid); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════════
   WHAT WE STAND FOR
══════════════════════════════════════════════════════════════ */
.standfor {
  padding: var(--section-v) 0;
  background: var(--light-grey);
}
.standfor-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.standfor-text .section-title em { font-style: italic; font-weight: 300; color: var(--purple); }
.standfor-list {
  list-style: none;
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.standfor-list li {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--purple-mid);
}
.standfor-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--light-grey);
  box-shadow: var(--shadow-lg);
}
.standfor-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95) saturate(1.05); }

@media (max-width: 1100px) {
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .philosophy-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .standfor-inner   { grid-template-columns: 1fr; gap: 36px; }
}

/* ══════════════════════════════════════════════════════════════
   QUOTE BANNER
══════════════════════════════════════════════════════════════ */
.quote-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0A2A6E 0%, #1565C0 50%, #1E88E5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
  font-size: 220px; color: rgba(255,255,255,0.04);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}
.quote-inner {
  max-width: 680px;
  margin: 0 auto; padding: 0 var(--gutter);
  position: relative;
}
.quote-inner blockquote {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400; font-style: italic;
  line-height: 1.45; color: #fff;
  margin-bottom: 20px;
}
.quote-inner cite {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   ATELIER
══════════════════════════════════════════════════════════════ */
.atelier {
  padding: var(--section-v) 0;
}
.atelier-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.atelier-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700; line-height: 1.2;
  color: var(--dark); margin: 10px 0 18px;
}
.atelier-title em { font-style: italic; font-weight: 300; color: var(--purple); }
.atelier-body, .atelier-note {
  font-size: 15px; color: var(--mid); line-height: 1.7; margin-bottom: 14px;
}
.atelier-note { font-size: 13px; color: var(--purple); font-weight: 600; margin-bottom: 26px; }
.atelier-card {
  background: var(--purple-pale);
  border: 1px solid var(--purple-mid);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.atelier-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 22px; padding-bottom: 16px;
  border-bottom: 1px solid var(--purple-mid);
}
.atelier-step {
  display: flex; gap: 14px;
  font-size: 14px; color: var(--mid);
  padding: 13px 0; border-bottom: 1px solid var(--purple-mid);
  line-height: 1.5;
}
.atelier-step:last-of-type { border-bottom: none; }
.atelier-step span {
  font-size: 11px; font-weight: 700;
  color: var(--purple); min-width: 22px;
  background: var(--purple-light);
  height: 22px; width: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.atelier-card-footer {
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--purple-mid);
  font-size: 16px; font-weight: 700; color: var(--purple);
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER
══════════════════════════════════════════════════════════════ */
.correspondence {
  padding: var(--section-v) 0;
  background: var(--purple-pale);
  text-align: center;
}
.correspondence-inner {
  max-width: 580px;
  margin: 0 auto; padding: 0 var(--gutter);
}
.correspondence-title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; line-height: 1.25;
  color: var(--dark); margin: 10px 0 12px;
}
.correspondence-title em { font-style: italic; font-weight: 300; color: var(--purple); }
.correspondence-sub {
  font-size: 14px; color: var(--mid);
  line-height: 1.65; margin-bottom: 30px;
}
.correspondence-form {
  display: flex; gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(21,101,192,0.18);
}
.corr-input {
  flex: 1; padding: 14px 18px;
  font-size: 14px; font-family: var(--sans);
  color: var(--dark); background: var(--white);
  border: none; outline: none;
}
.corr-input::placeholder { color: var(--lighter); }
.corr-submit {
  background: var(--gold); color: #fff;
  border: none; padding: 14px 28px;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer; font-family: var(--sans);
  white-space: nowrap;
  transition: background 0.2s;
}
.corr-submit:hover { background: var(--gold-dark); }
.correspondence-note {
  font-size: 12px; color: var(--light);
  margin-top: 14px;
}

/* ══════════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════════ */
.faq-section {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.faq-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
}
.faq-inner .section-title { margin-bottom: 36px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item:hover { border-color: var(--purple-mid); box-shadow: var(--shadow-sm); }
.faq-item h3 {
  font-size: 15px; font-weight: 700;
  color: var(--dark); margin-bottom: 10px;
  line-height: 1.35;
}
.faq-item p {
  font-size: 14px; color: var(--mid);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  border-top: 1px solid var(--charcoal-border);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.5;
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px var(--gutter) 56px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
}
.footer-logo {
  height: 44px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.footer-brand .footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 14.5px;
  color: rgba(255,255,255,0.50);
  margin-bottom: 13px;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover { color: #fff; transform: translateX(2px); }

.footer-divider {
  border-top: 1px solid var(--charcoal-border);
  max-width: var(--container); margin: 0 auto;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto; padding: 24px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.30); }
.footer-legal { display: flex; gap: 16px; align-items: center; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.40); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold-light); }
.footer-legal span { color: rgba(255,255,255,0.15); }

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 56px var(--gutter) 40px; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT DETAIL — editorial gallery + info layout for
   individual product pages (face wash, serum, sunscreen).
══════════════════════════════════════════════════════════════ */
.product-detail {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.product-detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-content: start;
}
.product-detail-gallery .pd-img {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-detail-gallery .pd-img.pd-img-hero { grid-column: 1 / -1; aspect-ratio: 5/4; }
.product-detail-gallery .pd-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-img-placeholder {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  text-align: center;
  padding: 24px;
}
.product-detail-info { padding-top: 8px; }
.product-detail-info .section-label { color: var(--gold-dark); }
.product-detail-info h1 {
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 600;
  color: var(--dark);
  margin: 6px 0 14px;
  line-height: 1.2;
}
.pd-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.pd-rating .stars { color: var(--gold); letter-spacing: 1px; }
.pd-rating .count { font-size: 13px; color: var(--mid); }
.pd-price { font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 22px; }
.pd-desc { font-size: 15px; line-height: 1.7; color: var(--mid); margin-bottom: 24px; }
.pd-actives {
  list-style: none;
  margin: 0 0 28px;
  padding: 18px 20px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pd-actives li { font-size: 14px; color: var(--dark); padding: 6px 0; }
.pd-actives li strong { color: var(--gold-dark); }
.pd-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; padding: 48px var(--gutter); }
}

/* ══════════════════════════════════════════════════════════════
   SITE FOOTER — interior pages (Knowledge Center, rituals,
   about, the-science). Charcoal to match .page-hero tone.
══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.72);
  margin-top: 80px;
}
.site-footer .footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.site-footer .footer-brand .logo-tagline--footer { color: rgba(255,255,255,0.45); }
.site-footer .footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  max-width: 280px;
}
.site-footer .footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
}
.site-footer .footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.site-footer .footer-col a:hover { color: var(--gold-light); }
.site-footer .footer-bottom {
  border-top: 1px solid var(--charcoal-border);
  padding: 20px var(--gutter);
}
.site-footer .footer-bottom p {
  max-width: var(--container);
  margin: 0 auto;
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  text-align: center;
}
@media (max-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 48px var(--gutter) 32px; }
}
@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale, .fade-in-anim {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left  { transform: translateX(-22px); }
.reveal-right { transform: translateX(22px); }
.reveal-scale { transform: scale(0.97); }
.fade-in-anim { transform: translateY(14px); }

.reveal-up.visible, .reveal-left.visible,
.reveal-right.visible, .reveal-scale.visible,
.fade-in-anim.visible { opacity: 1; transform: none; }

.product-reveal, .craft-reveal, .pillar-anim,
.press-anim, .prov-anim, .step-anim {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease calc(var(--d,0s)), transform 0.5s ease calc(var(--d,0s));
}
.product-reveal.visible, .craft-reveal.visible,
.pillar-anim.visible, .press-anim.visible,
.prov-anim.visible, .step-anim.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-grid  { grid-template-columns: repeat(3, 1fr); }
  .cat-grid      { grid-template-columns: repeat(4, 1fr); }
  .cat-grid--3   { grid-template-columns: repeat(3, 1fr); }
  .craft-grid    { grid-template-columns: repeat(2, 1fr); }
  .pillars-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    flex-direction: column; gap: 0;
    padding: 8px 0 16px;
    box-shadow: var(--shadow-md);
    z-index: 499;
  }
  .nav-links.nav-links--open { display: flex; }
  .nav-link { padding: 12px 24px; border-radius: 0; font-size: 15px; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; --gutter: 16px; }
  .nav-inner        { height: 62px; }
  .hero-banner      { height: 420px; }
  .hero-text-band   { padding: 36px 24px 40px; }
  .product-grid     { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-grid         { grid-template-columns: repeat(3, 1fr); }
  .cat-grid--3      { grid-template-columns: 1fr; max-width: 320px; }
  .craft-grid       { grid-template-columns: 1fr; }
  .pillars-inner    { grid-template-columns: repeat(2, 1fr); }
  .press-grid       { grid-template-columns: 1fr; }
  .manifesto-split  { grid-template-columns: 1fr; gap: 36px; }
  .atelier-inner    { grid-template-columns: 1fr; gap: 36px; }
  .feature-banner-inner { grid-template-columns: 1fr; }
  .provenance-grid  { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-cols  { grid-template-columns: 1fr 1fr; }
  .footer-bottom    { flex-direction: column; gap: 12px; text-align: center; }
  .trust-bar-inner  { flex-wrap: wrap; }
  .trust-item       { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--purple-mid); }
  .correspondence-form { flex-direction: column; border-radius: var(--radius); }
  .corr-submit      { border-radius: 0 0 var(--radius) var(--radius); }
}

/* ══════════════════════════════════════════════════════════════
   HERO — Girl model image
══════════════════════════════════════════════════════════════ */
.hero-girl-img {
  object-position: 38% 12%;
  filter: brightness(0.97) saturate(1.06);
}
/* Keep product image variant classes for feature banners etc */
.hero-product-img {
  object-position: center 30%;
  filter: brightness(0.92) saturate(1.08);
}
.hero-overlay-product {
  background: linear-gradient(
    105deg,
    rgba(5, 25, 65, 0.82) 0%,
    rgba(10, 40, 100, 0.45) 50%,
    rgba(0, 0, 0, 0.08) 100%
  ) !important;
}

/* ── Floating product badge on hero ── */
.hero-product-badge {
  position: absolute;
  bottom: 40px; right: 56px;
  background: rgba(13,26,46,0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-lg);
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 3px;
  min-width: 190px;
  max-width: 230px;
  z-index: 2;
}
.hpb-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 2px;
}
.hpb-name {
  font-size: 14px; font-weight: 700; color: #fff; line-height: 1.25;
}
.hpb-detail {
  font-size: 11px; color: rgba(255,255,255,0.62);
}
.hpb-price {
  font-size: 17px; font-weight: 700; color: #fff;
  margin-top: 4px;
}

/* Mobile: badge stays on the photo but tucks into the corner, smaller */
@media (max-width: 768px) {
  .hero-product-badge {
    bottom: 16px; right: 16px;
    min-width: 0; max-width: 170px;
    padding: 12px 16px;
  }
  .hpb-name { font-size: 13px; }
  .hpb-price { font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════════
   PRODUCT GRID — Real Images
══════════════════════════════════════════════════════════════ */
.product-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 1280px) {
  .product-grid--5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-grid--5 { grid-template-columns: repeat(2, 1fr); }
}

/* Real product images — clean, full, no awkward crops */
.product-real-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .product-real-img { transform: scale(1.06); }

/* Category card images */
.cat-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }

/* ══════════════════════════════════════════════════════════════
   PRODUCT SHOWCASE — images shown whole, never cropped awkwardly
══════════════════════════════════════════════════════════════ */
.showcase {
  padding: var(--section-v) 0;
  background: #060F22;
}
.showcase-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex; flex-direction: column; gap: 40px;
}
.showcase-header {
  text-align: center;
}
.showcase-header .section-label { color: rgba(255,255,255,.35); }
.showcase-header .section-title { color: #fff; margin-bottom: 10px; }
.showcase-header .section-title em { color: var(--purple-mid); font-weight: 300; }
.showcase-header .section-sub { color: rgba(255,255,255,.45); margin-bottom: 0; }

/* Full 6-mood image — shown completely, no crop, rounded corners */
.showcase-full {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}
.showcase-full img {
  width: 100%;
  height: auto;          /* natural aspect ratio — no squash, no crop */
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.showcase-full:hover img { transform: scale(1.015); }
.showcase-full-cta {
  position: absolute;
  bottom: 28px; right: 28px;
}

/* Bottom split: lifestyle image + info side by side */
.showcase-split {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 40px;
  align-items: center;
}
.showcase-lifestyle {
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}
.showcase-lifestyle img {
  width: 100%;
  height: auto;          /* show the full 2×2 grid without any crop */
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}
.showcase-lifestyle:hover img { transform: scale(1.015); }

.showcase-info {
  padding: 24px 16px 24px 8px;
}
.showcase-info-title {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 700; color: #fff;
  line-height: 1.2; margin: 10px 0 16px;
}
.showcase-info-sub {
  font-size: 14px; color: rgba(255,255,255,.55);
  line-height: 1.75; margin-bottom: 24px;
}
.showcase-moods {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px;
}
.showcase-mood-pill {
  font-size: 11px; font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
}
.showcase-price-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}

@media (max-width: 768px) {
  .showcase-split { grid-template-columns: 1fr; }
  .showcase-full-cta { bottom: 16px; right: 16px; }
}

/* ══════════════════════════════════════════════════════════════
   HERO — clean photo band, no text overlay; caption band below
══════════════════════════════════════════════════════════════ */
.hero-banner { height: 72vh; min-height: 480px; max-height: 680px; }
.hero-girl-img { object-position: 38% 10%; }
.hero-headline { font-family: var(--display) !important; font-size: clamp(30px, 4vw, 50px) !important; line-height: 1.2 !important; }
.hero-sub { letter-spacing: 0.02em; }
@media (max-width: 1024px) { .hero-banner { height: 56vh; min-height: 420px; } }
@media (max-width: 768px)  { .hero-banner { height: 340px; min-height: 0; } .hero-girl-img { object-position: 34% 8%; } }

/* ══════════════════════════════════════════════════════════════
   CINEMATIC QUOTE SECTION — dark model full bleed
══════════════════════════════════════════════════════════════ */
.quote-section--model {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 440px;
  display: flex; align-items: center;
  background: radial-gradient(circle at 75% 30%, rgba(201,169,110,0.08) 0%, transparent 55%), var(--charcoal);
}
.quote-inner--model {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px var(--gutter);
  display: flex;
  align-items: center;
}
.quote-model-left {
  max-width: 560px;
}
.quote-inner--model blockquote {
  font-family: var(--display);
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.28;
  color: #fff;
  margin-bottom: 20px;
  text-align: left;
}
.quote-inner--model blockquote em {
  font-style: italic;
  color: var(--gold);
}
.quote-inner--model cite {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  font-style: normal;
  text-align: left;
  margin-bottom: 40px;
}

/* Stats row */
.quote-model-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
}
.qms-item {
  flex: 1;
  display: flex; flex-direction: column; gap: 5px;
}
.qms-num {
  font-size: 26px; font-weight: 700; color: var(--gold); line-height: 1; font-family: var(--display);
}
.qms-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.qms-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.12);
  margin: 0 32px;
}

@media (max-width: 768px) {
  .quote-section--model { min-height: 420px; }
  .quote-inner--model { padding: 60px var(--gutter); }
  .quote-inner--model blockquote { font-size: 22px; }
  .qms-divider { margin: 0 16px; }
  .qms-num { font-size: 20px; }
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS — Split layout with hero-model.png
══════════════════════════════════════════════════════════════ */
.press--split {
  display: grid;
  grid-template-columns: 480px 1fr;
  min-height: 640px;
  padding: 0;
  background: var(--light-grey);
}

/* Left panel — sticky model image */
.press-model-panel {
  position: relative;
  overflow: hidden;
  background: #0A1628;
}
.press-model-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 40% 5%;
  display: block;
  transition: transform 8s ease;
}
.press--split:hover .press-model-img { transform: scale(1.05); }

.press-model-panel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(6, 15, 34, 0.80) 0%,
    rgba(6, 15, 34, 0.15) 55%,
    transparent 100%
  );
}
.press-model-tag {
  position: absolute; bottom: 32px; left: 28px; right: 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.press-model-rating {
  font-size: 18px; letter-spacing: 3px;
  color: var(--teal);
}
.press-model-tagline {
  font-size: 20px; font-weight: 700;
  color: #fff; line-height: 1.3;
}

/* Right panel — reviews */
.press-content-panel {
  padding: 64px 56px;
  background: var(--light-grey);
  display: flex; flex-direction: column; justify-content: center;
}
.press-content-panel .section-title { text-align: left; margin-bottom: 6px; }
.press-content-panel .section-sub   { text-align: left; }

.press-grid--col1 {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 28px;
}
.press-grid--col1 .press-item {
  border-radius: var(--radius-lg);
}

@media (max-width: 1100px) {
  .press--split { grid-template-columns: 340px 1fr; }
}
@media (max-width: 768px) {
  .press--split { grid-template-columns: 1fr; }
  .press-model-panel { height: 340px; }
  .press-content-panel { padding: 40px var(--gutter); }
}

/* ══════════════════════════════════════════════════════════════
   AUDIT FIX BATCH — Panel 2 & 3 remaining issues
══════════════════════════════════════════════════════════════ */

/* Hero tag — shorten and prevent wrap */
.hero-tag {
  max-width: 340px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 10px;
  letter-spacing: 0.14em;
}
@media (max-width: 768px) {
  .hero-tag { max-width: 260px; font-size: 9px; }
}


/* Story body text — increase to 15px */
.manifesto-p { font-size: 15px; }
.manifesto-chapter { font-size: 11px; }

/* FAQ section label */
.faq-section .section-title { margin-top: 8px; }

/* Rituals teaser featured card — gold instead of purple */
.ritual-teaser-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.ritual-teaser-card:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.ritual-teaser-num {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: rgba(255,255,255,0.22);
  flex-shrink: 0;
  line-height: 1;
}
.ritual-teaser-body { flex: 1; min-width: 0; }
.ritual-teaser-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.ritual-teaser-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.ritual-teaser-body p {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.ritual-teaser-price { display: flex; align-items: center; gap: 10px; }
.ritual-teaser-price-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
}
.ritual-teaser-price-save {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold);
  padding: 3px 9px;
  border-radius: 20px;
}
.ritual-teaser-arrow {
  font-size: 18px;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: color 0.25s, transform 0.25s;
}
.ritual-teaser-card:hover .ritual-teaser-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

.ritual-teaser-card--featured {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}
.ritual-teaser-card--featured:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}
.ritual-teaser-card--featured .ritual-teaser-num,
.ritual-teaser-card--featured .ritual-teaser-tag { color: rgba(13,10,5,0.55); }
.ritual-teaser-card--featured .ritual-teaser-body h3 { color: var(--charcoal); }
.ritual-teaser-card--featured .ritual-teaser-body p { color: rgba(13,10,5,0.65); }
.ritual-teaser-card--featured .ritual-teaser-price-val { color: var(--charcoal); }
.ritual-teaser-card--featured .ritual-teaser-price-save { background: var(--charcoal); color: var(--gold-light); }
.ritual-teaser-card--featured .ritual-teaser-arrow { color: rgba(13,10,5,0.45); }
.ritual-teaser-card--featured:hover .ritual-teaser-arrow { color: var(--charcoal); }

/* Ingredient provenance section — warm bg to match page */
.provenance { background: var(--off-white); }
.prov-card {
  background: var(--white);
  border: 1px solid var(--border);
}
.prov-region { color: var(--gold-dark); }

/* Craft cards — warm bg */
.craft-item { border-color: var(--border); }
.craft-number { color: var(--gold); }
.craft-icon { background: var(--gold-light); }

/* Pillar icon wrap — gold tint */
.pillar-icon-wrap { background: var(--gold-light); }

/* Nav hamburger — only visible below 900px (prevent flash on desktop) */
@media (min-width: 901px) {
  .nav-hamburger { display: none !important; }
  .nav-links { display: flex !important; position: static; box-shadow: none; border: none; padding: 0; flex-direction: row; }
}

/* Footer — remove any excess bottom space from inline styles */
.footer { padding-bottom: 0; }

/* Rituals teaser section label colour */
.rituals-teaser { padding: 88px 0; background: var(--charcoal); }
.rituals-teaser-head { text-align: center; margin-bottom: 48px; }
.rituals-teaser-head .section-label { color: var(--gold) !important; }
.rituals-teaser-head .section-title { color: #fff; font-family: var(--display); margin-bottom: 16px; }
.rituals-teaser-head .section-title em { color: var(--gold-light); }
.rituals-teaser-head .section-sub { color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; }
.rituals-teaser-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
.ritual-teaser-body h3 { font-family: var(--display); }
.ritual-teaser-price-val { font-family: var(--display); }

.rituals-teaser-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.rituals-teaser-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.rituals-teaser-wa svg { color: #25D366; flex-shrink: 0; }
.rituals-teaser-wa:hover { color: #fff; }

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

/* FAQ gold label above heading */
.faq-section .section-label { display: block; margin-bottom: 10px; }
.faq-section { background: var(--off-white); }
.faq-section > .container > h2 {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
}
.faq-item { background: var(--white); }
.faq-item h3 { font-family: var(--display); font-size: 16px; }
.faq-item:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); }

/* ══════════════════════════════════════════
   KNOWLEDGE CENTER — Topic Grid & Pillar Pages
══════════════════════════════════════════ */
.topic-grid-section {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.topic-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.topic-card-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.topic-card h2 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.topic-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}
@media (max-width: 980px) {
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .topic-grid { grid-template-columns: 1fr; }
}

/* Pillar page (topic detail) layout */
.pillar-direct-answer {
  background: var(--purple-light);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 28px;
  margin: 28px 0 36px;
}
.pillar-direct-answer p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--dark);
  margin: 0;
}
.pillar-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.pillar-body h2 {
  font-family: var(--display);
  font-size: 26px;
  color: var(--dark);
  margin: 44px 0 16px;
}
.pillar-body h3 {
  font-family: var(--display);
  font-size: 19px;
  color: var(--dark);
  margin: 30px 0 12px;
}
.pillar-body p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 16px;
}
.pillar-body ul, .pillar-body ol {
  margin: 0 0 20px 22px;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--mid);
}
.pillar-body li { margin-bottom: 8px; }
.pillar-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-family: var(--sans);
  font-size: 14px;
}
.pillar-body th, .pillar-body td {
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  color: var(--mid);
}
.pillar-body th {
  background: var(--purple-light);
  color: var(--dark);
  font-weight: 700;
}
.pillar-related {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin: 40px 0;
}
.pillar-related h3 {
  margin-top: 0;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-dark);
}
.pillar-related ul { margin-left: 0; list-style: none; }
.pillar-related li { margin-bottom: 10px; }
.pillar-related a {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid var(--border-mid);
}
.pillar-related a:hover { color: var(--gold-dark); border-color: var(--gold); }
.pillar-crosslinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}
.pillar-crosslinks a {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-light);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pillar-crosslinks a:hover { background: var(--gold); color: var(--white); }
.pillar-breadcrumb {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--light);
  padding: 18px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.pillar-breadcrumb a { color: var(--mid); text-decoration: none; }

/* ══════════════════════════════════════════════════════════════
   SKIN CONCERNS PAGE
══════════════════════════════════════════════════════════════ */
.concern-block { padding: 72px 0; }
.concern-block--alt { background: var(--off-white); }
.concern-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.concern-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.concern-text h2 {
  font-family: var(--display);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 18px;
}
.concern-text > p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 22px;
}
.concern-text h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin: 26px 0 12px;
}
.concern-text ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.concern-text ul li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.concern-text ul li:last-child { border-bottom: none; }
.concern-text ul li strong { color: var(--dark); font-weight: 600; }

.concern-product { position: sticky; top: 100px; }
.recommended-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 12px;
}
.concern-product-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.concern-product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.concern-product-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--off-white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}
.concern-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.concern-product-card h4 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.concern-product-card p {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 14px;
}
.concern-price {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
}

.concern-block h2 { font-family: var(--display); font-size: clamp(24px, 2.6vw, 30px); color: var(--dark); margin-bottom: 16px; }
.concern-block > .container > p { font-size: 15.5px; line-height: 1.75; color: var(--mid); max-width: 760px; margin-bottom: 36px; }
.concern-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.concern-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.concern-mini-card h4 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.concern-mini-card p { font-size: 13.5px; line-height: 1.65; color: var(--mid); }

@media (max-width: 900px) {
  .concern-split { grid-template-columns: 1fr; gap: 32px; }
  .concern-product { position: static; max-width: 320px; }
  .concern-grid-3 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   INGREDIENTS PAGE
══════════════════════════════════════════════════════════════ */
.ingredients-section { padding: 72px 0; }
.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.ingredient-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.ingredient-header { margin-bottom: 20px; }
.ingredient-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-light);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.ingredient-header h2 {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.ingredient-aka {
  display: block;
  font-size: 13px;
  font-style: italic;
  color: var(--light);
}
.ingredient-specs {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 4px 20px;
  margin-bottom: 24px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.spec-row:last-child { border-bottom: none; }
.spec-row span { color: var(--light); flex-shrink: 0; }
.spec-row strong { color: var(--dark); font-weight: 600; text-align: right; }
.ingredient-body h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin: 20px 0 10px;
}
.ingredient-body h3:first-child { margin-top: 0; }
.ingredient-body ul { list-style: none; margin: 0 0 18px; padding: 0; }
.ingredient-body ul li {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--mid);
  padding: 8px 0 8px 20px;
  position: relative;
}
.ingredient-body ul li::before {
  content: "";
  position: absolute; left: 0; top: 17px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.ingredient-body > p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--mid);
}

@media (max-width: 768px) {
  .ingredient-card { padding: 28px 24px; }
  .spec-row { flex-direction: column; gap: 4px; }
  .spec-row strong { text-align: left; }
}
.pillar-breadcrumb a:hover { color: var(--gold-dark); }
