/* ═══════════════════════════════════════════════════════════════════
   ST. LLOYD — Precision Wellness
   Clinical Luxury Design System
   Matte White · Midnight Navy · Metallic Gold
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --white:  #FBFBF9;
  --white-2:#F4F3EF;
  --navy:   #0A1A33;
  --navy-2: #0E2242;
  --navy-3: #132C55;
  --gold:   #C6A15B;
  --gold-2: #E8CE8C;
  --gold-3: #A8843F;
  --silver: #C9CED6;
  --text:   #2A2A2A;
  --muted:  #6E7480;
  --line:   #E7E4DC;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-1: 0 4px 24px rgba(10,26,51,.06);
  --shadow-2: 0 18px 60px rgba(10,26,51,.12);
  --shadow-gold: 0 10px 34px rgba(198,161,91,.28);
  --serif: 'Playfair Display', 'Times New Roman', serif;
  --sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --ease:  cubic-bezier(.22,.61,.21,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0; background: var(--white); color: var(--text);
  font-family: var(--sans); font-weight: 400; font-size: 16px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
h1,h2,h3,h4,h5 { font-family: var(--serif); font-weight: 600; color: var(--navy); line-height: 1.2; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--gold); font-weight: 500; }
::selection { background: var(--gold); color: var(--navy); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-navy, .btn-gold, .btn-ghost, .btn-outline-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: 12px; letter-spacing: 2.2px;
  text-transform: uppercase; padding: 15px 32px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: all .35s var(--ease); white-space: nowrap;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold { background: linear-gradient(120deg, var(--gold) 0%, var(--gold-2) 100%); color: var(--navy); box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 44px rgba(198,161,91,.45); filter: brightness(1.05); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-lg { padding: 18px 42px; font-size: 13px; }
.btn-sm { padding: 10px 20px; letter-spacing: 1.6px; }
.btn-navy:disabled, .btn-gold:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }

.link-gold { color: var(--gold-3); font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; border-bottom: 1px solid var(--gold-2); padding-bottom: 2px; }
.link-gold:hover { color: var(--navy); border-color: var(--navy); }
.link-navy { color: var(--navy); font-weight: 600; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.link-navy:hover { color: var(--gold-3); }
.text-gold { color: var(--gold) !important; }

/* ── Loading screen ──────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 2000; background: var(--white);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity .6s var(--ease), visibility .6s;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-inner img { width: 110px; height: 74px; object-fit: contain; opacity: .95; }
.loader-ring {
  width: 44px; height: 44px; margin: 22px auto 14px; border-radius: 50%;
  border: 2px solid var(--line); border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
.loader-tag { font-size: 10px; letter-spacing: 4px; color: var(--muted); text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Announcement ────────────────────────────────────────────────── */
.announcement { background: var(--navy); color: var(--gold-2); font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; padding: 9px 0; }
.announce-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(198,161,91,.5); } 50% { box-shadow: 0 0 0 6px rgba(198,161,91,0); } }
.announce-link { color: #fff; font-weight: 600; border-bottom: 1px solid var(--gold); }
.announce-link:hover { color: var(--gold-2); }

/* ── Header ──────────────────────────────────────────────────────── */
#site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(251,251,249,.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(231,228,220,.6); transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: var(--shadow-1); }
#site-header .navbar { padding: 12px 0; }
.navbar-brand img { height: 46px; width: auto; }
.nav-link {
  font-size: 12.5px; font-weight: 500; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--navy) !important; padding: 10px 14px !important; position: relative;
}
.nav-link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-toggle { background: none; border: 0; padding: 8px; display: flex; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: .3s; }
.mega-menu { width: min(760px, 92vw); padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-2); margin-top: 10px; }
.mega-item { display: block; padding: 12px 14px; border-radius: var(--radius-sm); transition: background .25s; }
.mega-item:hover { background: var(--white-2); }
.mega-name { display: block; font-family: var(--serif); font-weight: 600; color: var(--navy); font-size: 16px; }
.mega-item:hover .mega-name { color: var(--gold-3); }
.mega-tag { font-size: 11.5px; color: var(--muted); letter-spacing: .5px; }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.icon-btn {
  position: relative; background: none; border: 0; padding: 10px; color: var(--navy); font-size: 16px;
  transition: color .25s, transform .25s; display: inline-flex; align-items: center; justify-content: center;
}
.icon-btn svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon-btn:hover { color: var(--gold-3); transform: translateY(-1px); }
.badge-count {
  position: absolute; top: 1px; right: -1px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--gold); color: var(--navy); border-radius: 999px; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: transform .3s;
}
.badge-count.bump { transform: scale(1.35); }

/* ── Search overlay ──────────────────────────────────────────────── */
#searchOverlay {
  position: fixed; inset: 0; z-index: 1500; background: rgba(10,26,51,.96); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
#searchOverlay.open { opacity: 1; visibility: visible; }
.search-close { position: absolute; top: 28px; right: 36px; background: none; border: 0; color: #fff; font-size: 40px; line-height: 1; }
.search-form { text-align: center; width: min(640px, 90vw); }
.search-eyebrow { color: var(--gold-2); letter-spacing: 4px; font-size: 11px; text-transform: uppercase; }
.search-form input {
  width: 100%; background: transparent; border: 0; border-bottom: 2px solid var(--gold);
  color: #fff; font-family: var(--serif); font-size: clamp(26px, 4vw, 44px); text-align: center;
  padding: 18px 8px; outline: none;
}
.search-form input::placeholder { color: rgba(255,255,255,.35); }
.search-form .btn-navy { background: var(--gold); color: var(--navy); margin-top: 28px; }

/* ── Offcanvas (mobile / drawer) ─────────────────────────────────── */
.luxury-offcanvas { background: var(--white); width: 320px; }
.m-link { font-family: var(--serif); font-size: 22px; color: var(--navy); padding: 6px 0; }
.m-link:hover { color: var(--gold-3); }
.m-sub { color: var(--muted); font-size: 14px; padding-left: 8px; }
.cart-drawer { width: 420px; background: var(--white); }
.drawer-title { font-family: var(--serif); }
.drawer-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.drawer-item img { width: 64px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }
.drawer-item h6 { font-family: var(--sans); font-weight: 600; font-size: 14px; margin: 0 0 2px; }
.drawer-item .di-type { font-size: 11px; color: var(--gold-3); letter-spacing: 1px; text-transform: uppercase; }
.drawer-footer { padding: 20px; border-top: 1px solid var(--line); background: var(--white-2); }
.drawer-note { font-size: 11.5px; color: var(--muted); letter-spacing: .4px; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; background:
  radial-gradient(1200px 600px at 85% -10%, rgba(198,161,91,.12), transparent 60%),
  radial-gradient(900px 500px at -10% 110%, rgba(10,26,51,.06), transparent 55%), var(--white);
}
#moleculeCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .55; }
.hero .container { position: relative; z-index: 2; }
.min-vh-hero { min-height: calc(92vh - 140px); padding: 70px 0; }
.hero-orbs i { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 1; animation: drift 14s ease-in-out infinite alternate; }
.hero-orbs i:nth-child(1) { width: 320px; height: 320px; background: rgba(198,161,91,.18); top: -60px; right: 8%; }
.hero-orbs i:nth-child(2) { width: 260px; height: 260px; background: rgba(10,26,51,.08); bottom: -40px; left: 6%; animation-delay: -5s; }
.hero-orbs i:nth-child(3) { width: 180px; height: 180px; background: rgba(201,206,214,.3); top: 40%; left: 45%; animation-delay: -9s; }
@keyframes drift { to { transform: translate(30px, -30px) scale(1.08); } }

.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-3); }
.eyebrow-line { width: 42px; height: 1.5px; background: var(--gold); display: inline-block; }
.eyebrow.light { color: var(--gold-2); }
.hero-title { font-size: clamp(52px, 7.2vw, 104px); font-weight: 600; letter-spacing: -1px; margin: 18px 0 22px; }
.hero-sub { font-size: clamp(16px, 1.6vw, 20px); color: var(--muted); max-width: 520px; font-weight: 300; line-height: 1.8; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 30px; }
.hero-trust { display: flex; align-items: center; gap: 16px; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); flex-wrap: wrap; }
.hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.hero-product-wrap { position: relative; display: flex; justify-content: center; }
.hero-product { width: min(430px, 78%); border-radius: 28px; box-shadow: var(--shadow-2); position: relative; z-index: 2; }
.hero-ring { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; border: 1.5px solid rgba(198,161,91,.45); animation: ringSpin 26s linear infinite; z-index: 1; }
.hero-ring::after { content: '✦'; position: absolute; top: -11px; left: 50%; color: var(--gold); font-size: 18px; }
@keyframes ringSpin { to { transform: rotate(360deg); } }
.float-anim { animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
.glass-chip {
  position: absolute; z-index: 3; background: rgba(255,255,255,.72); backdrop-filter: blur(14px);
  border: 1px solid rgba(198,161,91,.35); border-radius: 16px; padding: 12px 18px; text-align: center;
  box-shadow: var(--shadow-1); animation: floatY 7s ease-in-out infinite;
}
.glass-chip strong { display: block; font-family: var(--serif); font-size: 24px; color: var(--navy); }
.glass-chip span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.chip-1 { top: 12%; left: 6%; animation-delay: -1s; }
.chip-2 { bottom: 22%; right: 4%; animation-delay: -3s; }
.chip-3 { bottom: 4%; left: 14%; animation-delay: -5s; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 1.5px solid var(--navy); border-radius: 20px; z-index: 3; opacity: .5; }
.scroll-cue span { position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: var(--gold); animation: cue 1.8s infinite; }
@keyframes cue { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(16px); opacity: 0; } }

/* ── Launch banner ───────────────────────────────────────────────── */
.launch-banner { background: var(--navy); color: #fff; padding: 54px 0; position: relative; overflow: hidden; }
.launch-banner::before { content: ''; position: absolute; inset: 0; background:
  radial-gradient(600px 200px at 80% 50%, rgba(198,161,91,.22), transparent 70%); }
.launch-banner .container { position: relative; }
.lb-eyebrow { color: var(--gold); letter-spacing: 5px; font-size: 11px; font-weight: 600; margin: 0; }
.lb-title { color: #fff; font-size: clamp(28px, 4vw, 46px); margin: 4px 0 6px; }
.lb-sub { color: var(--silver); margin: 0; }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-soft { background: var(--white-2); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--silver); }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-title { font-size: clamp(34px, 4.4vw, 56px); margin: 14px 0 16px; }
.section-title.light { color: #fff; }
.section-sub { color: var(--muted); font-size: 17px; font-weight: 300; }
.section-navy .section-sub { color: var(--silver); }

/* ── Category cards ──────────────────────────────────────────────── */
.cat-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-1); transition: transform .45s var(--ease), box-shadow .45s; height: 100%; animation-delay: var(--d, 0s); }
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.cat-media { display: block; position: relative; overflow: hidden; aspect-ratio: 6/5.4; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.06); }
.cat-shine { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 48%, transparent 60%); transform: translateX(-100%); transition: transform .8s var(--ease); }
.cat-card:hover .cat-shine { transform: translateX(100%); }
.cat-body { padding: 24px 26px 26px; }
.cat-body h3 { font-size: 24px; margin: 0 0 4px; }
.cat-body p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.cat-links { display: flex; justify-content: space-between; align-items: center; }

/* ── Flagship ────────────────────────────────────────────────────── */
.flagship { position: relative; overflow: hidden; }
.flag-media { position: relative; display: flex; justify-content: center; }
.flag-media img { width: min(400px, 85%); border-radius: 24px; box-shadow: 0 30px 80px rgba(0,0,0,.35); position: relative; z-index: 2; }
.flag-ring { position: absolute; width: 70%; aspect-ratio: 1; border-radius: 50%; border: 1px dashed rgba(232,206,140,.4); animation: ringSpin 30s linear infinite reverse; }
.flag-copy p { color: var(--silver); }
.flag-sub { color: var(--gold-2) !important; font-size: 18px; letter-spacing: 1px; }
.flag-benefits { list-style: none; padding: 0; margin: 26px 0; columns: 2; gap: 26px; }
.flag-benefits li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 14.5px; color: #fff; break-inside: avoid; }
.flag-benefits.dark li { color: var(--navy); }
.benefit-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; box-shadow: 0 0 0 4px rgba(198,161,91,.2); }
.flag-buy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px; display: flex; flex-direction: column; gap: 18px; }
.price-block .price { font-family: var(--serif); font-size: 40px; color: #fff; }
.price-block .price-sub { display: block; color: var(--silver); font-size: 13px; }

/* ── Trust ───────────────────────────────────────────────────────── */
.trust-row { margin-bottom: 70px; }
.trust-item { text-align: center; padding: 0 14px; }
.trust-item svg { width: 44px; height: 44px; stroke: var(--gold); fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 14px; }
.trust-item h4 { font-size: 19px; margin-bottom: 6px; }
.trust-item p { color: var(--muted); font-size: 13.5px; margin: 0; }
.counter-band { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); border-radius: var(--radius); padding: 40px 20px; box-shadow: var(--shadow-2); }
.counter-cell { text-align: center; position: relative; }
.counter-cell + .counter-cell::before { content: ''; position: absolute; left: 0; top: 18%; height: 64%; width: 1px; background: rgba(232,206,140,.25); }
.counter-num { display: block; font-family: var(--serif); font-size: clamp(40px, 5vw, 66px); color: var(--gold-2); font-weight: 600; }
.counter-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--silver); }

/* ── Product cards ───────────────────────────────────────────────── */
.product-card { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); transition: transform .45s var(--ease), box-shadow .45s; height: 100%; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.pc-media { display: block; position: relative; overflow: hidden; aspect-ratio: 4/4.6; background: var(--white-2); }
.pc-media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s var(--ease); }
.product-card:hover .pc-media img { transform: scale(1.05); }
.pc-glow { position: absolute; inset: 0; background: radial-gradient(500px 200px at 50% 100%, rgba(198,161,91,.18), transparent 70%); opacity: 0; transition: opacity .5s; }
.product-card:hover .pc-glow { opacity: 1; }
.pc-badge { position: absolute; top: 14px; left: 14px; z-index: 2; background: var(--navy); color: var(--gold-2); font-size: 10px; font-weight: 700; letter-spacing: 2px; padding: 6px 12px; border-radius: 999px; }
.pc-badge.soon { background: #fff; color: var(--gold-3); border: 1px solid var(--gold); }
.pc-badge.big { top: 20px; left: 20px; font-size: 11px; }
.pc-body { padding: 20px 22px 24px; position: relative; flex: 1; display: flex; flex-direction: column; }
.pc-cat { font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold-3); margin: 0 0 4px; }
.pc-name { font-size: 21px; margin: 0 0 2px; }
.pc-name a:hover { color: var(--gold-3); }
.pc-sub { font-size: 13px; color: var(--muted); margin: 0 0 14px; }
.pc-foot { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: 10px; }
.pc-price { font-family: var(--serif); font-size: 20px; color: var(--navy); }
.pc-price s { color: var(--muted); font-size: 15px; margin-right: 6px; }
.pc-soon { font-family: var(--serif); font-style: italic; color: var(--gold-3); font-size: 18px; }
.pc-notify-link { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--navy); border-bottom: 1px solid var(--gold); }
.pc-notify-link:hover { color: var(--gold-3); }
.pc-wish { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .3s; box-shadow: var(--shadow-1); }
.pc-wish svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.pc-wish:hover, .pc-wish.active { color: #C0392B; border-color: #C0392B; }
.pc-wish.active svg { fill: #C0392B; }

/* ── Shop toolbar ────────────────────────────────────────────────── */
.page-hero { padding: 90px 0 60px; background:
  radial-gradient(800px 300px at 70% -20%, rgba(198,161,91,.14), transparent 65%), var(--white); text-align: center; }
.page-title { font-size: clamp(40px, 5.5vw, 68px); }
.page-sub { color: var(--muted); font-size: 16.5px; max-width: 640px; margin: 12px auto 0; }
.page-sub a { color: var(--gold-3); border-bottom: 1px solid var(--gold-2); }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { padding: 9px 20px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 600; color: var(--muted); background: #fff; transition: .3s; }
.chip:hover { border-color: var(--gold); color: var(--gold-3); }
.chip.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.shop-search input { border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px; font-size: 14px; width: 230px; outline: none; transition: border-color .3s; }
.shop-search input:focus { border-color: var(--gold); }
.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { width: 54px; height: 54px; stroke: var(--gold); fill: none; stroke-width: 1.2; margin-bottom: 16px; }

/* ── Product detail ──────────────────────────────────────────────── */
.breadcrumbs { display: flex; gap: 10px; align-items: center; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); padding-top: 28px; flex-wrap: wrap; }
.breadcrumbs a:hover { color: var(--gold-3); }
.breadcrumbs em { color: var(--navy); font-style: normal; font-weight: 600; }
.pd-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white-2); box-shadow: var(--shadow-1); cursor: zoom-in; }
.pd-main img { width: 100%; transition: transform .25s var(--ease); transform-origin: center; }
.pd-zoom-hint { position: absolute; bottom: 14px; right: 14px; background: rgba(255,255,255,.85); border-radius: 999px; padding: 6px 14px; font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }
.pd-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.pd-thumb { width: 76px; height: 92px; border-radius: 10px; overflow: hidden; border: 2px solid transparent; background: var(--white-2); padding: 0; cursor: pointer; transition: .3s; }
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--gold); }
.pd-360 { display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: italic; color: var(--gold-3); background: #fff; border: 2px dashed var(--gold-2); font-size: 15px; }
.pd-title { font-size: clamp(34px, 4vw, 52px); margin: 6px 0 4px; }
.pd-subtitle { color: var(--gold-3); font-size: 16px; letter-spacing: 1px; }
.pd-rating { display: inline-flex; align-items: center; gap: 10px; margin: 12px 0; font-size: 13px; color: var(--muted); }
.stars { letter-spacing: 2px; font-size: 15px; }
.star { color: #DFDCD3; }
.star-full { color: var(--gold); }
.star-partial { color: var(--gold-2); }
.pd-benefits { list-style: none; padding: 0; margin: 14px 0 24px; columns: 2; gap: 22px; }
.pd-benefits li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; margin-bottom: 9px; break-inside: avoid; }
.price-now { font-family: var(--serif); font-size: 40px; color: var(--navy); display: flex; align-items: baseline; gap: 12px; }
.price-now s { font-size: 22px; color: var(--muted); }
.purchase-toggle { display: grid; gap: 10px; margin: 18px 0; }
.pt-opt { display: flex; justify-content: space-between; align-items: center; text-align: left; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 15px 18px; cursor: pointer; transition: .3s; }
.pt-opt strong { font-size: 13px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--navy); }
.pt-opt span { font-family: var(--serif); font-size: 20px; color: var(--navy); }
.pt-opt.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.18); background: linear-gradient(120deg, #fff, #FDF9F0); }
.save-badge { background: var(--gold); color: var(--navy); font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 999px; letter-spacing: 1px; }
.buy-row { display: flex; gap: 12px; align-items: stretch; }
.qty-stepper { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; overflow: hidden; background: #fff; }
.qty-stepper button { width: 42px; height: 100%; border: 0; background: none; font-size: 18px; color: var(--navy); cursor: pointer; transition: .25s; }
.qty-stepper button:hover { color: var(--gold-3); }
.qty-stepper input { width: 46px; text-align: center; border: 0; font-weight: 600; color: var(--navy); -moz-appearance: textfield; }
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-stepper.sm { transform: scale(.9); transform-origin: left; }
.wish-btn { width: 54px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; color: var(--muted); font-size: 20px; cursor: pointer; transition: .3s; }
.wish-btn:hover, .wish-btn.active { color: #C0392B; border-color: #C0392B; }
.pd-meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 18px; font-size: 12.5px; color: var(--muted); }
.pd-sku { font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); margin-top: 12px; }
.waitlist-panel { border: 1.5px dashed var(--gold); border-radius: var(--radius); padding: 28px; background: linear-gradient(140deg, #fff, #FBF6EA); }
.waitlist-panel h4 { font-size: 22px; }
.waitlist-panel form { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }
.waitlist-panel input { flex: 1; min-width: 220px; border: 1.5px solid var(--line); border-radius: 999px; padding: 14px 22px; outline: none; }
.fbt-panel { margin-top: 26px; background: var(--white-2); border-radius: var(--radius); padding: 18px 20px; }
.fbt-title { font-size: 11px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold-3); font-weight: 700; }
.fbt-items { display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; color: var(--navy); margin-bottom: 8px; }
.fbt-row { display: flex; justify-content: space-between; align-items: center; }
.fbt-row strong { font-family: var(--serif); font-size: 22px; color: var(--navy); }

.tab-nav { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--line); margin-top: 70px; }
.tab-nav button { background: none; border: 0; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 14px 20px; position: relative; transition: .3s; }
.tab-nav button::after { content: ''; position: absolute; left: 20px; right: 20px; bottom: -1px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .3s var(--ease); }
.tab-nav button.active { color: var(--navy); }
.tab-nav button.active::after { transform: scaleX(1); }
.tab-h { font-size: 17px; letter-spacing: .6px; margin-bottom: 16px; font-family: var(--serif); }
.tab-note { font-size: 13px; color: var(--muted); }
.lux-table { font-size: 14px; }
.lux-table thead th { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-3); border-bottom: 2px solid var(--gold-2) !important; }
.lux-table td { padding: 12px 14px !important; vertical-align: middle; }
.review-card { border-bottom: 1px solid var(--line); padding: 18px 0; }
.review-card p { font-size: 14.5px; color: var(--text); }
.review-author { color: var(--muted); }
.verified { color: var(--gold-3); font-weight: 600; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; margin-left: 6px; }
.rating-input { display: flex; gap: 2px; margin-bottom: 14px; }
.rating-input button { background: none; border: 0; font-size: 26px; color: #DFDCD3; cursor: pointer; transition: .2s; padding: 0 2px; }
.rating-input button.lit { color: var(--gold); }

/* glass / forms */
.glass-panel { background: rgba(255,255,255,.78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(231,228,220,.8); border-radius: var(--radius); box-shadow: var(--shadow-1); padding: 28px; }
.alert-lux { border-radius: var(--radius-sm); padding: 14px 20px; font-size: 14px; letter-spacing: .4px; }
.alert-lux.success { background: #EEF6EE; border: 1px solid #BFDFC0; color: #2C6E35; }
.alert-lux.error { background: #FBEFEA; border: 1px solid #EFC9B8; color: #9A3B1B; }
.lux-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.lux-input { width: 100%; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; padding: 13px 16px; font-size: 14.5px; color: var(--text); outline: none; transition: border-color .3s, box-shadow .3s; }
.lux-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.15); }
.lux-input[type="file"] { padding: 10px; }
.lux-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); cursor: pointer; }
.lux-check input { width: 18px; height: 18px; accent-color: var(--navy); }
.lux-check a { color: var(--gold-3); }
.fn-msg { font-size: 13px; margin: 8px 0 0; min-height: 18px; }
.fn-msg.ok { color: #2C6E35; }
.fn-msg.err { color: #9A3B1B; }
.fn-msg.light { color: rgba(255,255,255,.8); }

/* accordions */
.luxury-accordion .accordion-item { background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.luxury-accordion .accordion-button { background: transparent; font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--navy); padding: 22px 8px; box-shadow: none; }
.luxury-accordion .accordion-button:not(.collapsed) { color: var(--gold-3); }
.luxury-accordion .accordion-button::after { filter: grayscale(1) sepia(.4); transform-origin: center; transition: .3s; }
.luxury-accordion .accordion-body { color: var(--muted); font-size: 15px; padding: 0 8px 24px; }
.faq-group { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold-3); margin: 40px 0 16px; }
.faq-group:first-child { margin-top: 0; }

/* ── Cart page ───────────────────────────────────────────────────── */
.cart-line { display: flex; gap: 20px; padding: 20px; margin-bottom: 16px; }
.cl-media { width: 110px; flex: none; border-radius: var(--radius-sm); overflow: hidden; }
.cl-media img { width: 100%; height: 100%; object-fit: cover; }
.cl-body { flex: 1; }
.cl-body h4 { font-size: 19px; margin-bottom: 2px; }
.cl-type { font-size: 11px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-3); }
.cl-row { display: flex; align-items: center; gap: 18px; margin-top: 12px; flex-wrap: wrap; }
.cl-price { color: var(--muted); font-size: 14px; }
.cl-total { font-family: var(--serif); font-size: 20px; color: var(--navy); margin-left: auto; }
.cl-remove { background: none; border: 0; color: var(--muted); font-size: 14px; cursor: pointer; transition: .3s; }
.cl-remove:hover { color: #C0392B; }
.summary-card { padding: 30px; }
.summary-title { font-size: 24px; margin-bottom: 18px; }
.coupon-applied { display: flex; justify-content: space-between; align-items: center; background: #F6F1E4; border: 1px dashed var(--gold); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 13.5px; }
.sum-lines { border-top: 1px solid var(--line); margin-top: 18px; padding-top: 14px; }
.sum-lines > div { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 9px; color: var(--muted); }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 2px solid var(--navy); margin-top: 12px; padding-top: 14px; margin-bottom: 18px; }
.sum-total strong { font-family: var(--serif); font-size: 30px; color: var(--navy); }
.cs-card { background: #fff; border-radius: var(--radius-sm); padding: 14px; text-align: center; box-shadow: var(--shadow-1); height: 100%; }
.cs-card img { height: 120px; width: 100%; object-fit: cover; border-radius: 8px; }
.cs-card p { font-size: 13px; font-weight: 600; color: var(--navy); margin: 8px 0 2px; }
.cs-card span { font-family: var(--serif); font-size: 17px; display: block; margin-bottom: 8px; }

/* ── Checkout ────────────────────────────────────────────────────── */
.checkout-block { margin-bottom: 22px; }
.co-h { display: flex; align-items: center; gap: 12px; font-size: 21px; margin-bottom: 18px; }
.co-h span { width: 32px; height: 32px; flex: none; border-radius: 50%; background: var(--navy); color: var(--gold-2); display: flex; align-items: center; justify-content: center; font-family: var(--sans); font-size: 13px; font-weight: 600; }
.ship-methods, .pay-methods { display: grid; gap: 10px; }
.ship-method { display: flex; align-items: center; gap: 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); padding: 14px 18px; cursor: pointer; transition: .3s; background: #fff; }
.ship-method:has(input:checked) { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(198,161,91,.15); }
.ship-method input { accent-color: var(--navy); width: 18px; height: 18px; }
.sm-name { font-weight: 600; color: var(--navy); font-size: 14px; }
.sm-eta { color: var(--muted); font-size: 12.5px; }
.sm-rate { margin-left: auto; font-family: var(--serif); font-size: 19px; color: var(--navy); }
.co-items { max-height: 320px; overflow: auto; margin-bottom: 8px; }
.co-item { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.co-item img { width: 52px; height: 64px; object-fit: cover; border-radius: 8px; }
.co-item p { margin: 0; font-size: 14px; font-weight: 600; color: var(--navy); }
.co-item small { color: var(--muted); }
.co-item strong { margin-left: auto; font-family: var(--serif); color: var(--navy); white-space: nowrap; }
.sticky-summary { position: sticky; top: 120px; }
.confirmation { padding-top: 70px; }
.confirm-panel { padding: 50px 30px; }
.confirm-check { width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%; background: linear-gradient(120deg, var(--gold), var(--gold-2)); color: var(--navy); font-size: 34px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); animation: popIn .6s var(--ease); }
@keyframes popIn { 0% { transform: scale(0); } 70% { transform: scale(1.15); } 100% { transform: scale(1); } }
.confirm-number { font-size: 18px; letter-spacing: 1px; margin: 12px 0 6px; }
.confirm-number strong { font-family: var(--serif); color: var(--gold-3); }

/* ── Testimonials ────────────────────────────────────────────────── */
.testimonial-slider { max-width: 780px; margin: 0 auto; overflow: hidden; }
.t-track { display: flex; transition: transform .6s var(--ease); }
.t-slide { min-width: 100%; padding: 0 20px; text-align: center; }
.t-slide blockquote { font-family: var(--serif); font-size: clamp(19px, 2.4vw, 27px); font-style: italic; color: var(--navy); line-height: 1.6; margin: 18px 0 20px; }
.t-stars .stars { font-size: 19px; }
.t-author { font-weight: 600; color: var(--navy); letter-spacing: 1px; }
.t-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.t-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--navy); background: none; color: var(--navy); font-size: 17px; cursor: pointer; transition: .3s; }
.t-btn:hover { background: var(--navy); color: var(--gold-2); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; transition: .3s; border: 0; padding: 0; }
.t-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── Journal cards ───────────────────────────────────────────────── */
.journal-card { display: block; background: #fff; border-radius: var(--radius); padding: 30px; height: 100%; box-shadow: var(--shadow-1); transition: transform .4s var(--ease), box-shadow .4s; }
.journal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); }
.journal-card h3 { font-size: 22px; margin: 8px 0 10px; }
.journal-card p { font-size: 14px; color: var(--muted); }
.journal-icon svg { width: 40px; height: 40px; stroke: var(--gold); fill: none; stroke-width: 1.3; }
.journal-cat { font-size: 10.5px; letter-spacing: 2.4px; text-transform: uppercase; color: var(--gold-3); font-weight: 600; }
.share-row { display: flex; gap: 18px; align-items: center; border-top: 1px solid var(--line); padding-top: 22px; margin-top: 40px; font-size: 13px; }
.share-row a { color: var(--gold-3); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 12px; border-bottom: 1px solid var(--gold-2); }
.bf-icon svg { width: 60px; height: 60px; stroke: var(--gold); fill: none; stroke-width: 1.2; }
.blog-feature { display: grid; grid-template-columns: 100px 1fr; gap: 30px; align-items: center; margin-bottom: 40px; transition: transform .4s var(--ease), box-shadow .4s; }
.blog-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.blog-feature h2 { font-size: clamp(24px, 3vw, 34px); }

/* ── Newsletter band ─────────────────────────────────────────────── */
.newsletter-cta { padding-top: 20px; }
.nl-panel { background: linear-gradient(130deg, var(--navy) 0%, var(--navy-3) 100%); border-radius: 28px; padding: 56px; color: #fff; position: relative; overflow: hidden; }
.nl-panel::before { content: '✦'; position: absolute; font-size: 220px; color: rgba(198,161,91,.08); right: -30px; top: -60px; font-family: var(--serif); }
.nl-panel h2 { color: #fff; font-size: clamp(28px, 3.4vw, 42px); }
.nl-panel h2 em { color: var(--gold-2); }
.nl-panel p { color: var(--silver); margin-bottom: 0; }
.nl-form, .fn-form { display: flex; gap: 10px; flex-wrap: wrap; }
.nl-form input, .fn-form input { flex: 1; min-width: 200px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 999px; background: rgba(255,255,255,.08); color: #fff; padding: 14px 24px; outline: none; font-size: 14px; }
.fn-form input { border-color: var(--line); background: #fff; color: var(--text); }
.nl-form input::placeholder { color: rgba(255,255,255,.5); }
.nl-form input:focus { border-color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────────────── */
#site-footer { background: var(--navy); color: var(--silver); padding: 80px 0 34px; margin-top: 60px; }
.footer-logo { height: 58px; filter: brightness(1.02); background: #fff; border-radius: 10px; padding: 4px 8px; }
.footer-tag { margin: 16px 0 6px; font-size: 14.5px; max-width: 300px; }
.footer-est { font-size: 10.5px; letter-spacing: 5px; color: var(--gold); }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: var(--silver); transition: .3s; }
.socials a svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.socials a:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }
.footer-h { color: #fff; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; font-family: var(--sans); font-weight: 600; }
#site-footer .col-6 a, #site-footer .col-lg-2 a { display: block; font-size: 13.5px; color: var(--silver); padding: 5px 0; }
#site-footer a:hover { color: var(--gold-2); }
.footer-newsletter { background: rgba(255,255,255,.04); border: 1px solid rgba(232,206,140,.2); margin-top: 60px; }
.fn-title { color: #fff; font-size: 26px; }
.fn-sub { color: var(--silver); margin: 6px 0 0; }
.footer-hr { border-color: rgba(255,255,255,.12); margin: 50px 0 24px; }
.fda-text { font-size: 11.5px; line-height: 1.8; color: rgba(201,206,214,.65); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 12.5px; letter-spacing: 1px; }
.footer-payments { color: var(--gold-2); letter-spacing: 2px; font-size: 11px; }

/* ── Page hero variants / about ──────────────────────────────────── */
.lead-p { font-family: var(--serif); font-size: clamp(22px, 2.6vw, 30px); color: var(--navy); line-height: 1.5; }
.prose p { margin-bottom: 16px; color: var(--muted); font-size: 15.5px; line-height: 1.85; }
.prose h3 { margin: 30px 0 12px; font-size: 24px; }
.prose strong { color: var(--navy); }
.prose-lg p { font-size: 17px; }
.mv-card { text-align: center; height: 100%; }
.mv-icon { font-size: 34px; color: var(--gold); }
.mv-card h3 { font-size: 24px; margin: 12px 0 10px; }
.mv-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.philosophy-card { text-align: left; }
.timeline { position: relative; padding-left: 34px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 1.5px; background: linear-gradient(var(--gold), rgba(198,161,91,.1)); }
.tl-item { position: relative; padding: 0 0 40px 26px; }
.tl-item::before { content: ''; position: absolute; left: -31px; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(198,161,91,.18); }
.tl-year { font-family: var(--serif); font-style: italic; color: var(--gold-2); font-size: 15px; letter-spacing: 2px; }
.tl-item h4 { color: #fff; font-size: 24px; margin: 6px 0 8px; }
.tl-item p { color: var(--silver); font-size: 14.5px; margin: 0; max-width: 600px; }
.founder-panel { padding: 44px; text-align: left; }
.founder-quote { font-family: var(--serif); font-size: clamp(18px, 2.1vw, 23px); font-style: italic; color: var(--navy); line-height: 1.8; }
.founder-sign { margin: 26px 0 0; font-weight: 600; letter-spacing: 2px; color: var(--navy); text-transform: uppercase; font-size: 13px; }
.founder-sign span { color: var(--muted); font-weight: 400; text-transform: none; letter-spacing: 1px; font-size: 12px; }

/* ── Science page ────────────────────────────────────────────────── */
.pathway-svg { width: 100%; height: auto; }
.pw-node { animation: nodePulse 3.4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.pw-node.n2 { animation-delay: -.8s; } .pw-node.n3 { animation-delay: -1.6s; } .pw-node.n4 { animation-delay: -2.4s; }
@keyframes nodePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.12); } }
.pw-line { animation: dashMove 3s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -48; } }
.pw-mol { animation: floatY 5s ease-in-out infinite; }
.pw-mol.m2 { animation-delay: -2.5s; }
.gate-card { height: 100%; }
.gate-num { font-family: var(--serif); font-size: 52px; font-style: italic; color: var(--gold-2); }
.gate-card h3 { font-size: 23px; margin: 4px 0 10px; }
.gate-card p { color: var(--muted); font-size: 14.5px; margin: 0; }
.references { padding: 30px; }
.ref-list { padding-left: 20px; color: var(--muted); font-size: 13.5px; line-height: 2; }
.ref-list em { color: var(--gold-3); }

/* ── Subscriptions page ──────────────────────────────────────────── */
.sub-benefit { text-align: center; height: 100%; }
.sub-num { font-family: var(--serif); font-size: 44px; color: var(--gold-2); }
.sub-benefit h4 { font-size: 19px; margin: 6px 0 8px; }
.sub-benefit p { font-size: 13.5px; color: var(--muted); margin: 0; }
.hiw-step span { display: inline-flex; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--gold-2); align-items: center; justify-content: center; font-family: var(--serif); font-size: 22px; margin-bottom: 12px; }
.hiw-step p { color: var(--muted); font-size: 14.5px; }
.sub-product { display: flex; gap: 24px; align-items: center; }
.sub-product img { width: 150px; height: 190px; object-fit: cover; border-radius: var(--radius-sm); }
.sp-body h4 { font-size: 22px; margin-bottom: 2px; }
.sp-sub { color: var(--muted); font-size: 13px; }
.sp-prices { margin: 10px 0 14px; display: flex; flex-direction: column; }
.sp-prices span { color: var(--muted); font-size: 13px; }
.sp-prices strong { font-family: var(--serif); font-size: 26px; color: var(--gold-3); }

/* ── Contact / track ─────────────────────────────────────────────── */
.contact-info { display: grid; gap: 16px; }
.ci-card { padding: 22px 24px; }
.ci-icon { font-size: 24px; color: var(--gold); }
.ci-card h5 { margin: 8px 0 4px; }
.ci-card a { color: var(--gold-3); font-weight: 600; }
.ci-card p { font-size: 13.5px; color: var(--muted); margin: 0; }
.contact-form { padding: 36px; }
.track-form { padding: 30px; }
.track-timeline { display: grid; grid-template-columns: repeat(5, 1fr); margin: 26px 0 8px; }
.tt-step { text-align: center; position: relative; }
.tt-step::before { content: ''; position: absolute; top: 8px; left: -50%; width: 100%; height: 2px; background: var(--line); }
.tt-step:first-child::before { display: none; }
.tt-step.done::before { background: var(--gold); }
.tt-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--line); display: inline-block; position: relative; z-index: 2; }
.tt-step.done .tt-dot { background: var(--gold); }
.tt-step.current .tt-dot { box-shadow: 0 0 0 6px rgba(198,161,91,.25); animation: pulse 2s infinite; }
.tt-label { display: block; font-size: 10.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.status-pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.st-pending { background: #F6F1E4; color: #9A7B2D; }
.st-paid, .st-delivered { background: #EAF4EB; color: #2C6E35; }
.st-processing { background: #E9EFFA; color: #2B4C8C; }
.st-shipped { background: #F0EBF7; color: #6B3FA0; }
.st-cancelled, .st-refunded { background: #F7ECEA; color: #9A3B1B; }

/* ── Auth ────────────────────────────────────────────────────────── */
.auth-split { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 200px); }
.auth-visual { background: linear-gradient(160deg, var(--navy), var(--navy-3)); display: flex; align-items: center; justify-content: center; padding: 60px; position: relative; overflow: hidden; }
.auth-visual::after { content: '✦'; position: absolute; font-size: 300px; color: rgba(198,161,91,.07); bottom: -60px; right: -40px; font-family: var(--serif); }
.av-inner { max-width: 420px; }
.av-logo { background: #fff; border-radius: 14px; padding: 10px 16px; height: 72px; margin-bottom: 34px; }
.av-inner h2 { color: #fff; font-size: clamp(36px, 4vw, 56px); }
.av-inner p { color: var(--silver); margin-top: 16px; }
.auth-panel { display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.auth-card { width: 100%; max-width: 440px; }
.auth-title { font-size: 36px; }
.auth-sub { color: var(--muted); margin-bottom: 28px; }
.auth-card .lux-label { margin-top: 14px; }
.auth-switch { margin-top: 26px; text-align: center; font-size: 14px; color: var(--muted); }

/* ── Account ─────────────────────────────────────────────────────── */
.account-nav { padding: 22px; position: sticky; top: 120px; }
.an-hello { font-family: var(--serif); font-size: 20px; color: var(--navy); border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 14px; }
.account-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; color: var(--muted); transition: .25s; }
.account-nav a span { color: var(--gold); width: 18px; text-align: center; }
.account-nav a:hover { background: var(--white-2); color: var(--navy); }
.account-nav a.active { background: var(--navy); color: #fff; }
.account-nav a.active span { color: var(--gold-2); }
.account-title { font-size: clamp(30px, 3.4vw, 44px); margin-bottom: 26px; }
.stat-card { padding: 22px; text-align: center; height: 100%; }
.stat-card span { font-family: var(--serif); font-size: 38px; color: var(--navy); display: block; }
.stat-card p { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 4px 0 0; }
.notif-row { padding: 14px 0; border-bottom: 1px solid var(--line); }
.notif-row p { margin: 2px 0; font-size: 14px; color: var(--muted); }
.notif-row.unread strong::before { content: '●'; color: var(--gold); margin-right: 8px; font-size: 10px; }
.sub-manage-card { padding: 24px; }

/* ── Reveal & motion ─────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Back to top / toasts ────────────────────────────────────────── */
#backToTop { position: fixed; bottom: 26px; left: 26px; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold-2); border: 0; font-size: 18px; z-index: 900; opacity: 0; visibility: hidden; transition: .35s; box-shadow: var(--shadow-2); cursor: pointer; }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--gold); color: var(--navy); }
#toastStack { position: fixed; bottom: 26px; left: 26px; z-index: 1900; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--navy); color: #fff; padding: 15px 22px; border-radius: var(--radius-sm); box-shadow: var(--shadow-2); font-size: 13.5px; display: flex; align-items: center; gap: 12px; transform: translateX(-120%); transition: transform .45s var(--ease); max-width: 340px; }
.toast.show { transform: none; }
.toast::before { content: '✦'; color: var(--gold); }
.toast.err { background: #7A2E1D; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section { padding: 70px 0; }
  .flag-benefits, .pd-benefits { columns: 1; }
  .counter-band { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .counter-cell:nth-child(3)::before { display: none; }
  .auth-split { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .account-nav { position: static; margin-bottom: 16px; }
  .cart-line { flex-direction: row; }
  .sticky-summary { position: static; }
  .min-vh-hero { min-height: auto; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .hero-product { width: min(320px, 70%); }
  .blog-feature { grid-template-columns: 1fr; text-align: center; }
  .nl-panel { padding: 36px; }
  .track-timeline { grid-template-columns: 1fr; gap: 16px; }
  .tt-step { display: flex; align-items: center; gap: 12px; text-align: left; }
  .tt-step::before { left: 8px; top: -18px; width: 2px; height: 100%; }
  .tt-label { margin: 0; }
}
@media (max-width: 575.98px) {
  .hero-ctas .btn-lg { width: 100%; }
  .pc-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .buy-row { flex-wrap: wrap; }
  .sub-product { flex-direction: column; text-align: center; }
  .cl-row { gap: 10px; }
  .cl-total { margin-left: 0; }
}

/* ══════════════ St. Lloyd Concierge (chatbot) ══════════════ */
#concierge { position: fixed; right: 24px; bottom: 24px; z-index: 2200; font-family: 'Montserrat', sans-serif; }
#conciergeToggle { width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; background: linear-gradient(145deg, var(--navy), var(--navy-2)); color: var(--gold-2); display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 40px rgba(10,26,51,.35); transition: transform .25s, box-shadow .25s; position: relative; }
#conciergeToggle:hover { transform: translateY(-3px); box-shadow: 0 18px 46px rgba(10,26,51,.45); }
.cg-pulse { animation: cgPulse 1.8s ease-out infinite; }
@keyframes cgPulse { 0%{box-shadow:0 14px 40px rgba(10,26,51,.35),0 0 0 0 rgba(198,161,91,.55)} 70%{box-shadow:0 14px 40px rgba(10,26,51,.35),0 0 0 18px rgba(198,161,91,0)} 100%{box-shadow:0 14px 40px rgba(10,26,51,.35),0 0 0 0 rgba(198,161,91,0)} }
.cg-badge { position: absolute; top: -3px; right: -3px; width: 20px; height: 20px; border-radius: 50%; background: var(--gold, #C6A15B); color: var(--navy); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
#conciergePanel { position: absolute; right: 0; bottom: 74px; width: 384px; max-width: calc(100vw - 32px); height: 560px; max-height: calc(100vh - 120px); background: #fff; border: 1px solid #E7E4DC; border-radius: 20px; box-shadow: 0 30px 80px rgba(10,26,51,.25); display: flex; flex-direction: column; overflow: hidden; animation: cgIn .3s cubic-bezier(.2,.9,.3,1.2); }
@keyframes cgIn { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.cg-head { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); color: #fff; padding: 15px 16px; display: flex; align-items: center; justify-content: space-between; }
.cg-id { display: flex; align-items: center; gap: 11px; }
.cg-id strong { font-family: 'Playfair Display', serif; font-size: 15.5px; letter-spacing: .4px; display: block; }
.cg-id small { color: #B9C4D1; font-size: 10.5px; letter-spacing: 1.2px; text-transform: uppercase; }
.cg-dot { width: 34px; height: 34px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, #E8CE8C, #C6A15B 70%); position: relative; flex: 0 0 auto; }
.cg-dot::after { content: ''; position: absolute; right: 1px; bottom: 1px; width: 9px; height: 9px; border-radius: 50%; background: #2ec27e; border: 2px solid var(--navy); }
#conciergeClose { background: none; border: 0; color: #B9C4D1; font-size: 24px; line-height: 1; cursor: pointer; padding: 2px 6px; }
#conciergeClose:hover { color: #fff; }
.cg-log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #F8F7F3; }
.cg-msg { max-width: 86%; padding: 11px 14px; border-radius: 16px; font-size: 13.5px; line-height: 1.65; animation: cgMsg .25s ease; overflow-wrap: break-word; }
@keyframes cgMsg { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.cg-msg p { margin: 0 0 6px; }
.cg-msg p:last-child { margin-bottom: 0; }
.cg-bot { background: #fff; border: 1px solid #ECE9E0; border-left: 3px solid var(--gold, #C6A15B); align-self: flex-start; border-radius: 4px 16px 16px 16px; box-shadow: 0 2px 10px rgba(10,26,51,.05); }
.cg-user { background: var(--navy); color: #F0EDE4; align-self: flex-end; border-radius: 16px 4px 16px 16px; }
.cg-typing { padding: 4px 16px 8px; display: flex; gap: 5px; background: #F8F7F3; }
.cg-typing span { width: 7px; height: 7px; border-radius: 50%; background: #B9B29C; animation: cgBounce 1.2s infinite; }
.cg-typing span:nth-child(2) { animation-delay: .15s; } .cg-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes cgBounce { 0%,60%,100%{transform:translateY(0);opacity:.5} 30%{transform:translateY(-5px);opacity:1} }
.cg-chips { display: flex; gap: 7px; padding: 9px 12px; overflow-x: auto; background: #F8F7F3; border-top: 1px solid #EFECE3; scrollbar-width: thin; }
.cg-chip { flex: 0 0 auto; border: 1px solid rgba(198,161,91,.55); background: #fff; color: var(--navy); font-size: 11.5px; letter-spacing: .4px; padding: 7px 13px; border-radius: 999px; cursor: pointer; transition: .2s; font-family: inherit; }
.cg-chip:hover { background: var(--gold, #C6A15B); color: var(--navy); border-color: var(--gold, #C6A15B); }
.cg-chip-handoff { background: var(--navy); color: var(--gold-2); border-color: var(--navy); }
.cg-chip-handoff:hover { background: var(--gold, #C6A15B); color: var(--navy); }
.cg-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid #ECE9E0; background: #fff; }
.cg-form input { flex: 1; border: 1.5px solid #E4E1D8; border-radius: 999px; padding: 11px 16px; font-size: 13.5px; font-family: inherit; outline: none; transition: border-color .2s; }
.cg-form input:focus { border-color: var(--gold, #C6A15B); }
.cg-form button { width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--navy); color: var(--gold-2); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; flex: 0 0 auto; }
.cg-form button:hover { background: var(--gold, #C6A15B); color: var(--navy); }
.cg-fineprint { margin: 0; padding: 7px 14px; font-size: 10px; color: #A9A496; letter-spacing: .6px; text-transform: uppercase; background: #fff; text-align: center; }
@media (max-width: 480px) {
  #concierge { right: 14px; bottom: 14px; }
  #conciergePanel { position: fixed; inset: 0; width: 100%; max-width: none; height: 100%; max-height: none; bottom: 0; right: 0; border-radius: 0; }
  .cg-fineprint { padding-bottom: 14px; }
}
