/*
 Theme Name:   Capilux
 Theme URI:    https://capilux.com
 Author:       Capilux
 Author URI:   https://capilux.com
 Description:  Capilux — Advanced Scalp Wellness Technology Store with WooCommerce
 Version:      1.0.0
 Requires at least: 6.0
 Tested up to: 6.7
 WooCommerce:  8.0
 License:      Proprietary
 Text Domain:  capilux
*/

/* =========================================
   CAPILUX — style.css
   ========================================= */

/* ── Variables ── */
:root {
  --black:      #080808;
  --dark:       #111111;
  --dark2:      #1a1a1a;
  --mid:        #444444;
  --muted:      #888888;
  --border:     #e6e6e6;
  --bg-warm:    #f8f6f3;
  --white:      #ffffff;

  --gold:       #c9a96e;
  --gold-light: #dbbf8a;
  --gold-dark:  #a8883a;
  --gold-bg:    #faf6ee;

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  --sh-sm: 0 2px 10px rgba(0,0,0,.06);
  --sh-md: 0 8px 32px rgba(0,0,0,.09);
  --sh-lg: 0 24px 64px rgba(0,0,0,.11);
  --sh-gold: 0 8px 28px rgba(201,169,110,.22);

  --ease: cubic-bezier(.4,0,.2,1);
  --trans: all .32s var(--ease);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; direction: ltr; }

/* Prevent WordPress from expanding inline SVG icons to full width */
.fda-notice svg,
.ftc-notice svg,
.checkout-health-notice svg,
.trust-item__icon svg,
.step__icon svg,
.benefit__tick svg,
.testi-verified svg,
.faq-icon svg,
.cta-banner__note svg,
.product__guarantee svg,
.cart-drawer__close svg,
.nav__logo-icon svg,
.social-btn svg,
.footer__age-notice svg {
  max-width: none;
}
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  direction: ltr;
  text-align: left;
  unicode-bidi: isolate;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Layout ── */
.wrap       { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.wrap--sm   { max-width: 740px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 112px 0; }
.section--alt { background: var(--bg-warm); }
.section--dark { background: var(--black); color: var(--white); }

/* ── Type ── */
.overline {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold);
}
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.12; letter-spacing: -.025em;
}
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.18; letter-spacing: -.02em;
}
.h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600; line-height: 1.25;
}
.lead { font-size: 1.08rem; line-height: 1.72; color: var(--mid); }

/* ── Divider ── */
.divider {
  width: 40px; height: 2px;
  background: var(--gold); margin: 18px auto 32px;
}
.divider--left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 34px; border-radius: 60px;
  font-size: .83rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  transition: var(--trans); white-space: nowrap; cursor: pointer;
}
.btn-dark  { background: var(--black); color: var(--white); border: 2px solid var(--black); }
.btn-dark:hover  { background: var(--dark2); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.btn-gold  { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-gold:hover  { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--sh-gold); }
.btn-ghost { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-ghost-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.4); }
.btn-ghost-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Scroll reveal ── */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════
   SPLASH
═══════════════════════════════════ */
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: var(--black);
  transition: opacity .75s var(--ease), visibility .75s var(--ease);
}
.splash--out { opacity: 0; visibility: hidden; }
.splash__inner {
  display: flex; flex-direction: column; align-items: center;
  animation: splashIn .8s var(--ease) forwards; opacity: 0;
}
@keyframes splashIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.splash__mark {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.28);
  background: rgba(201,169,110,.07);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  animation: markPulse 2.2s ease-in-out infinite;
}
@keyframes markPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,169,110,.14); }
  50%      { box-shadow: 0 0 0 16px rgba(201,169,110,0); }
}
.splash__mark svg { width: 32px; height: 32px; }
.splash__brand {
  font-family: var(--font-serif);
  font-size: 2.8rem; font-weight: 700;
  color: var(--white); letter-spacing: -.02em;
  line-height: 1; margin-bottom: 8px;
}
.splash__sub {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 36px;
}
.splash__track {
  width: 100px; height: 1px;
  background: rgba(255,255,255,.1); overflow: hidden;
}
.splash__fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  animation: trackFill 2.2s var(--ease) .3s forwards;
}
@keyframes trackFill { from { width: 0% } to { width: 100% } }

/* ═══════════════════════════════════
   NAV
═══════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
.nav__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  height: 70px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.nav__logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-serif); font-size: 1.45rem;
  font-weight: 700; color: var(--white); letter-spacing: -.01em;
  flex-shrink: 0; transition: color .2s;
}
.nav.scrolled .nav__logo { color: var(--black); }
.nav__logo-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.35);
  display: flex; align-items: center; justify-content: center;
}
.nav__logo-icon svg { width: 16px; height: 16px; }
.nav__links {
  display: flex; align-items: center; gap: 32px;
}
.nav__links a {
  font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color .2s; letter-spacing: .02em;
}
.nav.scrolled .nav__links a { color: var(--mid); }
.nav__links a:hover, .nav.scrolled .nav__links a:hover { color: var(--black); }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__cta .btn { padding: 11px 24px; font-size: .78rem; }

/* Hamburger */
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--trans);
}
.nav.scrolled .nav__burger span { background: var(--black); }

/* Mobile menu */
.nav__mobile {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px 28px;
  flex-direction: column; gap: 18px;
  box-shadow: var(--sh-md); z-index: 898;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: .95rem; font-weight: 500; color: var(--mid); padding: 6px 0; }
.nav__mobile a:hover { color: var(--black); }
.nav__mobile .btn { align-self: flex-start; margin-top: 6px; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
  display: flex; align-items: center;
  padding-top: 70px; position: relative; overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 55% at 68% 38%, rgba(200,70,50,.16) 0%, transparent 60%),
    radial-gradient(ellipse 35% 55% at 85% 75%, rgba(201,169,110,.10) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 12% 18%, rgba(255,60,40,.06) 0%, transparent 50%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1120px; margin: 0 auto;
  padding: 88px 28px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,110,.1);
  border: 1px solid rgba(201,169,110,.25);
  border-radius: 60px; padding: 6px 14px;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  font-weight: 700; line-height: 1.13;
  letter-spacing: -.025em; margin-bottom: 22px;
}
.hero__title em { font-style: normal; color: var(--gold); }
.hero__proof {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 22px; flex-wrap: wrap;
}
.hero__stars { display: flex; gap: 2px; }
.hero__stars svg { width: 15px; height: 15px; }
.hero__proof-text { font-size: .82rem; color: rgba(255,255,255,.5); }
.hero__proof-score { font-weight: 700; color: var(--white); font-size: .88rem; }
.hero__sub {
  font-size: 1.05rem; line-height: 1.72;
  color: rgba(255,255,255,.6); margin-bottom: 40px; max-width: 460px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero__stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 36px;
}
.hero__stat { flex: 1; text-align: center; padding: 0 16px; }
.hero__stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.09); }
.hero__stat-n {
  font-family: var(--font-serif); font-size: 1.8rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.hero__stat-l { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 5px; }
.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__ring {
  width: 400px; max-width: 100%; aspect-ratio: 1;
  border-radius: 50%; position: relative;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, #1e0a08 0%, #0a0808 100%);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 100px rgba(200,60,40,.18), inset 0 1px 0 rgba(255,255,255,.06);
}
.hero__ring::before {
  content: ''; position: absolute; inset: 20px;
  border-radius: 50%; border: 1px solid rgba(201,169,110,.14);
}
.hero__ring::after {
  content: ''; position: absolute; inset: 38px;
  border-radius: 50%; border: 1px dashed rgba(201,169,110,.08);
}
.hero__ring-glow {
  position: absolute; inset: -50px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,60,40,.18) 0%, transparent 65%);
  border-radius: 50%;
}
.cap-svg { width: 250px; height: 200px; position: relative; z-index: 2; }
.chip {
  position: absolute;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 11px 15px;
  display: flex; align-items: center; gap: 10px;
  animation: chipFloat 4s ease-in-out infinite;
}
.chip:nth-child(2) { animation-delay: 1.6s; }
.chip:nth-child(3) { animation-delay: 3.2s; }
.chip--tl { top: 12%; right: -8%; }
.chip--bl { bottom: 18%; left: -6%; }
.chip--tr { top: 52%; right: -14%; }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.chip__icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(201,169,110,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.chip__label { font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.9); }
.chip__sub   { font-size: .66rem; color: rgba(255,255,255,.4); margin-top: 1px; }

/* ═══════════════════════════════════
   IDENT BLOCK
═══════════════════════════════════ */
.ident-block {
  background: var(--black); color: var(--white);
  padding: 80px 0;
}
.ident-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 56px; align-items: start;
}
.ident-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.35;
}
.ident-p { font-size: .95rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.ident-p--muted { color: rgba(255,255,255,.38); margin-top: 10px; }
.ident-solution p { font-size: .88rem; color: rgba(255,255,255,.48); line-height: 1.78; }
.ident-cta-line { margin-top: 14px; color: rgba(255,255,255,.6) !important; }
.ident-cta-line strong { color: var(--white); }

/* ═══════════════════════════════════
   TRUST / BENEFITS BAR
═══════════════════════════════════ */
.trust-bar {
  background: var(--gold-bg);
  border-top: 1px solid rgba(201,169,110,.18);
  border-bottom: 1px solid rgba(201,169,110,.18);
  padding: 28px 28px;
}
.trust-bar__grid {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item__icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); border: 1px solid rgba(201,169,110,.28);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-sm);
}
.trust-item__icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.trust-item__title { font-size: .84rem; font-weight: 600; line-height: 1.3; }
.trust-item__sub { font-size: .72rem; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════
   SECTION HEADER
═══════════════════════════════════ */
.sec-head { text-align: center; margin-bottom: 72px; }
.sec-head .h1 { margin-bottom: 18px; }
.sec-head p { max-width: 540px; margin: 0 auto; font-size: 1.02rem; line-height: 1.72; color: var(--mid); }
.section--dark .sec-head p { color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 34px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}
.step { text-align: center; padding: 0 8px; }
.step__icon {
  width: 68px; height: 68px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px; position: relative; z-index: 1;
  box-shadow: var(--sh-sm); transition: var(--trans);
}
.step:hover .step__icon { border-color: var(--gold); box-shadow: var(--sh-gold); transform: translateY(-4px); }
.step__icon svg { width: 26px; height: 26px; color: var(--gold); }
.step__num {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--black); color: var(--white);
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step__title { font-weight: 700; font-size: .95rem; margin-bottom: 10px; }
.step__body { font-size: .85rem; color: var(--mid); line-height: 1.65; }
.science-note {
  margin-top: 64px; padding: 44px 52px;
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.science-note__title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; }
.science-note__body  { font-size: .9rem; color: var(--mid); line-height: 1.72; max-width: 540px; }
.science-note__stat  { text-align: center; white-space: nowrap; }
.science-note__n { font-family: var(--font-serif); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.science-note__l { font-size: .75rem; color: var(--muted); margin-top: 5px; max-width: 110px; }

/* ═══════════════════════════════════
   PRODUCT
═══════════════════════════════════ */
.product__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: center;
}
.product__frame {
  aspect-ratio: 1; border-radius: var(--r-xl);
  background: linear-gradient(135deg, #1c1c1c 0%, #121212 100%);
  border: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product__frame::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 75% 60% at 50% 25%, rgba(200,70,45,.12) 0%, transparent 60%);
}
.product__badge-tag {
  position: absolute; top: 22px; right: 22px;
  background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 7px 13px; border-radius: 60px;
}
.product__info-chip {
  position: absolute; bottom: 22px; left: 22px;
  background: rgba(255,255,255,.06); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md); padding: 13px 16px;
}
.product__info-chip-label { font-size: .68rem; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; }
.product__info-chip-val { font-size: .95rem; font-weight: 700; color: var(--white); margin-top: 1px; }
.product__overline { margin-bottom: 14px; }
.product__name {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 14px;
}
.product__tagline { font-size: .98rem; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 36px; }
.product__benefits { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.benefit { display: flex; align-items: flex-start; gap: 13px; }
.benefit__tick {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(201,169,110,.18); border: 1px solid rgba(201,169,110,.28);
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.benefit__tick svg { width: 10px; height: 10px; color: var(--gold); }
.benefit__title { font-weight: 600; font-size: .88rem; margin-bottom: 2px; color: var(--white); }
.benefit__sub   { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.55; }
.product__sep { border: none; border-top: 1px solid rgba(255,255,255,.09); margin: 28px 0; }
.product__pricing { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; }
.product__price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--white); }
.product__price .woocommerce-Price-amount { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; color: var(--white); }
.product__price-old { font-size: 1.1rem; color: rgba(255,255,255,.28); text-decoration: line-through; }
.product__price-save {
  font-size: .76rem; font-weight: 600; color: var(--gold);
  background: rgba(201,169,110,.14); padding: 4px 10px; border-radius: 60px;
}
.product__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product__guarantee {
  display: flex; align-items: center; gap: 7px;
  margin-top: 18px; font-size: .78rem; color: rgba(255,255,255,.35);
}
.product__guarantee svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.product__pay { display: flex; align-items: center; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.product__pay-label { font-size: .68rem; color: rgba(255,255,255,.28); letter-spacing: .07em; text-transform: uppercase; }
.pay-icons { display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.pay-badge { border-radius: 5px; overflow: hidden; opacity: .65; transition: opacity .2s; }
.pay-badge:hover { opacity: 1; }
.pay-badge--ssl {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 5px; padding: 4px 8px;
  font-size: .65rem; font-weight: 700; letter-spacing: .05em;
  color: rgba(255,255,255,.4); overflow: visible;
}
.pay-badge--ssl svg { width: 13px; height: 13px; }

/* ═══════════════════════════════════
   BEFORE / AFTER (new layout)
═══════════════════════════════════ */
.ba-new-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.ba-new-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 20px;
}
.ba-new-rule { border: none; border-top: 1px solid var(--border); margin: 28px 0; }
.ba-new-pre {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.ba-new-months {
  font-family: var(--font-serif); font-size: 3.5rem;
  font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 4px;
}
.ba-new-sub {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px;
}
.ba-new-honest { font-size: .88rem; color: var(--mid); line-height: 1.65; }
.ba-new-right { display: flex; flex-direction: column; gap: 16px; }
.ba-pair {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; border-radius: var(--r-md); overflow: hidden;
}
.ba-photo {
  position: relative; overflow: hidden;
  border-radius: var(--r-sm);
}
.ba-photo svg { width: 100%; height: 100%; display: block; }
.ba-label {
  position: absolute; bottom: 6px; left: 50%;
  transform: translateX(-50%);
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  color: var(--muted);
  background: rgba(255,255,255,.88);
  padding: 2px 8px; border-radius: 4px; white-space: nowrap;
}

/* Legacy BA grid (hidden in static) */
.ba-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ba-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-sm); transition: var(--trans);
}
.ba-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; height: 220px; position: relative; }
.ba-img { display: flex; align-items: center; justify-content: center; }
.ba-img--b { background: linear-gradient(135deg, #e4ddd5 0%, #cdc5bc 100%); }
.ba-img--a { background: linear-gradient(135deg, #261010 0%, #160808 100%); }
.ba-split { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); z-index: 2; }
.ba-split::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
}
.ba-body { padding: 18px 22px; }
.ba-name { font-weight: 700; font-size: .88rem; margin-bottom: 3px; }
.ba-meta { font-size: .75rem; color: var(--muted); margin-bottom: 9px; }
.ba-result {
  display: inline-block; font-size: .72rem; font-weight: 600;
  color: var(--gold-dark); background: var(--gold-bg);
  padding: 3px 10px; border-radius: 60px;
}
.ba-disclaimer { text-align: center; font-size: .76rem; color: var(--muted); font-style: italic; margin-top: 28px; }
.hair-b, .hair-a { width: 72px; height: 92px; }

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  position: relative; transition: var(--trans);
}
.testi-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); border-color: rgba(201,169,110,.3); }
.testi-card--feat { background: var(--black); color: var(--white); border-color: transparent; }
.testi-card::before {
  content: '"'; position: absolute; top: 20px; right: 24px;
  font-family: var(--font-serif); font-size: 4.5rem; line-height: 1;
  color: var(--gold); opacity: .16;
}
.testi-stars { display: flex; gap: 2px; margin-bottom: 18px; }
.testi-stars svg { width: 15px; height: 15px; }
.testi-body { font-size: .92rem; line-height: 1.76; color: var(--mid); font-style: italic; margin-bottom: 24px; }
.testi-card--feat .testi-body { color: rgba(255,255,255,.65); }
.testi-author { display: flex; align-items: center; gap: 13px; }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 700; flex-shrink: 0;
}
.testi-av--l { background: var(--bg-warm); color: var(--black); }
.testi-av--d { background: rgba(255,255,255,.1); color: var(--white); }
.testi-name { font-weight: 700; font-size: .88rem; }
.testi-role { font-size: .74rem; color: var(--muted); margin-top: 1px; }
.testi-card--feat .testi-role { color: rgba(255,255,255,.35); }
.testi-verified { display: flex; align-items: center; gap: 5px; margin-top: 14px; font-size: .7rem; color: var(--muted); }
.testi-card--feat .testi-verified { color: rgba(255,255,255,.28); }
.testi-verified svg { width: 12px; height: 12px; color: var(--gold); }
.press-strip { border-top: 1px solid var(--border); margin-top: 64px; padding-top: 48px; text-align: center; }
.press-label { font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.press-logos { display: flex; gap: 44px; justify-content: center; align-items: center; flex-wrap: wrap; }
.press-logo { font-family: var(--font-serif); font-size: .88rem; font-weight: 700; color: #bbb; letter-spacing: .06em; text-transform: uppercase; }

/* ═══════════════════════════════════
   ABOUT
═══════════════════════════════════ */
.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.about__stack { position: relative; height: 460px; }
.about__img-main {
  position: absolute; top: 0; left: 0; right: 56px; bottom: 56px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, #1c1c1c 0%, #111 100%);
  border: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.about__img-main::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 25% 30%, rgba(201,169,110,.08) 0%, transparent 60%);
}
.about__img-accent {
  position: absolute; bottom: 0; right: 0; width: 54%; aspect-ratio: 1;
  border-radius: var(--r-xl); overflow: hidden;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
}
.about__accent-n { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; }
.about__accent-l { font-size: .75rem; color: rgba(255,255,255,.72); margin-top: 5px; max-width: 90px; text-align: center; line-height: 1.35; }
.about__title { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.8vw, 2.5rem); font-weight: 700; line-height: 1.2; margin-bottom: 22px; }
.about__body { font-size: .93rem; color: rgba(255,255,255,.58); line-height: 1.8; margin-bottom: 14px; }
.about__pillars { display: flex; flex-direction: column; gap: 18px; margin: 32px 0; }
.pillar { display: flex; gap: 16px; }
.pillar__n { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pillar__title { font-weight: 700; font-size: .88rem; margin-bottom: 3px; }
.pillar__body { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.6; }

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: rgba(201,169,110,.4); }
.faq-q {
  padding: 22px 26px; font-weight: 600; font-size: .93rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; cursor: pointer; user-select: none; transition: color .2s;
}
.faq-item.open .faq-q { color: var(--gold-dark); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bg-warm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: var(--trans);
}
.faq-item.open .faq-icon { background: var(--black); border-color: var(--black); transform: rotate(45deg); }
.faq-icon svg { width: 13px; height: 13px; color: var(--mid); transition: color .2s; }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  border-top: 1px solid var(--border); padding: 18px 26px 22px;
  font-size: .88rem; color: var(--mid); line-height: 1.76;
}

/* ═══════════════════════════════════
   CTA BANNER
═══════════════════════════════════ */
.cta-banner {
  background: var(--black); color: var(--white);
  padding: 96px 28px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(201,169,110,.10) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 100%, rgba(200,60,40,.06) 0%, transparent 50%);
}
.cta-banner__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta-banner__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 18px;
}
.cta-banner__sub { font-size: .98rem; color: rgba(255,255,255,.52); line-height: 1.72; margin-bottom: 40px; }
.cta-banner__actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-banner__note {
  margin-top: 22px; font-size: .76rem; color: rgba(255,255,255,.28);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.cta-banner__note svg { width: 13px; height: 13px; color: var(--gold); }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  background: #0d0d0d; color: rgba(255,255,255,.5);
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px; margin-bottom: 56px;
}
.footer__logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-serif); font-size: 1.35rem;
  font-weight: 700; color: var(--white); margin-bottom: 14px;
}
.footer__desc { font-size: .83rem; line-height: 1.75; max-width: 270px; margin-bottom: 22px; }
.footer__socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: rgba(255,255,255,.45);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-3px); }
.social-btn svg { width: 15px; height: 15px; }
.footer__col-title {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--white); margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: .83rem; color: rgba(255,255,255,.45); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.05);
  gap: 14px 20px; align-items: start;
}
.footer__age-notice {
  grid-column: 1 / -1;
}
.footer__copy { font-size: .76rem; color: rgba(255,255,255,.22); }
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a { font-size: .76rem; color: rgba(255,255,255,.22); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.5); }
.disclaimer {
  margin-top: 24px; padding: 16px 20px;
  background: rgba(255,255,255,.03); border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.06);
  font-size: .72rem; color: rgba(255,255,255,.22); line-height: 1.65;
}

/* ═══════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(8,8,8,.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 14px 22px;
  align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform .4s var(--ease);
}
.sticky-cta.past-hero { transform: translateY(0); }
.sticky-cta__price {
  font-family: var(--font-serif); font-size: 1.25rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.sticky-cta__sub { font-size: .68rem; color: rgba(255,255,255,.38); margin-top: 2px; }
.sticky-cta .btn { padding: 13px 26px; font-size: .8rem; flex-shrink: 0; }

/* ═══════════════════════════════════
   LED PULSE
═══════════════════════════════════ */
.led-dot { animation: ledPulse 2s ease-in-out infinite; }
.led-dot:nth-child(2n)  { animation-delay: .3s; }
.led-dot:nth-child(3n)  { animation-delay: .6s; }
.led-dot:nth-child(4n)  { animation-delay: .9s; }
.led-dot:nth-child(5n)  { animation-delay: 1.2s; }
.led-dot:nth-child(6n)  { animation-delay: .15s; }
.led-dot:nth-child(7n)  { animation-delay: .45s; }
@keyframes ledPulse { 0%,100%{opacity:.7} 50%{opacity:1} }

/* ═══════════════════════════════════
   WOOCOMMERCE
═══════════════════════════════════ */
.woo-wrap { padding: 112px 0; min-height: 60vh; }
.woo-content { width: 100%; }

.woocommerce-notices-wrapper {
  max-width: 1120px; margin: 0 auto 24px; padding: 0 28px;
}
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 14px 20px; border-radius: var(--r-sm);
  margin-bottom: 12px; font-size: .88rem; list-style: none;
}
.woocommerce-message { background: var(--gold-bg); border: 1px solid rgba(201,169,110,.3); color: var(--dark); }
.woocommerce-error   { background: #fff5f5; border: 1px solid #f8b4b4; color: #c53030; }
.woocommerce-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 60px;
  font-size: .83rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  background: var(--black); color: var(--white);
  border: 2px solid var(--black);
  transition: var(--trans); cursor: pointer;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--dark2); transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
  color: var(--white);
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
}

/* WooCommerce form fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 16px; font-family: var(--font-sans);
  font-size: .9rem; width: 100%; transition: border-color .2s;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}

/* Cart table */
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  padding: 14px 16px; border: 1px solid var(--border);
  font-size: .88rem; text-align: left;
}
.woocommerce table.shop_table th { background: var(--bg-warm); font-weight: 600; }

/* Product page */
.woocommerce div.product .product_title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 16px;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-serif); font-size: 2rem;
  font-weight: 700; color: var(--black);
}
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins { color: var(--gold); text-decoration: none; }
.woocommerce div.product p.price del,
.woocommerce div.product span.price del { color: var(--muted); }

/* Star ratings */
.woocommerce .star-rating span::before { color: var(--gold); }
.woocommerce .star-rating::before { color: var(--border); }

/* Shop grid */
.woocommerce ul.products {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; list-style: none; padding: 0;
}
.woocommerce ul.products li.product {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: var(--trans); padding: 0;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px); box-shadow: var(--sh-md);
}
.woocommerce ul.products li.product a img { width: 100%; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-weight: 700; font-size: 1rem; padding: 16px 18px 4px;
}
.woocommerce ul.products li.product .price {
  padding: 0 18px 16px; font-weight: 700; color: var(--gold);
}
.woocommerce ul.products li.product .button {
  margin: 0 18px 18px; display: block; text-align: center;
}

/* ═══════════════════════════════════
   PAGE / GENERIC CONTENT
═══════════════════════════════════ */
.page-content h1, .page-content h2, .page-content h3 {
  font-family: var(--font-serif); font-weight: 700; margin-bottom: 16px;
}
.page-content p { margin-bottom: 16px; line-height: 1.76; color: var(--mid); }
.page-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.page-content ul li { color: var(--mid); margin-bottom: 6px; }
.entry-content { max-width: 740px; margin: 0 auto; }

/* ═══════════════════════════════════
   RESPONSIVE
═══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner     { grid-template-columns: 1fr; gap: 52px; text-align: center; padding: 80px 28px 68px; }
  .hero__sub       { margin: 0 auto 40px; }
  .hero__actions   { justify-content: center; }
  .hero__proof     { justify-content: center; }
  .hero__visual    { order: -1; }
  .hero__ring      { width: 320px; }
  .chip--tr        { display: none; }
  .chip--tl        { right: 0%; }
  .chip--bl        { left: 0%; }

  .steps           { grid-template-columns: repeat(2,1fr); }
  .steps::before   { display: none; }
  .science-note    { grid-template-columns: 1fr; text-align: center; padding: 32px 28px; }
  .science-note__body { max-width: 100%; }

  .product__inner  { grid-template-columns: 1fr; gap: 56px; }
  .about__inner    { grid-template-columns: 1fr; gap: 56px; }
  .about__stack    { height: 340px; }

  .trust-bar__grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid      { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .ba-grid         { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer__top     { grid-template-columns: 1fr 1fr; }

  .ident-inner     { grid-template-columns: 1fr; gap: 28px; }
  .ba-new-layout   { grid-template-columns: 1fr; gap: 48px; }

  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section   { padding: 72px 0; }
  .sec-head  { margin-bottom: 52px; }

  /* Hide nav links and Shop Now btn — but keep cart icon visible */
  .nav__links { display: none; }
  .nav__cta .btn { display: none; }
  .nav__cta { gap: 10px; }
  .nav__cart-link { display: flex !important; }
  .nav__burger { display: flex; }

  .hero__inner  { padding: 72px 22px 60px; gap: 40px; }
  .hero__title  { font-size: 2rem; }
  .hero__ring   { width: 270px; }
  .chip         { display: none; }
  .hero__stats  { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 36px; padding-top: 28px; }
  .hero__stat   { text-align: center; }
  .hero__stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,.09); }
  .hero__stat-n { font-size: 1.5rem; }

  .trust-bar { padding: 20px 22px; }
  .trust-bar__grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  .steps { grid-template-columns: 1fr; gap: 28px; }

  .about__stack { display: none; }

  .product__name { font-size: 2rem; }
  .product__pay  { flex-direction: column; align-items: flex-start; gap: 8px; }

  .footer { padding: 52px 0 130px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { grid-template-columns: 1fr; }
  .footer__legal { flex-wrap: wrap; gap: 10px; }
  .footer__age-notice { justify-content: center; }

  .sticky-cta { display: flex; }

  /* Cookie banner sits above sticky CTA on mobile */
  .cookie-banner.show { bottom: 68px; }

  .woocommerce ul.products { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section   { padding: 56px 0; }
  .wrap, .wrap--sm { padding: 0 18px; }

  .hero__inner  { padding: 64px 18px 52px; }
  .hero__title  { font-size: 1.75rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .trust-bar__grid { grid-template-columns: 1fr; gap: 12px; }

  .product__actions { flex-direction: column; }
  .product__actions .btn { width: 100%; justify-content: center; }

  .cta-banner__actions { flex-direction: column; align-items: center; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; max-width: 320px; }
}

/* ═══════════════════════════════════
   COOKIE CONSENT BANNER
═══════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8500;
  background: rgba(8,8,8,.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: none; /* hidden until JS adds .show */
}
.cookie-banner.show {
  display: block;
  animation: cookieSlideUp .45s var(--ease) forwards;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner__inner {
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 260px; }
.cookie-banner__text strong {
  font-size: .88rem; font-weight: 700; color: var(--white);
  display: block; margin-bottom: 5px;
}
.cookie-banner__text p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.6; margin: 0; }
.cookie-banner__text a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-banner__actions .btn { padding: 11px 22px; font-size: .78rem; }
@media (max-width: 600px) {
  .cookie-banner__inner { flex-direction: column; gap: 16px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__actions .btn { flex: 1; justify-content: center; }
}

/* ═══════════════════════════════════
   FDA / FTC LEGAL NOTICES
═══════════════════════════════════ */
.fda-notice {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 22px; padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
}
.fda-notice svg { width: 16px !important; height: 16px !important; max-width: 16px !important; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.fda-notice p { font-size: .72rem; color: rgba(255,255,255,.35); line-height: 1.65; margin: 0; }
.fda-notice strong { color: rgba(255,255,255,.5); }

.ftc-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 22px; margin-bottom: 36px;
  background: var(--bg-warm); border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.ftc-notice svg { width: 18px !important; height: 18px !important; max-width: 18px !important; flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.ftc-notice p { font-size: .78rem; color: var(--mid); line-height: 1.65; margin: 0; }
.ftc-notice strong { color: var(--dark); }
.ftc-notice em { font-style: italic; }

/* Checkout health disclaimer */
.checkout-health-notice {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px; margin-bottom: 28px;
  background: var(--gold-bg); border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--r-sm);
  font-size: .82rem; color: var(--mid); line-height: 1.65;
}
.checkout-health-notice svg { flex-shrink: 0; margin-top: 2px; color: var(--gold-dark); }
.checkout-health-notice strong { color: var(--dark); }

/* Footer address + age notice */
.footer__address {
  font-size: .78rem; color: rgba(255,255,255,.28);
  line-height: 1.75; margin-top: 14px; margin-bottom: 0;
}
.footer__address a { color: rgba(255,255,255,.28); transition: color .2s; }
.footer__address a:hover { color: var(--gold); }

.footer__age-notice {
  display: flex; align-items: center; gap: 6px;
  margin-top: 12px; font-size: .7rem;
  color: rgba(255,255,255,.16);
}
.footer__age-notice svg { flex-shrink: 0; }

.ccpa-link { white-space: nowrap; }

/* ═══════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════ */
.legal-page__hero {
  background: var(--black); color: var(--white);
  padding: 100px 0 56px;
}
.legal-page__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-top: 14px; letter-spacing: -.02em;
}
.legal-content { color: var(--mid); }
.legal-content h2 {
  font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700;
  color: var(--black); margin: 44px 0 14px; letter-spacing: -.015em;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.legal-content h3 {
  font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin: 28px 0 10px;
}
.legal-content p { margin-bottom: 16px; font-size: .93rem; line-height: 1.8; }
.legal-content ul, .legal-content ol {
  padding-left: 22px; margin-bottom: 16px;
}
.legal-content ul li, .legal-content ol li {
  font-size: .93rem; line-height: 1.75; margin-bottom: 7px;
}
.legal-content strong { color: var(--black); font-weight: 600; }
.legal-content a { color: var(--gold-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--black); }
.legal-content table {
  width: 100%; border-collapse: collapse;
  margin: 20px 0 28px; font-size: .88rem;
  border: 1px solid var(--border); border-radius: var(--r-sm); overflow: hidden;
}
.legal-content table th {
  background: var(--bg-warm); padding: 12px 16px;
  font-weight: 600; text-align: left; color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.legal-content table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.legal-content table tr:last-child td { border-bottom: none; }

/* Legal nav — cross-links at bottom */
.legal-nav {
  margin-top: 64px; padding-top: 36px;
  border-top: 2px solid var(--border);
}
.legal-nav__label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.legal-nav__links {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.legal-nav__links a {
  font-size: .82rem; font-weight: 500;
  padding: 8px 16px; border-radius: 60px;
  border: 1px solid var(--border);
  color: var(--mid); transition: var(--trans);
}
.legal-nav__links a:hover {
  border-color: var(--gold); color: var(--gold-dark);
  background: var(--gold-bg);
}

/* ═══════════════════════════════════
   CART DRAWER
═══════════════════════════════════ */
.cart-drawer {
  position: fixed; inset: 0; z-index: 9000;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: all; }

.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
  opacity: 0; transition: opacity .35s var(--ease);
}
.cart-drawer.open .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 420px; max-width: 100vw;
  background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .38s var(--ease);
  box-shadow: -8px 0 56px rgba(0,0,0,.16);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.cart-drawer__title {
  font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--black);
}
.cart-drawer__close {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg-warm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--trans);
}
.cart-drawer__close:hover { background: var(--black); border-color: var(--black); }
.cart-drawer__close:hover svg { stroke: var(--white); }
.cart-drawer__close svg { width: 15px; height: 15px; stroke: var(--mid); transition: stroke .2s; }

.cart-drawer__body {
  flex: 1; overflow-y: auto; padding: 24px 28px;
}

/* Empty cart state */
.cart-drawer__empty {
  text-align: center; padding: 64px 0;
}
.cart-drawer__empty svg {
  width: 52px; height: 52px; color: var(--border);
  margin: 0 auto 18px; display: block; stroke-width: 1.2;
}
.cart-drawer__empty p {
  font-size: .92rem; color: var(--muted);
}

/* WooCommerce mini-cart items */
.woocommerce-mini-cart { list-style: none; padding: 0; margin: 0; }

.woocommerce-mini-cart-item.mini_cart_item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.woocommerce-mini-cart-item img {
  width: 72px; height: 72px;
  border-radius: var(--r-sm); border: 1px solid var(--border);
  object-fit: cover; background: var(--bg-warm); flex-shrink: 0;
}
.woocommerce-mini-cart-item > a:not(.remove_from_cart_button) {
  font-weight: 600; font-size: .9rem; line-height: 1.35;
  color: var(--black); display: block; margin-bottom: 5px;
}
.woocommerce-mini-cart-item > a:not(.remove_from_cart_button):hover { color: var(--gold); }
.woocommerce-mini-cart-item .quantity {
  font-size: .82rem; color: var(--muted);
}
.woocommerce-mini-cart-item .quantity .woocommerce-Price-amount {
  color: var(--black); font-weight: 600;
}
.woocommerce-mini-cart-item .remove_from_cart_button {
  margin-left: auto; font-size: 1.2rem; line-height: 1;
  color: var(--muted); background: none; border: none;
  cursor: pointer; flex-shrink: 0; transition: color .2s; display: block;
}
.woocommerce-mini-cart-item .remove_from_cart_button:hover { color: var(--black); }

/* Hide WooCommerce's default total + buttons (we have our own) */
.woocommerce-mini-cart__total,
.woocommerce-mini-cart__buttons { display: none !important; }

/* Drawer footer */
.cart-drawer__foot {
  padding: 20px 28px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px; flex-shrink: 0;
}
.cart-drawer__subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; padding-bottom: 14px;
  border-bottom: 1px solid var(--border); margin-bottom: 4px;
}
.cart-drawer__subtotal strong { font-size: 1.1rem; }
.cart-drawer__subtotal .woocommerce-Price-amount { color: var(--gold); }
.cart-drawer__foot .btn { width: 100%; justify-content: center; }

/* Nav cart button (not a link, a button) */
.nav__cart-link {
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.7); transition: color .2s;
  position: relative; padding: 4px;
}
.nav.scrolled .nav__cart-link { color: var(--mid); }
.nav__cart-link:hover { color: var(--black); }
.nav__cart-link svg { width: 22px; height: 22px; }
.nav__cart-count {
  position: absolute; top: -5px; right: -8px;
  background: var(--gold); color: var(--white);
  font-size: .6rem; font-weight: 700;
  min-width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: transform .2s;
}
.nav__cart-count:empty { display: none; }

@media (max-width: 480px) {
  .cart-drawer__panel { width: 100vw; }
  .cart-drawer__head,
  .cart-drawer__body,
  .cart-drawer__foot { padding-left: 20px; padding-right: 20px; }
}

/* ═══════════════════════════════════
   WOOCOMMERCE CART & CHECKOUT PAGES
═══════════════════════════════════ */
.woocommerce-cart .woo-wrap,
.woocommerce-checkout .woo-wrap { padding-top: 100px; }

.woocommerce-cart h1,
.woocommerce-checkout h1 {
  font-family: var(--font-serif); font-size: clamp(1.8rem,3vw,2.6rem);
  font-weight: 700; margin-bottom: 36px; letter-spacing: -.02em;
}

/* Cart table */
.woocommerce table.shop_table {
  border-collapse: collapse; width: 100%;
  border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden;
}
.woocommerce table.shop_table thead th {
  background: var(--bg-warm); padding: 14px 18px;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--mid);
  border-bottom: 1px solid var(--border); text-align: left;
}
.woocommerce table.shop_table td {
  padding: 18px; border-bottom: 1px solid var(--border);
  vertical-align: middle; font-size: .9rem;
}
.woocommerce table.shop_table .product-name a { font-weight: 600; color: var(--black); }
.woocommerce table.shop_table .product-name a:hover { color: var(--gold); }
.woocommerce table.shop_table .product-thumbnail img { width: 72px; border-radius: var(--r-sm); }
.woocommerce table.shop_table .product-remove a { font-size: 1.4rem; color: var(--muted); }
.woocommerce table.shop_table .product-remove a:hover { color: var(--black); }

/* Cart totals */
.cart_totals h2 {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 20px;
}
.cart_totals table { width: 100%; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.cart_totals table th { background: var(--bg-warm); padding: 14px 18px; font-weight: 600; width: 40%; }
.cart_totals table td { padding: 14px 18px; }
.cart_totals table .order-total td .woocommerce-Price-amount { font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* Checkout form */
.woocommerce-checkout #order_review_heading { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }

.woocommerce form .form-row { margin-bottom: 16px; }
.woocommerce form .form-row label { font-size: .84rem; font-weight: 600; margin-bottom: 6px; display: block; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 12px 16px; font-family: var(--font-sans);
  font-size: .9rem; width: 100%; transition: border-color .2s;
  color: var(--black);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  outline: none; border-color: var(--gold);
}

/* Order review */
.woocommerce-checkout-review-order table { width: 100%; border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 24px; }
.woocommerce-checkout-review-order table th,
.woocommerce-checkout-review-order table td { padding: 14px 18px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.woocommerce-checkout-review-order table th { background: var(--bg-warm); font-weight: 600; }
.woocommerce-checkout-review-order .order-total .woocommerce-Price-amount { font-weight: 700; color: var(--gold); font-size: 1.1rem; }

/* Payment box */
#payment { background: var(--bg-warm); border-radius: var(--r-md); padding: 24px; border: 1px solid var(--border); }
#payment ul.payment_methods { list-style: none; margin-bottom: 20px; }
#payment ul.payment_methods li { padding: 10px 0; font-size: .9rem; }

/* Buttons */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 30px; border-radius: 60px;
  font-size: .83rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  background: var(--black); color: var(--white); border: 2px solid var(--black);
  transition: var(--trans); cursor: pointer;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce #respond input#submit:hover {
  background: var(--dark2); transform: translateY(-2px); color: var(--white);
}
.woocommerce a.button.alt, .woocommerce button.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order {
  background: var(--gold); border-color: var(--gold); color: var(--white);
  width: 100%; justify-content: center; font-size: .9rem; padding: 16px;
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
}

/* Thank you page */
.woocommerce-order-received .woo-wrap,
.woocommerce-order-pay .woo-wrap { text-align: center; padding-top: 100px; }
.woocommerce-order-received h1 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; margin-bottom: 12px; }
.woocommerce-thankyou-order-details { list-style: none; display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin: 28px 0; }
.woocommerce-thankyou-order-details li { font-size: .88rem; }
.woocommerce-thankyou-order-details strong { font-weight: 700; }
