/*
 Theme Name:   Emberly
 Theme URI:    https://emberly.capiluxlabs.com
 Author:       Emberly
 Author URI:   https://emberly.capiluxlabs.com
 Description:  Emberly - Red Light Slippers Store with WooCommerce
 Version:      1.0.0
 Requires at least: 6.0
 Tested up to: 6.7
 WooCommerce:  8.0
 License:      Proprietary
 Text Domain:  emberly
*/

/* =========================================
   EMBERLY — style.css
   ========================================= */

/* ── Variables ── */
:root {
  --black:      #1a1210;
  --dark:       #241a16;
  --dark2:      #2e211c;
  --mid:        #4a4038;
  --muted:      #8a807a;
  --border:     #ece5e0;
  --bg-warm:    #f8f4f0;
  --white:      #ffffff;

  --gold:       #b0492e;
  --gold-light: #e79a72;
  --gold-dark:  #8c3820;
  --gold-bg:    #fbf0ea;

  --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(176,73,46,.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(176,73,46,.28);
  background: rgba(176,73,46,.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(176,73,46,.14); }
  50%      { box-shadow: 0 0 0 16px rgba(176,73,46,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(176,73,46,.12);
  border: 1px solid rgba(176,73,46,.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 40% 45% at 50% 50%, rgba(200,70,50,.12) 0%, transparent 60%),
    radial-gradient(ellipse 35% 55% at 85% 75%, rgba(176,73,46,.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(176,73,46,.1);
  border: 1px solid rgba(176,73,46,.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(176,73,46,.14);
}
.hero__ring::after {
  content: ''; position: absolute; inset: 38px;
  border-radius: 50%; border: 1px dashed rgba(176,73,46,.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; }
.hero__product-img {
  width: 100%; height: auto; max-height: 100%;
  object-fit: contain; position: relative; z-index: 2;
  margin-top: -4%;
  filter: drop-shadow(0 0 30px rgba(200,60,40,.3));
  -webkit-mask-image: radial-gradient(ellipse 88% 85% at 50% 52%, black 50%, transparent 82%);
  mask-image: radial-gradient(ellipse 88% 85% at 50% 52%, black 50%, transparent 82%);
}
.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: 1s; }
.chip:nth-child(3) { animation-delay: 2s; }
.chip:nth-child(4) { animation-delay: 3s; }
.chip--tl { top: 6%;    right: -2%; }
.chip--tr { bottom: 22%; right: -2%; }
.chip--bl { bottom: 22%; left:  0%;  }
.chip--br { top: 6%;    left:  0%;  }
@keyframes chipFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.chip__icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(176,73,46,.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(176,73,46,.18);
  border-bottom: 1px solid rgba(176,73,46,.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(176,73,46,.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: 56px; padding: 44px 52px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1fr 150px; 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; width: 150px; overflow: hidden; }
.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; white-space: normal; word-break: break-word; }

/* ═══════════════════════════════════
   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%);
  pointer-events: none;
}
.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(176,73,46,.18); border: 1px solid rgba(176,73,46,.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(176,73,46,.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; }
.foot-b, .foot-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(176,73,46,.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(176,73,46,.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(176,73,46,.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(176,73,46,.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%; }
/* Checkout: full-width outer shell — no max-width, no padding */
.woo-checkout-outer { width: 100%; }
.woo-checkout-outer .woo-content { width: 100%; }

/* Force every wrapper in the checkout chain to be truly full-width */
body.woocommerce-checkout .woocommerce,
body.woocommerce-checkout .woo-content,
body.woocommerce-checkout .entry-content,
body.woocommerce-checkout .page-content,
body.woocommerce-checkout #content,
body.woocommerce-checkout #primary,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout .co-page {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  float: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.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(176,73,46,.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(176,73,46,.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; }

/* ═══════════════════════════════════
   MY ACCOUNT — CUSTOMER PORTAL
═══════════════════════════════════ */

/* Login page */
.acct-login-page { min-height: 100vh; background: var(--bg-warm); }
.acct-login-hero {
  background: var(--black); padding: 56px 28px 48px;
  text-align: center;
}
.acct-login-hero__inner { max-width: 480px; margin: 0 auto; }
.acct-login-hero__brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.acct-login-hero__sub { font-size: .82rem; color: rgba(255,255,255,.4); }

.acct-login-wrap {
  max-width: 480px; margin: 0 auto; padding: 32px 28px 64px;
}
.acct-tabs {
  display: flex; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 4px; gap: 4px; margin-bottom: 24px;
}
.acct-tab {
  flex: 1; padding: 10px; border-radius: calc(var(--r-md) - 3px);
  font-size: .85rem; font-weight: 600; cursor: pointer;
  background: none; border: none; color: var(--muted);
  transition: var(--trans);
}
.acct-tab--active { background: var(--black); color: var(--white); }

.acct-form-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
}
.acct-field { margin-bottom: 20px; }
.acct-field label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--dark);
}
.acct-field__link { font-weight: 400; color: var(--gold-dark); font-size: .78rem; }
.acct-field__link:hover { text-decoration: underline; }
.acct-field input, .acct-field textarea, .acct-field select,
.acct-select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--font-sans); font-size: .9rem; color: var(--black);
  transition: border-color .2s; background: var(--white);
  -webkit-appearance: none; appearance: none;
}
.acct-field input:focus, .acct-field textarea:focus,
.acct-field select:focus, .acct-select:focus {
  outline: none; border-color: var(--gold);
}
.acct-remember { font-size: .82rem; color: var(--mid); margin-bottom: 20px; }
.acct-remember label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.acct-submit { width: 100%; justify-content: center; }
.acct-note { font-size: .8rem; color: var(--muted); margin-bottom: 16px; }

/* ── Force full width on account page ─────────────────────────────────────── */
body.woocommerce-account { overflow-x: hidden; }
body.woocommerce-account .woo-account-wrap,
body.woocommerce-account .acct-layout {
  max-width: 100vw !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}

/* ── Remove ALL wrappers/title on account pages ───────────────────────────── */
.woocommerce-account h1.entry-title,
.woocommerce-account .page-header,
.woocommerce-account .woocommerce-breadcrumb,
.woocommerce-account .woocommerce-page-title {
  display: none !important;
}
.woocommerce-account .woocommerce,
.woocommerce-account article,
.woocommerce-account .post,
.woocommerce-account .hentry,
.woocommerce-account .entry-content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  float: none !important;
}

/* ─── Full-screen account layout ─── */
.woo-account-wrap {
  padding-top: 70px;
  min-height: 100vh;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.acct-layout {
  display: grid !important;
  grid-template-columns: 280px 1fr !important;
  width: 100% !important;
  flex: 1 1 auto !important;
  min-height: calc(100vh - 70px);
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.woocommerce-MyAccount-content { min-height: 60vh; }

/* Nav account icon */
.nav__account-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
  transition: var(--trans);
  background: rgba(255,255,255,.06);
}
.nav.scrolled .nav__account-link {
  border-color: var(--border);
  color: var(--mid);
  background: transparent;
}
.nav__account-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(176,73,46,.08);
}
.nav__account-av {
  font-family: var(--font-serif); font-size: .86rem; font-weight: 700;
  line-height: 1; color: inherit;
}

/* ═══════════════════════════════════
   VIEW ORDER (Order Detail Page)
═══════════════════════════════════ */
.vorder-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.vorder-back {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .76rem; color: var(--muted); margin-bottom: 8px;
  transition: color .2s;
}
.vorder-back:hover { color: var(--black); }
.vorder-title {
  font-family: var(--font-serif); font-size: clamp(1.4rem,2.5vw,1.9rem);
  font-weight: 700; line-height: 1.2; margin-bottom: 4px;
}
.vorder-date { font-size: .78rem; color: var(--muted); }

/* ── Shipping Tracker ── */
.vorder-tracker {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px 32px; margin-bottom: 24px;
}
.vorder-steps {
  display: flex; align-items: center; margin-bottom: 24px;
}
.vorder-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.vorder-step__circle {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--border); background: var(--white);
  color: var(--muted); transition: var(--trans);
}
.vorder-step--done .vorder-step__circle {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.vorder-step--pending .vorder-step__circle { opacity: .5; }
.vorder-step__label { font-size: .72rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.vorder-step--done .vorder-step__label { color: var(--gold-dark); }
.vorder-step__line {
  flex: 1; height: 2px; background: var(--border); margin: 0 12px;
  margin-bottom: 24px; transition: background .3s;
}
.vorder-step__line.done { background: var(--gold); }

.vorder-tracking-info {
  background: var(--gold-bg); border: 1px solid rgba(176,73,46,.25);
  border-radius: var(--r-md); padding: 16px 20px;
}
.vorder-tracking-info__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.vorder-tracking-info__carrier { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 3px; }
.vorder-tracking-info__num { font-family: monospace; font-size: 1rem; font-weight: 700; color: var(--black); letter-spacing: .05em; }
.vorder-tracking-pending {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--muted); padding: 12px 16px;
  background: var(--bg-warm); border-radius: var(--r-md);
}
.vorder-tracking-pending svg { flex-shrink: 0; color: var(--gold-dark); }

/* ── Order Section ── */
.vorder-section {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 24px 28px; margin-bottom: 20px;
}
.vorder-section__title {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}

/* ── Product rows ── */
.vorder-products { display: flex; flex-direction: column; gap: 16px; }
.vorder-product {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.vorder-product:last-child { padding-bottom: 0; border-bottom: none; }
.vorder-product__img {
  width: 68px; height: 68px; border-radius: var(--r-sm);
  border: 1px solid var(--border); overflow: hidden;
  background: var(--bg-warm); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.vorder-product__img img { width: 100%; height: 100%; object-fit: cover; }
.vorder-product__info { flex: 1; }
.vorder-product__name { font-weight: 700; font-size: .92rem; }
.vorder-product__sku { font-size: .72rem; color: var(--muted); margin-top: 3px; }
.vorder-product__qty { font-size: .84rem; color: var(--muted); white-space: nowrap; }
.vorder-product__price { font-weight: 700; font-size: .95rem; white-space: nowrap; }

/* ── Totals ── */
.vorder-totals { display: flex; flex-direction: column; gap: 10px; max-width: 360px; margin-left: auto; }
.vorder-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem; color: var(--mid);
}
.vorder-total-row--grand {
  font-size: 1.05rem; font-weight: 700; color: var(--black);
  padding-top: 12px; border-top: 2px solid var(--border); margin-top: 4px;
}
.vorder-total-row--grand .woocommerce-Price-amount { color: var(--gold); }

/* ── Bottom: address + actions ── */
.vorder-bottom {
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; align-items: start;
}
.vorder-address .vorder-section__title { margin-bottom: 12px; }
.vorder-address__text {
  font-style: normal; font-size: .86rem;
  color: var(--mid); line-height: 1.75;
}
.vorder-actions {
  display: flex; flex-direction: column; gap: 10px;
  padding-top: 28px;
}

@media (max-width: 700px) {
  .vorder-tracker { padding: 20px; }
  .vorder-steps { overflow-x: auto; padding-bottom: 8px; }
  .vorder-bottom { grid-template-columns: 1fr; }
  .vorder-actions { flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .vorder-product__qty, .vorder-product__sku { display: none; }
}

/* ─── Account Forms (edit-account, addresses, etc.) ─── */
.acct-form-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 40px 40px;
  max-width: 820px;
}
.acct-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.acct-field {
  margin-bottom: 22px;
}
.acct-field label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .83rem; font-weight: 600;
  color: var(--dark); margin-bottom: 8px;
}
.acct-field input,
.acct-field select,
.acct-field textarea,
.acct-select {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: .9rem; color: var(--black);
  background: var(--white);
  transition: border-color .2s;
  appearance: none; -webkit-appearance: none;
  box-sizing: border-box;
}
.acct-field input:focus,
.acct-field select:focus,
.acct-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176,73,46,.1);
}
.acct-field textarea { resize: vertical; min-height: 130px; }
.acct-field-hint {
  display: block; font-size: .74rem;
  color: var(--muted); margin-top: 6px;
}
.acct-required { color: var(--gold); margin-left: 2px; }
.acct-form-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 32px 0 20px; font-weight: 700;
  font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
}
.acct-form-divider::before,
.acct-form-divider::after {
  content: ''; flex: 1;
  height: 1px; background: var(--border);
}
.acct-form-hint {
  font-size: .82rem; color: var(--muted);
  margin-bottom: 22px; margin-top: -12px;
}
.acct-form-actions { margin-top: 8px; }
.acct-form-actions .btn { min-width: 160px; }
.acct-remember {
  font-size: .82rem; color: var(--mid);
  margin-bottom: 22px;
}
.acct-remember label { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.acct-note { font-size: .8rem; color: var(--muted); margin-bottom: 18px; }
.acct-submit { width: 100%; justify-content: center; }

/* Also style any default WC forms inside acct-content */
.acct-content .woocommerce-form-row label,
.acct-content .woocommerce-form-row__label { font-size: .83rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; display: block; }
.acct-content .woocommerce-form-row input,
.acct-content .woocommerce-form-row select,
.acct-content .woocommerce-form-row textarea,
.acct-content .input-text {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border) !important;
  border-radius: var(--r-sm) !important;
  font-family: var(--font-sans);
  font-size: .9rem; color: var(--black);
  background: var(--white) !important;
  box-sizing: border-box;
}
.acct-content .woocommerce-form-row input:focus,
.acct-content .input-text:focus {
  outline: none; border-color: var(--gold) !important;
}
.acct-content .woocommerce-Button,
.acct-content button[type="submit"],
.acct-content input[type="submit"] {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px; border-radius: 60px;
  font-size: .83rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; cursor: pointer;
  background: var(--gold) !important; color: var(--white) !important;
  border: 2px solid var(--gold) !important;
  transition: var(--trans);
}
.acct-content button[type="submit"]:hover,
.acct-content input[type="submit"]:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
}

@media (max-width: 640px) {
  .acct-form-grid { grid-template-columns: 1fr; }
  .acct-form-panel { padding: 24px 22px 28px; }
}

/* Login page top spacing */
.acct-login-page { padding-top: 70px; }

/* Sidebar nav — fills full height */
.acct-nav {
  background: var(--black) !important;
  color: var(--white);
  padding: 36px 0;
  border-right: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
  display: flex !important;
  flex-direction: column;
  width: 100% !important;
}
.acct-nav__brand {
  display: flex; align-items: center; gap: 12px;
  padding: 0 24px 28px; border-bottom: 1px solid rgba(255,255,255,.06);
  margin-bottom: 16px;
}
.acct-nav__name { font-weight: 700; font-size: .9rem; color: var(--white); }
.acct-nav__email { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 2px; }
.acct-nav__list { list-style: none; padding: 0; }

.acct-nav__link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 24px; font-size: .86rem; font-weight: 500;
  color: rgba(255,255,255,.55); transition: all .2s;
  position: relative; cursor: pointer;
}
.acct-nav__link:hover { color: var(--white); background: rgba(255,255,255,.04); }
.acct-nav__item--active .acct-nav__link,
.acct-nav__item.is-active .acct-nav__link {
  color: var(--white) !important; background: rgba(176,73,46,.12);
}
.acct-nav__indicator {
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; background: var(--gold); border-radius: 0 3px 3px 0;
}
.acct-nav__item--logout { margin-top: auto; border-top: 1px solid rgba(255,255,255,.06); }
.acct-nav__item--logout .acct-nav__link { color: rgba(255,255,255,.3); }
.acct-nav__item--logout .acct-nav__link:hover { color: rgba(255,255,255,.7); }

/* Content area — fills rest of screen */
.acct-content {
  padding: 48px 56px 80px;
  background: var(--bg-warm) !important;
  min-height: calc(100vh - 70px);
  overflow-y: auto;
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box;
}

/* Dashboard */
.acct-welcome {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.acct-welcome__name {
  font-family: var(--font-serif); font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700; line-height: 1.2;
}
.acct-latest-order {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 14px 20px;
  text-align: center; transition: var(--trans);
}
.acct-latest-order:hover { box-shadow: var(--sh-sm); }
.acct-latest-order__label { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.acct-latest-order__num { font-weight: 700; font-size: .92rem; margin: 3px 0; }

/* Stats */
.acct-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 36px;
}
.acct-stat-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px;
  text-align: center;
}
.acct-stat-card__n { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; }
.acct-stat-card__l { font-size: .72rem; color: var(--muted); margin-top: 4px; }

/* Section title */
.acct-section-title {
  font-weight: 700; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}

/* Quick actions */
.acct-quick-actions {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 0;
}
.acct-action-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
  transition: var(--trans); cursor: pointer;
}
.acct-action-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(176,73,46,.3); }
.acct-action-card__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-bg); border: 1px solid rgba(176,73,46,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark); margin-bottom: 14px;
}
.acct-action-card__title { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.acct-action-card__sub { font-size: .78rem; color: var(--muted); }

/* Orders list */
.acct-orders-list { display: flex; flex-direction: column; gap: 12px; }
.acct-order-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 16px 20px;
  transition: var(--trans);
}
.acct-order-row:hover { box-shadow: var(--sh-sm); border-color: rgba(176,73,46,.3); }
.acct-order-row__num { font-weight: 700; font-size: .88rem; }
.acct-order-row__date { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.acct-order-row__total { font-weight: 700; margin-left: auto; }
.acct-order-row svg { color: var(--muted); flex-shrink: 0; }

/* Order cards (full list) */
.acct-orders-list--full { gap: 20px; }
.acct-order-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
}
.acct-order-card__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
  gap: 16px; flex-wrap: wrap;
}
.acct-order-card__num { font-weight: 700; font-size: .95rem; }
.acct-order-card__date { font-size: .74rem; color: var(--muted); margin-top: 3px; }
.acct-order-card__total { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; }
.acct-order-card__items { padding: 16px 24px; display: flex; flex-direction: column; gap: 12px; }
.acct-order-item { display: flex; align-items: center; gap: 14px; }
.acct-order-item__thumb {
  flex-shrink: 0;
}
.acct-order-item__placeholder {
  width: 52px; height: 52px; border-radius: 6px;
  background: var(--bg-warm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.acct-order-item__name { font-weight: 600; font-size: .88rem; }
.acct-order-item__qty { font-size: .74rem; color: var(--muted); margin-top: 2px; }
.acct-order-card__actions {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px; border-top: 1px solid var(--border);
  background: var(--bg-warm);
}
.acct-return-link {
  font-size: .78rem; color: var(--muted); text-decoration: underline; cursor: pointer;
  transition: color .2s;
}
.acct-return-link:hover { color: var(--black); }

/* Status badges */
.acct-status {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 60px;
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; white-space: nowrap;
}
.acct-status--processing { background: #eff6ff; color: #1e40af; }
.acct-status--completed  { background: #f0fdf4; color: #15803d; }
.acct-status--pending    { background: #fefce8; color: #92400e; }
.acct-status--on-hold    { background: #fef3c7; color: #92400e; }
.acct-status--cancelled  { background: #fef2f2; color: #b91c1c; }
.acct-status--refunded   { background: #f5f3ff; color: #6d28d9; }

/* Support page */
.acct-support-info {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px; margin-bottom: 32px;
}
.acct-info-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px;
  display: flex; gap: 14px; align-items: flex-start;
}
.acct-info-card svg { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.acct-info-card__title { font-weight: 700; font-size: .86rem; margin-bottom: 3px; }
.acct-info-card__sub { font-size: .74rem; color: var(--muted); }

.acct-support-form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
}
.acct-support-form-wrap__title {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 24px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.acct-support-form { display: flex; flex-direction: column; gap: 0; }
.acct-field textarea { resize: vertical; min-height: 130px; }

/* Success message */
.acct-success-msg {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px; background: #f0fdf4;
  border: 1px solid #bbf7d0; border-radius: var(--r-md);
  margin-bottom: 24px; color: #15803d;
}
.acct-success-msg svg { flex-shrink: 0; margin-top: 2px; }
.acct-success-msg strong { font-weight: 700; display: block; margin-bottom: 2px; }
.acct-success-msg p { font-size: .82rem; margin: 0; color: #166534; }

/* Empty state */
.acct-empty {
  text-align: center; padding: 72px 0;
}
.acct-empty svg { color: var(--border); margin: 0 auto 18px; display: block; }
.acct-empty p { font-size: .92rem; color: var(--muted); }

.acct-pagination { display: flex; gap: 12px; margin-top: 20px; }

@media (max-width: 900px) {
  .woo-account-wrap { padding-top: 70px; }
  .acct-layout { grid-template-columns: 1fr; min-height: auto; }
  .acct-nav {
    position: static; height: auto;
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .acct-nav__list { display: flex; flex-wrap: wrap; padding: 8px 0; }
  .acct-nav__link { padding: 10px 16px; font-size: .78rem; }
  .acct-nav__indicator { display: none; }
  .acct-content { padding: 28px 22px 56px; min-height: auto; }
  .acct-stats { grid-template-columns: repeat(2,1fr); }
  .acct-support-info { grid-template-columns: 1fr; }
  .acct-quick-actions { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   REVIEWS PAGE
═══════════════════════════════════ */
.reviews-hero {
  background: var(--black); color: var(--white);
  padding: 100px 0 72px;
}
.reviews-hero__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 64px; align-items: center;
}
.reviews-score-block { text-align: center; }
.reviews-score__number {
  font-family: var(--font-serif); font-size: 5rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.reviews-score__stars { display: flex; gap: 4px; justify-content: center; margin: 10px 0 6px; }
.reviews-score__label { font-size: .78rem; color: rgba(255,255,255,.4); }
.reviews-breakdown { flex: 1; }
.reviews-breakdown__title {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.reviews-bar-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px; font-size: .8rem; color: rgba(255,255,255,.5);
}
.reviews-bar-row > span:first-child { width: 30px; flex-shrink: 0; }
.reviews-bar-row > span:last-child  { width: 30px; flex-shrink: 0; text-align: right; }
.reviews-bar {
  flex: 1; height: 6px; background: rgba(255,255,255,.1);
  border-radius: 3px; overflow: hidden;
}
.reviews-bar__fill { height: 100%; background: var(--gold); border-radius: 3px; }
.reviews-cta-block { text-align: center; }
.reviews-cta-block p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 20px; }
.reviews-cta__note { font-size: .72rem; color: rgba(255,255,255,.28); margin-top: 10px; margin-bottom: 0; }

.reviews-section-head { margin-bottom: 48px; }
.reviews-section-head .h1 { margin-bottom: 12px; }
.reviews-ftc-note {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--muted);
}
.reviews-ftc-note svg { flex-shrink: 0; color: var(--gold-dark); }

/* WooCommerce submitted reviews */
.wc-reviews-section { margin-top: 72px; }
.wc-reviews-section__title {
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 32px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.wc-reviews-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.wc-review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: var(--trans);
}
.wc-review-card:hover { box-shadow: var(--sh-md); }
.wc-review-card__head {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px; flex-wrap: wrap;
}
.wc-review-card__author { font-weight: 700; font-size: .88rem; }
.wc-review-card__date { font-size: .72rem; color: var(--muted); }
.wc-review-card__stars { display: flex; gap: 2px; margin-left: auto; }
.wc-review-card__title { font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.wc-review-card__body { font-size: .88rem; color: var(--mid); line-height: 1.72; font-style: italic; margin-bottom: 14px; }

/* Reviews all-grid */
.reviews-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: var(--trans);
  display: flex; flex-direction: column; gap: 16px;
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(176,73,46,.3); }
.review-card__stars { display: flex; gap: 3px; }
/* Section divider labels between real + demo reviews */
.reviews-section-label,
.sp-reviews__label {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: #22863a; margin-bottom: 24px; margin-top: 8px;
}
.reviews-section-label--demo,
.sp-reviews__label--demo {
  color: var(--muted); margin-top: 0;
}
.review-card__title { font-size: .92rem; font-weight: 700; margin: 6px 0 4px; }
.review-card__body {
  font-size: .9rem; color: var(--mid);
  line-height: 1.76; font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex; align-items: center; gap: 12px;
}
.review-card__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-warm); color: var(--black);
  font-family: var(--font-serif); font-size: .95rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.review-card__name { font-weight: 700; font-size: .86rem; }
.review-card__role { font-size: .72rem; color: var(--muted); margin-top: 2px; }
.review-card__badge {
  margin-left: auto; display: flex; align-items: center; gap: 4px;
  font-size: .68rem; font-weight: 600; color: var(--gold-dark);
  background: var(--gold-bg); padding: 4px 9px; border-radius: 60px;
  white-space: nowrap;
}
.reviews-section-head { margin-bottom: 36px; }
.review-write-cta {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 88px 0;
}
@media (max-width: 1024px) {
  .reviews-all-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .reviews-all-grid { grid-template-columns: 1fr; }
  .review-card__badge { display: none; }
}

/* Hero proof line as clickable link */
.hero__proof-link { text-decoration: none; color: inherit; }
.hero__proof-link:hover .hero__proof-text { color: rgba(255,255,255,.8); text-decoration: underline; }

@media (max-width: 900px) {
  .reviews-hero__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .reviews-cta-block p { max-width: 360px; margin: 0 auto 20px; }
  .reviews-bar-row { justify-content: center; }
  .wc-reviews-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   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: 200000;
  pointer-events: none;
}
body.cart-is-open .cart-drawer { pointer-events: all; }

.cart-drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.52);
  opacity: 0; transition: opacity .35s var(--ease);
}
body.cart-is-open .cart-drawer .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);
}
body.cart-is-open .cart-drawer .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; }
}

/* ═══════════════════════════════════
   NAV — LIGHT MODE ON INNER PAGES
   (no dark hero behind nav on non-home pages)
═══════════════════════════════════ */
body:not(.home) .nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}
body:not(.home) .nav .nav__logo { color: var(--black); }
body:not(.home) .nav .nav__logo-icon {
  background: rgba(0,0,0,.04);
  border-color: rgba(176,73,46,.4);
}
body:not(.home) .nav .nav__links a { color: var(--mid); }
body:not(.home) .nav .nav__links a:hover { color: var(--black); }
body:not(.home) .nav .nav__burger span { background: var(--black); }
body:not(.home) .nav__cart-count { background: var(--gold); }

/* ═══════════════════════════════════
   WOOCOMMERCE CART & CHECKOUT PAGES
═══════════════════════════════════ */
/* Cart keeps normal top padding; checkout uses co-page's own padding-top */
.woocommerce-cart .woo-wrap { padding-top: 100px; }

/* ── Checkout form: override global .wrap max-width ─────────────────────────
   Covers both: old HTML (div.wrap) and new HTML (div.co-form-container).
   Lives in style.css so it's always cache-busted by version number.        */
body.woocommerce-checkout .co-page > .wrap,
body.woocommerce-checkout .co-form-container {
  max-width: none;
  padding: 0 48px;
  box-sizing: border-box;
}
@media (max-width: 600px) {
  body.woocommerce-checkout .co-page > .wrap,
  body.woocommerce-checkout .co-form-container { padding: 0 18px; }
}

/* Hide page.php "Checkout" / "Cart" title if page.php ever renders these */
body.woocommerce-checkout .page-content h1.h1,
body.woocommerce-checkout .entry-content > h1,
body.woocommerce-cart .page-content h1.h1,
body.woocommerce-cart .entry-content > h1 { display: none; }

.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 / ORDER RECEIVED PAGE
═══════════════════════════════════ */

/* Page background — reuses co-page gradient */
.ty-page {
  background: linear-gradient(160deg, #f5f3ef 0%, #f0ede8 100%);
  min-height: 100vh;
  padding-top: 70px;
  padding-bottom: 100px;
}

/* Container */
.ty-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 600px) {
  .ty-container { padding: 0 20px; }
}

/* ── Hero ── */
.ty-hero {
  background: linear-gradient(135deg, #0e0e0e 0%, #1c1710 60%, #0e0e0e 100%);
  border-radius: 24px;
  padding: 52px 48px;
  text-align: center;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.ty-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(176,73,46,.18) 0%, transparent 65%);
  pointer-events: none;
}
.ty-hero__icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #8a4359 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 0 0 14px rgba(176,73,46,.12), 0 8px 32px rgba(176,73,46,.45);
}
.ty-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700; color: #fff; margin: 0 0 10px;
  letter-spacing: -.01em;
}
.ty-hero__sub {
  font-size: .95rem; color: rgba(255,255,255,.5);
  line-height: 1.6; max-width: 400px;
  margin: 0 auto 26px;
}
.ty-hero__order-num {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(176,73,46,.12);
  border: 1px solid rgba(176,73,46,.3);
  border-radius: 30px;
  padding: 9px 20px;
  font-size: .78rem; font-weight: 700; color: var(--gold);
  letter-spacing: .07em; text-transform: uppercase;
}

/* ── Cards ── */
.ty-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.055), 0 1px 3px rgba(0,0,0,.04);
  margin-bottom: 20px;
  overflow: hidden;
}
.ty-card__head {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 32px 18px;
  border-bottom: 1.5px solid #f2ede5;
}
.ty-card__head svg { color: var(--gold); flex-shrink: 0; }
.ty-card__title { font-size: 1rem; font-weight: 700; color: #111; margin: 0; }
.ty-card__body { padding: 24px 32px 28px; }

/* ── Item list ── */
.ty-items { list-style: none; padding: 0; margin: 0; }
.ty-item {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #f3efe8;
}
.ty-item:last-child { border-bottom: none; padding-bottom: 0; }
.ty-item__img {
  width: 68px; height: 68px; border-radius: 12px;
  overflow: hidden; border: 1px solid #ede9e0; flex-shrink: 0;
  background: #f8f6f1; position: relative;
}
.ty-item__img img { width: 100%; height: 100%; object-fit: cover; }
.ty-item__qty {
  position: absolute; top: -7px; right: -7px;
  background: var(--gold); color: #fff;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.ty-item__info { flex: 1; }
.ty-item__name { font-size: .93rem; font-weight: 600; color: #1a1a1a; margin-bottom: 3px; }
.ty-item__meta { font-size: .78rem; color: #999; }
.ty-item__price { font-size: .97rem; font-weight: 700; color: #111; white-space: nowrap; }

/* ── Totals ── */
.ty-totals { border-top: 1.5px solid #f2ede5; padding-top: 20px; margin-top: 6px; }
.ty-totals__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: .88rem; color: #666;
}
.ty-totals__row--total {
  font-size: 1.08rem; font-weight: 800; color: #111;
  padding-top: 14px; margin-top: 8px;
  border-top: 2px solid #ede9e0;
}
.ty-totals__row--total span:last-child { color: var(--gold); }
.ty-totals__free { color: #4caf7d; font-weight: 600; }
.ty-totals__discount { color: #e05c5c; }

/* ── Details grid ── */
.ty-details-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
@media (max-width: 560px) {
  .ty-details-grid { grid-template-columns: 1fr; gap: 20px; }
}
.ty-detail__label {
  font-size: .72rem; font-weight: 700; color: #aaa;
  text-transform: uppercase; letter-spacing: .09em;
  margin-bottom: 9px;
}
.ty-detail__value { font-size: .88rem; color: #333; line-height: 1.7; }
.ty-detail__value strong { color: #111; }
.ty-detail__date { font-size: .8rem; color: #aaa; }

/* ── What's next ── */
.ty-next-steps { list-style: none; padding: 0; margin: 0; }
.ty-next-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid #f3efe8;
}
.ty-next-step:last-child { border-bottom: none; padding-bottom: 0; }
.ty-next-step__icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(176,73,46,.08);
  border: 1.5px solid rgba(176,73,46,.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ty-next-step__title { font-size: .9rem; font-weight: 700; color: #111; margin-bottom: 3px; }
.ty-next-step__desc { font-size: .82rem; color: #888; line-height: 1.5; }

/* ── CTA buttons ── */
.ty-actions {
  display: flex; gap: 14px; margin-top: 28px; margin-bottom: 28px;
}
.ty-btn-primary {
  flex: 1; min-width: 180px;
  background: linear-gradient(135deg, #b0492e 0%, #8a4359 55%, #b0492e 100%);
  background-size: 200% 100%;
  color: #fff; border: none; border-radius: 14px;
  padding: 17px 28px; font-size: .92rem; font-weight: 700;
  cursor: pointer; font-family: inherit; letter-spacing: .02em;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 24px rgba(176,73,46,.32);
  transition: transform .2s, box-shadow .2s;
}
.ty-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(176,73,46,.42); color: #fff; }
.ty-btn-secondary {
  flex: 1; min-width: 160px;
  background: #fff; color: #333; border: 1.5px solid #e0dbd0;
  border-radius: 14px; padding: 17px 28px;
  font-size: .92rem; font-weight: 600; cursor: pointer; font-family: inherit;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: border-color .2s, background .2s;
}
.ty-btn-secondary:hover { border-color: var(--gold); background: #faf8f4; color: #111; }
@media (max-width: 500px) {
  .ty-actions { flex-direction: column; }
}

/* ── Trust strip ── */
.ty-trust-bar {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 20px 0 10px; flex-wrap: wrap;
}
.ty-trust-bar__item {
  display: flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; color: #aaa;
}
.ty-trust-bar__dot { color: var(--gold); font-size: .6rem; }

/* Ensure old default WC thank you styles don't conflict */
.woocommerce-order-received .woo-wrap,
.woocommerce-order-pay .woo-wrap { padding-top: 0; }

/* ════════════════════════════════
   MINI-CART DRAWER (cart/mini-cart.php)
════════════════════════════════ */

/* fragment wrapper — transparent layout pass-through */
.widget_shopping_cart_content { display: flex; flex-direction: column; flex: 1; min-height: 0; }

/* Cancel mobile padding added by older media query (items have their own padding) */
@media (max-width: 480px) {
  .cart-drawer__body { padding-left: 0; padding-right: 0; }
}

/* Cart drawer body scrolls — override old padding rule */
.cart-drawer__body {
  flex: 1; overflow-y: auto; display: flex; flex-direction: column; min-height: 0; padding: 0;
}

/* Items list */
.lmy-mini-items { list-style: none; margin: 0; padding: 0; }

.lmy-mini-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  position: relative;
}

.lmy-mini-item__img {
  flex-shrink: 0; width: 72px; height: 72px;
  border-radius: 8px; overflow: hidden; background: var(--snow);
}
.lmy-mini-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lmy-mini-item__img a { display: block; width: 100%; height: 100%; }

.lmy-mini-item__info { flex: 1; min-width: 0; padding-right: 22px; }
.lmy-mini-item__name { font-size: .82rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 6px; }
.lmy-mini-item__name a { color: inherit; text-decoration: none; }
.lmy-mini-item__name a:hover { color: var(--gold); }

/* Variation data (e.g. Size: M) */
.lmy-mini-item__info .woocommerce-Price-amount { color: var(--gold); font-weight: 700; }
.lmy-mini-item__info dl.variation { margin: 0 0 6px; font-size: .75rem; color: var(--mid); }
.lmy-mini-item__info dl.variation dt,
.lmy-mini-item__info dl.variation dd { display: inline; margin: 0; }
.lmy-mini-item__info dl.variation dt::after { content: ':'; }
.lmy-mini-item__info dl.variation dd::after { content: ' '; }

.lmy-mini-item__row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 8px;
}
.lmy-mini-item__price { font-size: .82rem; color: var(--gold); font-weight: 700; }

/* Qty controls */
.lmy-mini-item__controls {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden; width: fit-content;
}
.lmy-qty-btn {
  background: none; border: none; cursor: pointer;
  width: 30px; height: 28px; font-size: 1.05rem; line-height: 1;
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.lmy-qty-btn:hover { background: var(--snow); }
.lmy-qty-val {
  min-width: 26px; text-align: center; font-size: .82rem; font-weight: 600; color: var(--dark);
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  line-height: 28px; padding: 0 2px;
}

/* Remove × button */
.lmy-mini-item__remove {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; cursor: pointer; color: var(--mid);
  padding: 4px; line-height: 1; transition: color .15s;
}
.lmy-mini-item__remove:hover { color: #c00; }

/* Subtotal row */
.lmy-mini-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; border-top: 2px solid var(--border);
  font-size: .88rem; font-weight: 600; color: var(--dark);
  background: var(--white);
}
.lmy-mini-subtotal strong { font-size: .97rem; color: var(--gold); }

/* Footer buttons */
.lmy-mini-footer {
  display: flex; flex-direction: column; gap: 10px; padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.lmy-mini-footer .btn { width: 100%; text-align: center; justify-content: center; }

/* Empty state */
.lmy-mini-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 60px 24px; text-align: center;
}
.lmy-mini-empty svg { color: var(--border); }
.lmy-mini-empty p { font-size: .9rem; color: var(--mid); margin: 0; }

/* ════════════════════════════════
   CART PAGE (cart/cart.php)
════════════════════════════════ */
.lmy-cart-section { padding: 60px 0 100px; min-height: 60vh; background: var(--snow); }

.lmy-cart-heading {
  font-family: var(--serif); font-size: clamp(1.6rem,4vw,2.4rem);
  font-weight: 700; color: var(--dark); margin: 0 0 40px; letter-spacing: -.02em;
}

/* Empty cart */
.lmy-cart-empty {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  padding: 80px 0; text-align: center;
}
.lmy-cart-empty svg { color: #ddd; }
.lmy-cart-empty p { font-size: 1.05rem; color: var(--mid); margin: 0; }

/* 2-column layout */
.lmy-cart-layout {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start;
}
@media (max-width: 900px) {
  .lmy-cart-layout { grid-template-columns: 1fr; }
}

/* Items panel */
.lmy-cart-items { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border); overflow: hidden; }

/* Cart rows */
.lmy-cart-list { display: flex; flex-direction: column; }

.lmy-cart-row {
  display: grid; grid-template-columns: 88px 1fr auto auto auto;
  gap: 16px; align-items: center; padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.lmy-cart-row:last-child { border-bottom: none; }
@media (max-width: 640px) {
  .lmy-cart-row { grid-template-columns: 72px 1fr auto; grid-template-rows: auto auto; gap: 10px 12px; padding: 16px; }
  .lmy-cart-row__qty     { grid-column: 2; grid-row: 2; }
  .lmy-cart-row__subtotal { grid-column: 3; grid-row: 2; }
  .lmy-cart-row__remove  { grid-column: 3; grid-row: 1; justify-self: end; }
}

.lmy-cart-row__img {
  width: 88px; height: 88px; border-radius: 8px; overflow: hidden; background: var(--snow); flex-shrink: 0;
}
.lmy-cart-row__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lmy-cart-row__img a { display: block; width: 100%; height: 100%; }
@media (max-width: 640px) { .lmy-cart-row__img { width: 72px; height: 72px; } }

.lmy-cart-row__details { min-width: 0; }
.lmy-cart-row__name { font-size: .92rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 4px; }
.lmy-cart-row__name a { color: inherit; text-decoration: none; }
.lmy-cart-row__name a:hover { color: var(--gold); }
.lmy-cart-row__unit-price { font-size: .82rem; color: var(--mid); margin-top: 6px; }

/* WC variation data */
.lmy-cart-row__details dl.variation { font-size: .78rem; color: var(--mid); margin: 4px 0 0; }
.lmy-cart-row__details dl.variation dt,
.lmy-cart-row__details dl.variation dd { display: inline; margin: 0; }
.lmy-cart-row__details dl.variation dt::after { content: ':'; }

/* Qty input — override WC default */
.lmy-cart-row__qty .quantity { display: flex; }
.lmy-cart-row__qty .qty {
  width: 60px; height: 36px; border: 1px solid var(--border); border-radius: 6px;
  text-align: center; font-size: .88rem; font-weight: 600; color: var(--dark);
  background: var(--white); padding: 0 8px;
}
.lmy-cart-qty-single { font-size: .88rem; font-weight: 600; color: var(--dark); }

.lmy-cart-row__subtotal { font-size: .92rem; font-weight: 700; color: var(--dark); white-space: nowrap; }

.lmy-cart-remove {
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); transition: color .15s;
}
.lmy-cart-remove:hover { color: #c00; }

/* Actions row */
.lmy-cart-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  padding: 20px 24px; border-top: 1px solid var(--border);
  background: #faf8f4;
}
.lmy-coupon { display: flex; gap: 8px; flex: 1; min-width: 220px; }
.lmy-coupon__input {
  flex: 1; height: 40px; border: 1px solid var(--border); border-radius: 8px;
  padding: 0 14px; font-size: .88rem; color: var(--dark); background: var(--white);
  outline: none;
}
.lmy-coupon__input:focus { border-color: var(--gold); }
.lmy-coupon__btn { height: 40px; padding: 0 18px; font-size: .82rem; }
.lmy-cart-update-btn { height: 40px; padding: 0 18px; font-size: .82rem; margin-left: auto; }

/* Summary panel — WC cart totals styling */
.lmy-cart-summary .cart_totals {
  background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border);
  padding: 28px 28px 24px;
}
.lmy-cart-summary h2 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: var(--dark);
  margin: 0 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border);
}
.lmy-cart-summary table.shop_table { width: 100%; border-collapse: collapse; }
.lmy-cart-summary table.shop_table th,
.lmy-cart-summary table.shop_table td {
  padding: 9px 0; font-size: .9rem; color: var(--dark); border: none; text-align: left;
}
.lmy-cart-summary table.shop_table tfoot tr:last-child th,
.lmy-cart-summary table.shop_table tfoot tr:last-child td {
  font-size: 1rem; font-weight: 700; padding-top: 14px; border-top: 2px solid var(--border);
}
.lmy-cart-summary table.shop_table tfoot tr:last-child td .woocommerce-Price-amount { color: var(--gold); }
.lmy-cart-summary .woocommerce-shipping-calculator { margin-top: 12px; font-size: .82rem; }
.lmy-cart-summary .wc-proceed-to-checkout { margin-top: 20px; }
.lmy-cart-summary .wc-proceed-to-checkout .checkout-button {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--white); border: none; border-radius: var(--r-md);
  padding: 14px 24px; font-size: .95rem; font-weight: 700; cursor: pointer;
  letter-spacing: .03em; text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s;
}
.lmy-cart-summary .wc-proceed-to-checkout .checkout-button:hover { background: #b8882f; transform: translateY(-1px); }

/* Applied coupon tags */
.lmy-cart-summary .woocommerce-remove-coupon { color: var(--mid); font-size: .8rem; margin-left: 8px; }
.cart-discount td { color: var(--gold); }

/* ════════ Video Testimonials (used on home + product page) ════════ */
.vtesti-section { background: var(--bg-warm); }
.vtesti-grid {
  display: grid; gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.vtesti-grid--1 { grid-template-columns: minmax(0, 680px); margin: 0 auto; }
.vtesti-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.vtesti-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vtesti-grid--4 { grid-template-columns: repeat(4, 1fr); }
.vtesti-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.vtesti-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.vtesti-embed {
  position: relative; width: 100%; padding-top: 56.25%; background: #000;
}
.vtesti-embed iframe,
.vtesti-embed video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; border: none;
}
.vtesti-info { padding: 16px 20px; }
.vtesti-name { font-size: .95rem; font-weight: 700; color: var(--black); }
.vtesti-role { font-size: .8rem; color: var(--muted); margin-top: 3px; }
@media (max-width: 900px) {
  .vtesti-grid--3, .vtesti-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vtesti-grid--2, .vtesti-grid--3, .vtesti-grid--4 { grid-template-columns: 1fr; }
}
