/* ============================================================
   Mahbi Botanique — Design System CSS
   Tokens + All component styles
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Forest green */
  --forest-darker: #0F2419;
  --forest-deep:   #1E3A2E;
  --forest-medium: #2D5641;
  --forest-light:  #5C7A63;
  /* Gold */
  --gold-dark:  #A38947;
  --gold:       #C9A961;
  --gold-light: #E8D5A3;
  /* Sage */
  --sage:       #A8BFA0;
  --sage-light: #D4E0CF;
  /* Cream */
  --cream:      #F7F3EB;
  --cream-warm: #EFE7D6;
  --white:      #FFFFFF;
  /* Text */
  --text-dark:  #0F2419;
  --text-muted: #5E6B5F;
  --text-light: #8A9489;
  /* Borders */
  --border:        rgba(15,36,25,.08);
  --border-strong: rgba(15,36,25,.18);
  /* Semantic */
  --brand: var(--forest-deep);
  --accent: var(--gold);
  --surface: var(--white);
  --surface-tinted: var(--cream);
  --surface-warm: var(--cream-warm);
  --danger: #C24444;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-hero:    clamp(3.2rem, 8vw, 6.8rem);
  --fs-h1:      clamp(2.6rem, 5.5vw, 4.4rem);
  --fs-h2:      clamp(2.2rem, 5vw, 3.6rem);
  --fs-h3:      clamp(1.5rem, 3vw, 2.1rem);
  --fs-title:   24px;
  --fs-lg:      18px;
  --fs-body:    16px;
  --fs-sm:      14px;
  --fs-xs:      13px;
  --fs-eyebrow: 11px;

  /* Radii */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* Shadows (forest-tinted) */
  --shadow-sm:    0 2px 8px rgba(15,36,25,.06);
  --shadow:       0 8px 24px rgba(15,36,25,.08);
  --shadow-md:    0 8px 24px rgba(15,36,25,.08);
  --shadow-lg:    0 20px 50px rgba(15,36,25,.12);
  --shadow-hover: 0 24px 60px rgba(30,58,46,.16);
  --shadow-gold:  0 8px 24px rgba(201,169,97,.35);

  /* Spacing */
  --space-1:  4px;  --space-2:  8px;  --space-3:  12px; --space-4:  16px;
  --space-5:  20px; --space-6:  24px; --space-8:  32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-30: 120px;
  --container-max: 1600px;
  --container-pad: 20px;
  --container-pad-lg: 56px;

  /* Motion */
  --ease:        cubic-bezier(.2,.8,.2,1);
  --ease-smooth: cubic-bezier(.4,0,.2,1);
  --dur-fast: .2s;
  --dur:      .3s;
  --dur-slow: .6s;
}

/* ── BASE RESET ──────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; }
input,textarea,select { font-family: inherit; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad-lg); }
.section    { padding: 110px 0; }
.section-sm { padding: 72px 0; }
@media (max-width: 768px) { .container { padding: 0 var(--container-pad); } .section { padding: 72px 0; } }

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: var(--fs-eyebrow); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif); font-size: var(--fs-h2); font-weight: 400;
  letter-spacing: -.02em; line-height: 1.1; color: var(--forest-deep);
}
.section-title em { font-style: italic; color: var(--gold-dark); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: var(--radius-pill); font-size: 14px;
  font-weight: 600; letter-spacing: .04em; text-decoration: none;
  cursor: pointer; border: none; transition: all var(--dur) var(--ease); white-space: nowrap;
}
.btn-gold  { background: var(--gold); color: var(--forest-darker); box-shadow: var(--shadow-gold); }
.btn-gold:hover  { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,169,97,.45); }
.btn-forest { background: var(--forest-deep); color: var(--gold-light); }
.btn-forest:hover { background: var(--forest-medium); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(232,213,163,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(232,213,163,.8); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--forest-deep); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ── ANNOUNCEMENT BAR ────────────────────────────────────── */
.announcement-bar {
  background: var(--forest-darker); color: var(--gold-light);
  text-align: center; padding: 11px 16px; font-size: 12.5px; font-weight: 500;
  letter-spacing: .02em; overflow: hidden; position: relative; min-height: 40px;
}
.ann-msg { display: none; }
.ann-msg.active { display: block; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 500;
  background: rgba(247,243,235,.96); backdrop-filter: blur(14px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-pad-lg); height: 72px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 48px; width: auto; }
/* Logo medallion "M" */
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest-deep); color: var(--gold);
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: -.01em;
  box-shadow: 0 2px 8px rgba(15,36,25,.18);
  transition: background var(--dur-fast) var(--ease);
}
.nav-logo:hover .nav-logo-mark { background: var(--forest-medium); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-text .logo-serif {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600;
  letter-spacing: .01em; color: var(--forest-deep);
  transition: color var(--dur-fast);
}
.nav-logo:hover .logo-serif { color: var(--forest-medium); }
.nav-logo-text .logo-sub {
  font-size: 9px; font-weight: 600; letter-spacing: .32em;
  color: var(--gold-dark); margin-top: 3px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 32px; flex: 1; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-dark); text-decoration: none;
  letter-spacing: .01em; transition: color var(--dur-fast) var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; width: 0;
  height: 1.5px; background: var(--gold); transition: width .25s var(--ease);
}
.nav-links a:hover,.nav-links a.active { color: var(--gold-dark); }
.nav-links a:hover::after,.nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.lang-switch { display: flex; align-items: center; gap: 2px; font-size: 12px; font-weight: 600; }
.lang-btn { background: none; border: none; cursor: pointer; font-size: 12px; font-weight: 600; color: var(--text-muted); padding: 4px 7px; border-radius: 4px; transition: color var(--dur-fast); }
.lang-btn.active { color: var(--forest-deep); }
.lang-sep { color: var(--border-strong); }
.cart-btn {
  display: flex; align-items: center; gap: 8px; background: var(--forest-deep);
  color: var(--gold-light); border: none; border-radius: var(--radius-pill);
  padding: 10px 20px; font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all var(--dur-fast) var(--ease); letter-spacing: .02em;
}
.cart-btn:hover { background: var(--forest-medium); transform: translateY(-1px); }
.cart-btn svg { width: 18px; height: 18px; }
.cart-count {
  background: var(--gold); color: var(--forest-darker); font-size: 10px;
  font-weight: 700; min-width: 18px; height: 18px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
}
.nav-hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--forest-deep); padding: 8px; }
.mobile-menu { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 15px 24px; font-size: 15px; font-weight: 500; color: var(--text-dark); text-decoration: none; border-bottom: 1px solid var(--border); transition: background var(--dur-fast); }
.mobile-menu a:hover { background: var(--cream); color: var(--forest-deep); }
.skip-nav {
  position: absolute; top: -100px; left: 1rem; background: var(--forest-deep);
  color: var(--cream); padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  text-decoration: none; font-size: .85rem; font-weight: 600; z-index: 99999;
  transition: top .2s;
}
.skip-nav:focus { top: 0; }

/* ── HERO + CANVAS PROCESS ───────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; background: var(--forest-darker);
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
@media (max-width: 900px) {
  .hero-canvas { opacity: .45; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,rgba(10,20,14,.82) 0%,rgba(10,20,14,.58) 46%,rgba(10,20,14,.18) 72%,rgba(10,20,14,.04) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: var(--container-max);
  margin: 0 auto; padding: 160px var(--container-pad-lg) 120px;
  min-height: 100vh; display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start;
}
.hero-eyebrow {
  display: inline-block; color: var(--gold-light); font-size: var(--fs-eyebrow);
  font-weight: 600; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 26px;
  padding: 7px 18px; border: 1px solid rgba(232,213,163,.4); border-radius: var(--radius-pill);
}
.hero h1 {
  font-family: var(--font-serif); font-weight: 300; font-size: var(--fs-hero);
  line-height: 1.04; letter-spacing: -.025em; max-width: 900px;
  color: var(--cream); margin: 0 0 26px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-subtitle {
  font-size: clamp(1.05rem,1.8vw,1.28rem); max-width: 600px;
  color: rgba(255,255,255,.9); margin: 0 0 44px; line-height: 1.65; font-weight: 300;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-social-proof {
  display: inline-flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.10); backdrop-filter: blur(12px);
  border: 1px solid rgba(232,213,163,.25); border-radius: var(--radius-pill);
  padding: .5rem 1.1rem .5rem .5rem;
}
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid rgba(255,255,255,.5);
  object-fit: cover; margin-left: -6px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-avatar-plus {
  width: 30px; height: 30px; border-radius: 50%; background: var(--gold);
  color: var(--forest-deep); font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-left: -6px; border: 2px solid rgba(255,255,255,.5);
}
.hero-proof-text .stars { color: var(--gold); font-size: .72rem; letter-spacing: .04em; }
.hero-proof-text .label { color: rgba(255,255,255,.9); font-size: .74rem; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(232,213,163,.5); background: transparent; cursor: pointer; padding: 0; transition: all .25s var(--ease); }
.hero-dot.active { background: var(--gold); border-color: var(--gold); width: 24px; border-radius: 4px; }

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip { background: var(--cream); padding: 26px 0; border-bottom: 1px solid var(--border); }
.trust-inner {
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad-lg);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center;
}
.trust-item { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: .06em; color: var(--forest-deep); text-transform: uppercase; white-space: nowrap; }

/* ── PRODUCT CARDS ───────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.product-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; position: relative; cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-card:hover .quick-add { opacity: 1; transform: translate(-50%,0); }
.product-media { position: relative; overflow: hidden; background: var(--cream); aspect-ratio: 3/4; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.product-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); }
.product-badge.bestseller { background: var(--gold); color: var(--forest-darker); }
.product-badge.new { background: var(--forest-deep); color: var(--gold-light); }
.quick-add {
  position: absolute; bottom: 14px; left: 50%; transform: translate(-50%,10px);
  white-space: nowrap; background: var(--forest-deep); color: var(--gold-light);
  border: none; border-radius: var(--radius-pill); padding: 10px 24px;
  font-size: 13px; font-weight: 600; cursor: pointer; opacity: 0;
  transition: all var(--dur) var(--ease);
}
.quick-add:hover { background: var(--gold); color: var(--forest-darker); }
.product-info { padding: 22px 22px 24px; }
.product-cat { font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.product-name { font-family: var(--font-serif); font-size: var(--fs-title); font-weight: 500; color: var(--forest-deep); margin-bottom: 8px; line-height: 1.2; }
.product-desc { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.product-rating-v2 { display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.product-rating-v2 .stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.product-rating-v2 .rating-count { font-size: 12px; color: var(--text-muted); }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--font-serif); font-size: 22px; font-weight: 500; color: var(--forest-deep); }
.price-cur { font-size: 14px; vertical-align: super; }
.add-cart {
  background: var(--forest-deep); color: var(--gold-light); border: none;
  border-radius: var(--radius-pill); padding: 10px 18px; font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all var(--dur-fast) var(--ease); white-space: nowrap;
}
.add-cart:hover { background: var(--gold); color: var(--forest-darker); }

/* ── FILTER TABS ─────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  background: none; border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill);
  padding: 9px 20px; font-size: 13px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: all var(--dur-fast) var(--ease);
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold-dark); }
.filter-tab.active { background: var(--forest-deep); color: var(--gold-light); border-color: var(--forest-deep); }

/* ── BUNDLE SECTION ──────────────────────────────────────── */
.bundle-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1.05fr 1fr; background: var(--forest-deep); }
.bundle-info { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.bundle-photo { position: relative; min-height: 380px; background-size: cover; background-position: center; }
.bundle-photo::before { content:''; position:absolute; inset:0; background: linear-gradient(90deg,rgba(30,58,46,.55) 0%,rgba(30,58,46,.06) 40%,transparent 100%); }

/* ── BEFORE/AFTER CAROUSEL ───────────────────────────────── */
.ba-section { background: var(--forest-darker); padding: 110px 0; }
.ba-carousel { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.ba-track { display: flex; transition: transform .5s var(--ease); }
.ba-slide { flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ba-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 3/4; }
.ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ba-label { position: absolute; top: 14px; left: 14px; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--forest-darker); background: var(--gold); padding: 5px 12px; border-radius: var(--radius-pill); }
.ba-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 44px; height: 44px; border-radius: 50%; background: rgba(15,36,25,.78); border: 2px solid var(--gold); color: var(--gold); cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(30,58,46,.30); transition: all .2s; backdrop-filter: blur(6px); }
.ba-nav:hover { background: var(--gold); color: var(--forest-deep); }
.ba-prev { left: 14px; }
.ba-next { right: 14px; }
.ba-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.ba-dot { width: 11px; height: 11px; border-radius: 50%; border: 2px solid var(--gold); background: transparent; cursor: pointer; padding: 0; transition: all .25s; }
.ba-dot.active { background: var(--gold); }

/* ── INGREDIENTS ─────────────────────────────────────────── */
.ingredients-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 36px; }
.ingredient-card { text-align: center; }
.ingredient-img { width: 120px; height: 120px; border-radius: 50%; object-fit: contain; margin: 0 auto 18px; background: var(--cream); border: 3px solid var(--border); display: block; padding: 8px; }
.ingredient-name { font-family: var(--font-serif); font-size: 20px; font-weight: 500; color: var(--forest-deep); margin-bottom: 4px; }
.ingredient-latin { font-size: 13px; font-style: italic; color: var(--gold-dark); margin-bottom: 10px; }
.ingredient-benefit { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.55; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.testi-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-quote { font-size: 15px; line-height: 1.7; color: var(--text-dark); margin-bottom: 20px; font-style: italic; }
.testi-footer { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: var(--cream); border: 2px solid var(--border); flex-shrink: 0; }
.testi-name { font-weight: 600; font-size: var(--fs-sm); color: var(--forest-deep); }
.testi-location { font-size: 12px; color: var(--text-muted); }
.testi-product { font-size: 12px; color: var(--gold-dark); font-weight: 500; margin-top: 2px; }

/* ── PROMISES (dark bg) ──────────────────────────────────── */
.promises-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.promise-item { text-align: center; padding: 0 8px; }
.promise-icon { width: 62px; height: 62px; border-radius: 50%; border: 1.5px solid rgba(232,213,163,.45); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--gold-light); }
.promise-title { font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: var(--cream); margin-bottom: 8px; }
.promise-text { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.55; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.how-step { background: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.how-num { font-family: var(--font-serif); font-size: 44px; font-weight: 500; color: var(--gold); line-height: 1; margin-bottom: 16px; }
.how-title { font-family: var(--font-serif); font-size: 19px; font-weight: 500; color: var(--forest-deep); margin-bottom: 10px; }
.how-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.nl-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto 14px; flex-wrap: wrap; align-items: flex-start; justify-content: center; }
.nl-email { flex: 1; min-width: 220px; padding: 15px 24px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); font-size: 14px; color: var(--text-dark); background: var(--white); outline: none; transition: border-color var(--dur-fast); }
.nl-email:focus { border-color: var(--gold); }
.nl-email::placeholder { color: var(--text-light); }
.casl-row { display: flex; align-items: flex-start; gap: 10px; max-width: 480px; margin: 0 auto 20px; text-align: left; }
.casl-row input[type=checkbox] { margin-top: 3px; flex-shrink: 0; accent-color: var(--forest-deep); width: 16px; height: 16px; cursor: pointer; }
.casl-row label { font-size: 12px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }

/* ── PULL QUOTE ──────────────────────────────────────────── */
.pull-quote { border-left: 4px solid var(--gold); padding: 24px 32px; background: var(--cream); border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
.pull-quote blockquote { font-family: var(--font-serif); font-size: clamp(1.4rem,3vw,2rem); font-weight: 300; font-style: italic; color: var(--forest-deep); line-height: 1.4; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--forest-darker); color: rgba(255,255,255,.75); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .logo-serif { font-family: var(--font-serif); font-size: 22px; font-weight: 600; letter-spacing: .04em; color: var(--cream); display: block; }
.footer-brand .logo-sub { font-size: 9px; font-weight: 600; letter-spacing: .42em; color: var(--gold-light); margin-top: 3px; text-transform: uppercase; display: block; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.65; margin-top: 16px; max-width: 280px; }
.footer-heading { font-size: var(--fs-eyebrow); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 20px; display: block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.65); text-decoration: none; transition: color var(--dur-fast); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-line { font-size: 13px; color: rgba(255,255,255,.65); line-height: 2.2; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,.45); text-decoration: none; }
.footer-legal-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.4); }

/* ── CART DRAWER ─────────────────────────────────────────── */
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item-img { width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius); background: var(--cream); flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: 14px; color: var(--forest-deep); margin-bottom: 4px; }
.cart-item-price { font-size: 13px; color: var(--text-muted); }
.cart-item-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty-btn { background: none; border: 1px solid var(--border-strong); border-radius: 50%; width: 28px; height: 28px; font-size: 16px; cursor: pointer; color: var(--forest-deep); display: flex; align-items: center; justify-content: center; transition: all var(--dur-fast); line-height: 1; }
.cart-qty-btn:hover { background: var(--forest-deep); color: var(--gold-light); border-color: var(--forest-deep); }
.cart-item-remove { background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 18px; margin-left: auto; padding: 4px; transition: color var(--dur-fast); }
.cart-item-remove:hover { color: var(--danger); }

/* ── COOKIE BANNER ───────────────────────────────────────── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--forest-deep);
  color: var(--cream); padding: 20px 32px; display: flex; align-items: center;
  gap: 16px; flex-wrap: wrap; z-index: 9999;
  box-shadow: 0 -4px 24px rgba(15,36,25,.3);
  transform: translateY(100%); transition: transform .4s var(--ease);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { flex: 1; font-size: 13px; line-height: 1.6; min-width: 200px; color: rgba(255,255,255,.85); }
#cookie-banner a { color: var(--gold-light); text-decoration: underline; }
#cookie-banner button { padding: 10px 20px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; cursor: pointer; border: none; transition: all var(--dur-fast); }
#cookie-ess { background: rgba(255,255,255,.15); color: var(--cream); }
#cookie-ess:hover { background: rgba(255,255,255,.25); }
#cookie-all { background: var(--gold); color: var(--forest-darker); }
#cookie-all:hover { background: var(--gold-dark); }
#cookie-close { background: none; color: var(--text-light); font-size: 20px; padding: 4px 10px; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── PRODUCT DETAIL ──────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: start; }
.product-main-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); aspect-ratio: 4/5; box-shadow: var(--shadow-md); cursor: zoom-in; }
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); display: block; }
.product-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 14px; }
.product-thumb { border-radius: var(--radius); overflow: hidden; border: 2px solid transparent; transition: border-color .2s; aspect-ratio: 1; background: var(--cream); cursor: pointer; }
.product-thumb.active { border-color: var(--gold); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-buy-sticky { position: sticky; top: 96px; }
.product-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.product-tab { background: none; border: none; padding: 12px 24px; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--dur-fast); }
.product-tab.active { color: var(--forest-deep); border-bottom-color: var(--gold); }
.product-tab-panel { display: none; font-size: 14.5px; line-height: 1.7; color: var(--text-muted); }
.product-tab-panel.active { display: block; }
.qty-selector { display: inline-flex; align-items: center; border: 1.5px solid var(--border-strong); border-radius: var(--radius-pill); overflow: hidden; background: var(--white); }
.qty-btn { width: 48px; height: 54px; border: none; background: transparent; font-size: 20px; color: var(--forest-deep); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast); }
.qty-btn:hover { background: var(--cream); }
.qty-val { min-width: 36px; text-align: center; font-size: 16px; font-weight: 600; color: var(--forest-deep); }

/* ── REVIEWS ─────────────────────────────────────────────── */
.rating-summary-box { display: flex; align-items: center; gap: 16px; background: var(--cream); border-radius: var(--radius-lg); padding: 18px 26px; margin-bottom: 32px; }
.rating-big { font-family: var(--font-serif); font-size: 44px; font-weight: 500; color: var(--forest-deep); line-height: 1; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; }
.review-stars { color: var(--gold); margin-bottom: 8px; }
.review-text { font-size: 14px; line-height: 1.65; color: var(--text-dark); margin-bottom: 12px; }
.review-meta { display: flex; align-items: center; justify-content: space-between; }
.review-author { font-size: 13px; font-weight: 600; color: var(--forest-deep); }
.review-date { font-size: 12px; color: var(--text-light); }
.star-selector { display: flex; flex-direction: row-reverse; gap: 4px; margin-bottom: 14px; }
.star-selector input { display: none; }
.star-selector label { font-size: 28px; color: rgba(0,0,0,.18); cursor: pointer; transition: color .15s; line-height: 1; }
.star-selector input:checked ~ label,
.star-selector label:hover,
.star-selector label:hover ~ label { color: var(--gold); }
.review-form-box { background: var(--cream); border-radius: var(--radius-lg); padding: 28px; margin-top: 32px; }
.rv-input,.rv-textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border-strong); border-radius: var(--radius); font-size: 14px; font-family: var(--font-sans); background: var(--white); color: var(--text-dark); outline: none; margin-bottom: 14px; transition: border-color var(--dur-fast); }
.rv-input:focus,.rv-textarea:focus { border-color: var(--gold); }
.rv-textarea { min-height: 100px; resize: vertical; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 4px; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--forest-deep); text-align: left; transition: color var(--dur-fast); }
.faq-q:hover { color: var(--gold-dark); }
.faq-icon { font-size: 24px; font-weight: 300; color: var(--gold-dark); line-height: 1; transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s var(--ease), opacity .25s; opacity: 0; }
.faq-item.open .faq-a { max-height: 400px; opacity: 1; }
.faq-a-inner { padding: 0 4px 24px; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }

/* ── SHOP BANNER ─────────────────────────────────────────── */
.shop-banner { background: var(--forest-deep); position: relative; overflow: hidden; }
.shop-banner-bg { position: absolute; inset: 0; opacity: .14; background-size: cover; background-position: center; }
.shop-banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(30,58,46,.78),rgba(20,40,30,.92)); }
.shop-banner-content { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto; padding: 84px var(--container-pad-lg); text-align: center; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-input,.form-textarea,.form-select { width: 100%; padding: 14px 18px; border: 1.5px solid var(--border-strong); border-radius: var(--radius); font-size: 14px; font-family: var(--font-sans); background: var(--white); color: var(--text-dark); outline: none; transition: border-color var(--dur-fast); }
.form-input:focus,.form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.founder-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.founder-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── PANIER / CART PAGE ──────────────────────────────────── */
.cart-page-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.order-summary-box { background: var(--cream); border-radius: var(--radius-lg); padding: 32px; position: sticky; top: 96px; }

/* ── BREADCRUMB ──────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color var(--dur-fast); }
.breadcrumb a:hover { color: var(--gold-dark); }

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-content h2 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--forest-deep); margin: 2rem 0 1rem; }
.legal-content h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--forest-deep); margin: 1.5rem 0 .75rem; }
.legal-content p,.legal-content li { font-size: 14.5px; line-height: 1.75; color: var(--text-muted); margin-bottom: .75rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--forest-medium); text-decoration: underline; }

/* ── COUNTER SECTION ─────────────────────────────────────── */
.counter-grid { display: grid; grid-template-columns: repeat(3,1fr); background: var(--border); gap: 1px; border-radius: var(--radius-lg); overflow: hidden; }
.counter-item { background: var(--white); padding: 40px 24px; text-align: center; }
.counter-num { font-family: var(--font-serif); font-size: clamp(2rem,5vw,3.5rem); font-weight: 500; color: var(--forest-deep); line-height: 1; }
.counter-label { font-size: var(--fs-sm); color: var(--text-muted); margin-top: 6px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .promises-grid { grid-template-columns: repeat(2,1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .cart-page-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .bundle-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero-content { padding: 100px 24px; min-height: 560px; }
  .hero { min-height: 560px; }
  .ba-slide { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .promises-grid { grid-template-columns: repeat(2,1fr); }
  .counter-grid { grid-template-columns: 1fr; }
  .trust-inner { justify-content: center; gap: 20px; }
  .bundle-info { padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .shop-banner-content { padding: 60px 24px; }
  .ba-carousel { border-radius: var(--radius); }
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem,8vw,3rem); }
  .ingredients-grid { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .nav-inner { padding: 0 16px; height: 60px; }
  .container { padding: 0 16px; }
  .footer-legal-links { flex-direction: column; gap: 8px; }
}
/* ── NEWSLETTER INNER ────────────────────────────────────── */
.newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; padding: 0 var(--container-pad); }
