/* ==========================================================================
   KAVYN PARFUMS — Maison de Parfum
   Design system: near-black ground, antique gold, hand-set serif display.
   ========================================================================== */

:root{
  /* ---- palette ---- */
  --ink:            #080706;   /* deepest background */
  --ink-2:          #0d0c0a;   /* base page background */
  --surface:        #151310;   /* card / panel surface */
  --surface-2:      #1c1815;   /* elevated / hover surface */
  --surface-3:      #24201b;   /* borders on surface */
  --hairline:       rgba(198,161,91,0.16);
  --hairline-strong:rgba(198,161,91,0.32);

  --gold:           #c6a15b;   /* primary antique gold */
  --gold-bright:    #e9cf9a;   /* highlight / shine gold */
  --gold-deep:      #8a6a34;   /* bronze, borders */
  --gold-dim:       #6b5730;   /* muted gold for disabled */

  --ivory:          #f4eee1;   /* primary text on dark */
  --ivory-dim:      #d9cfba;   /* secondary text */
  --stone:          #9c9484;   /* muted / tertiary text */
  --stone-dark:     #5f594c;   /* faint text, placeholders */

  --wine:           #6e2334;   /* accent for "sale/save" tag, used sparingly */
  --success:        #7a9b6e;

  /* ---- type ---- */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* ---- layout ---- */
  --container: 1280px;
  --container-narrow: 860px;
  --radius-sm: 2px;
  --radius-md: 3px;
  --edge: 1px solid var(--hairline);

  --shadow-lift: 0 20px 60px -20px rgba(0,0,0,0.7);
  --shadow-soft: 0 8px 24px -8px rgba(0,0,0,0.5);

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  background: var(--ink-2);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.scroll-locked{ overflow:hidden; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family: inherit; cursor:pointer; }
input,textarea,select{ font-family: inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }

::selection{ background: var(--gold-deep); color: var(--ivory); }

:focus-visible{
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ---- scrollbar ---- */
::-webkit-scrollbar{ width:10px; height:10px; }
::-webkit-scrollbar-track{ background: var(--ink); }
::-webkit-scrollbar-thumb{ background: var(--surface-3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover{ background: var(--gold-deep); }

/* ==========================================================================
   Utility
   ========================================================================== */
.container{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow{ max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.eyebrow{
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display:inline-flex;
  align-items:center;
  gap:12px;
}
.eyebrow::before{ content:''; width:22px; height:1px; background: var(--gold-deep); display:inline-block; }
.eyebrow.center{ justify-content:center; }
.eyebrow.center::before{ display:none; }

.divider{ height:1px; background: var(--hairline); border:0; margin: 0; }
.divider-gold{ height:1px; background: linear-gradient(90deg, transparent, var(--gold-deep) 20%, var(--gold) 50%, var(--gold-deep) 80%, transparent); border:0; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing:.16em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(180deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: #171310;
  box-shadow: 0 10px 30px -10px rgba(198,161,91,.5);
}
.btn-gold:hover{ filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 14px 34px -8px rgba(198,161,91,.65); }
.btn-outline{
  background: transparent;
  color: var(--ivory);
  border-color: var(--hairline-strong);
}
.btn-outline:hover{ border-color: var(--gold); color: var(--gold-bright); background: rgba(198,161,91,.06); }
.btn-ghost{
  background: transparent; color: var(--gold); padding: 10px 0;
  border-bottom: 1px solid var(--gold-deep);
  border-radius: 0;
  letter-spacing: .14em;
}
.btn-ghost:hover{ color: var(--gold-bright); border-color: var(--gold); }
.btn-block{ width:100%; }
.btn[disabled]{ opacity:.45; cursor:not-allowed; transform:none !important; }

.tag{
  font-size: 10.5px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--gold); border: 1px solid var(--hairline-strong);
  padding: 5px 10px; border-radius: 20px; font-weight:500;
  display:inline-flex; align-items:center; gap:6px;
}

.visually-hidden{ position:absolute; width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* ==========================================================================
   Loader
   ========================================================================== */
#app-loader{
  position: fixed; inset:0; background: var(--ink); z-index: 9999;
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:22px;
  transition: opacity .6s ease, visibility .6s ease;
}
#app-loader.hide{ opacity:0; visibility:hidden; pointer-events:none; }
.loader-mark{
  font-family: var(--font-display); font-size:15px; letter-spacing:.5em;
  color: var(--gold); text-transform:uppercase; padding-left:.5em;
}
.loader-line{ width:120px; height:1px; background: var(--surface-3); position:relative; overflow:hidden; }
.loader-line::after{
  content:''; position:absolute; inset:0; width:40%; background: var(--gold);
  animation: loaderSweep 1.4s ease-in-out infinite;
}
@keyframes loaderSweep{
  0%{ transform: translateX(-100%); }
  100%{ transform: translateX(350%); }
}
.loader-note{ font-size:11px; letter-spacing:.12em; color: var(--stone-dark); text-transform:uppercase; }

/* ==========================================================================
   Top announcement bar
   ========================================================================== */
.announce{
  background: var(--ink);
  border-bottom: var(--edge);
  text-align:center;
  padding: 9px 16px;
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone);
}
.announce b{ color: var(--gold); font-weight:500; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: rgba(9,8,7,.97);
  border-bottom: var(--edge);
}
.header-inner{
  display:flex; align-items:center; justify-content:flex-start;
  padding: 20px 32px;
  max-width: var(--container); margin:0 auto;
  gap: 20px;
}
.brand{
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: .12em;
  font-weight: 600;
  color: var(--ivory);
  display:flex; align-items:baseline; gap:2px;
}

.main-nav{ display:flex; align-items:center; gap:38px; margin-left:56px; }
.main-nav a{
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--ivory-dim);
  font-weight:400; position:relative; padding: 6px 0;
  transition: color .25s ease;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1px; background: var(--gold);
  transition: right .3s var(--ease);
}
.main-nav a:hover, .main-nav a.active{ color: var(--gold-bright); }
.main-nav a:hover::after, .main-nav a.active::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:18px; margin-left:auto; }
.icon-btn{
  background:none; border:0; color: var(--ivory); position:relative;
  display:flex; align-items:center; justify-content:center; width:40px; height:40px;
  border-radius:50%; transition: color .25s ease, background .25s ease;
}
.icon-btn:hover{ color: var(--gold); background: rgba(198,161,91,.08); }
.icon-btn svg{ width:22px; height:22px; }
.cart-count{
  position:absolute; top:-2px; right:-2px; background: var(--gold);
  color:#161310; font-size:10px; font-weight:600; width:16px; height:16px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-family: var(--font-body);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 60% 55% at 85% 15%, rgba(198,161,91,0.16), transparent 62%),
    radial-gradient(ellipse 50% 45% at 6% 95%, rgba(198,161,91,0.10), transparent 60%),
    linear-gradient(150deg, var(--ink) 0%, var(--ink-2) 55%, var(--ink) 100%);
}
.hero-inner{
  position:relative; z-index:2;
  max-width: var(--container); margin: 0 auto; padding: 72px 32px 76px;
  display:grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items:center;
  width:100%;
}
.hero-eyebrow{ margin-bottom: 22px; }
.hero-eyebrow::after{ content:''; width:22px; height:1px; background: var(--gold-deep); display:inline-block; }
.hero h1{
  font-family: var(--font-display);
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.05;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.hero h1 em{ font-style: italic; color: var(--gold-bright); font-weight:500; text-shadow: 0 0 40px rgba(198,161,91,.35); }
.hero-sub{
  margin-top: 24px; max-width: 460px;
  font-size: 16.5px; line-height:1.8; color: var(--ivory-dim); font-weight:300;
}
.hero-ctas{ display:flex; gap:18px; margin-top:38px; flex-wrap:wrap; }
.hero-stats{
  display:flex; margin-top: 48px; padding-top: 28px; border-top: var(--edge);
}
.hero-stat{ padding: 0 30px; border-left: 1px solid var(--hairline); }
.hero-stat:first-child{ padding-left:0; border-left:none; }
.hero-stat b{ display:block; font-family: var(--font-body); font-size:26px; color: var(--gold-bright); font-weight:600; line-height:1; letter-spacing:.01em; }
.hero-stat span{ display:block; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--stone); margin-top:8px; }

.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; z-index:2; }
.hero-visual::before{
  content:''; position:absolute; width:85%; aspect-ratio:4/3; border-radius:16px;
  background: radial-gradient(circle, rgba(198,161,91,.22), rgba(198,161,91,0) 70%);
  filter: blur(50px); z-index:0;
}
.hero-visual img{
  position:relative; z-index:1;
  width:100%; max-width: 620px; height:auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lift);
}

/* ==========================================================================
   Marquee ticker
   ========================================================================== */
.marquee{
  border-top: var(--edge); border-bottom: var(--edge);
  background: var(--surface);
  overflow:hidden; white-space:nowrap; padding: 16px 0;
}
.marquee-track{ display:inline-flex; animation: scrollX 34s linear infinite; }
@media (hover:hover) and (pointer:fine){
  .marquee:hover .marquee-track{ animation-play-state: paused; }
}
@keyframes scrollX{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.marquee-item{
  display:inline-flex; align-items:center; gap:16px; padding: 0 28px;
  font-family: var(--font-display); font-style:italic; font-size:17px; color: var(--stone);
  letter-spacing:.02em;
}
.marquee-item .dot{ width:4px; height:4px; border-radius:50%; background: var(--gold-deep); }

/* ==========================================================================
   Section shell
   ========================================================================== */
.section{ padding: 110px 0; }
.section-tight{ padding: 70px 0; }
.section-head{ max-width: 640px; margin: 0 auto 60px; text-align:center; }
.section-head.left{ margin: 0 0 52px; text-align:left; }
.section-head h2{
  font-family: var(--font-display); font-weight:500; font-size: clamp(32px,4vw,48px);
  margin-top: 18px; line-height:1.1; color: var(--ivory);
}
.section-head h2 em{ font-style:italic; color: var(--gold); }
.section-head p{ margin-top:18px; color: var(--ivory-dim); font-size:15.5px; line-height:1.8; }
.section-foot{ text-align:center; margin-top: 56px; }

.on-surface{ background: var(--surface); }

/* ==========================================================================
   The Kavyn Difference — signature comparison seal section
   ========================================================================== */
.difference{
  position:relative; padding: 130px 0;
  background: var(--ink);
  border-top: var(--edge); border-bottom: var(--edge);
}
.difference-grid{ display:grid; grid-template-columns: 1fr auto 1fr; gap: 48px; align-items:center; max-width: 980px; margin: 0 auto; }
.diff-col{ text-align:center; padding: 12px; }
.diff-col .label{ font-size:11px; letter-spacing:.24em; text-transform:uppercase; color: var(--stone); }
.diff-col .price{
  font-family: var(--font-display); font-size: 64px; font-weight:500; margin-top:18px; line-height:1;
}
.diff-col.retail .price{ color: var(--stone); text-decoration: line-through; text-decoration-color: var(--gold-deep); text-decoration-thickness: 1.5px; }
.diff-col.kavyn .price{ color: var(--gold-bright); }
.diff-col .desc{ margin-top: 16px; font-size:13px; color: var(--stone); max-width: 220px; margin-left:auto; margin-right:auto; line-height:1.7; }

.seal{
  width: 140px; height:140px; border-radius:50%;
  border: 1px solid var(--gold-deep);
  display:flex; align-items:center; justify-content:center; position:relative;
  background: radial-gradient(circle at 50% 40%, rgba(198,161,91,.10), transparent 70%);
  justify-self: center;
  margin: 0 auto;
}
.seal::before{
  content:''; position:absolute; inset:9px; border: 1px dashed var(--hairline-strong); border-radius:50%;
}
.seal .seal-inner{ text-align:center; }
.seal .seal-inner b{ display:block; font-family: var(--font-display); font-size:30px; color: var(--gold-bright); }
.seal .seal-inner span{ display:block; font-size:9px; letter-spacing:.18em; text-transform:uppercase; color: var(--stone); margin-top:4px; }

.diff-points{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 40px;
  max-width: var(--container); margin: 80px auto 0; padding: 0 32px;
}
.diff-point{ text-align:center; padding: 28px 16px; border-top: 1px solid var(--hairline-strong); }
.diff-point .num{ font-family: var(--font-display); font-style:italic; color: var(--gold); font-size:15px; }
.diff-point h4{ font-family: var(--font-display); font-size:20px; font-weight:500; margin-top:10px; color: var(--ivory); }
.diff-point p{ margin-top:10px; font-size:13.5px; color: var(--stone); line-height:1.75; }

/* ==========================================================================
   Product grid & cards
   ========================================================================== */
.grid{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); gap: 30px;
}
.card{
  background: var(--surface);
  border: var(--edge);
  border-radius: 4px;
  overflow: hidden;
  position:relative;
  display:flex; flex-direction:column;
  box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 16px 32px -24px rgba(0,0,0,.55);
  transition: border-color .35s ease, transform .35s var(--ease), box-shadow .35s ease;
}
.card:hover{ border-color: var(--gold-deep); transform: translateY(-5px); box-shadow: 0 1px 2px rgba(0,0,0,.3), 0 26px 40px -20px rgba(0,0,0,.65); }
.card-media{
  position:relative; aspect-ratio: 4/5; overflow:hidden; padding: 12px;
  background: radial-gradient(120% 100% at 50% 20%, var(--surface-2) 0%, var(--ink) 100%);
  display:flex; align-items:center; justify-content:center;
}
.card-media-link{ position:relative; z-index:1; display:flex; align-items:center; justify-content:center; width:100%; height:100%; }
.card-media img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; transition: transform .5s var(--ease); filter: drop-shadow(0 18px 22px rgba(0,0,0,.45)); }
.card:hover .card-media img{ transform: scale(1.035); }
.card-media .bottle-svg{ width:34%; opacity:.92; transition: transform .6s var(--ease); filter: drop-shadow(0 14px 16px rgba(0,0,0,.4)); }
.card:hover .card-media .bottle-svg{ transform: translateY(-6px); }
.card-featured-tag{
  position:absolute; top:14px; left:14px; z-index:2;
  font-size:9.5px; letter-spacing:.16em; text-transform:uppercase; color: var(--gold-bright);
  border:1px solid var(--gold-deep); background: rgba(8,7,6,.75); padding:5px 10px; border-radius:20px;
}
.card-save-tag{
  position:absolute; top:14px; right:14px; z-index:2;
  font-size:9.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--ivory);
  background: var(--wine); padding:5px 10px; border-radius: 20px; font-weight:600;
  box-shadow: 0 4px 10px -2px rgba(0,0,0,.5);
}
.quick-add{
  margin-top: auto;
  background: transparent;
  border: 1px solid var(--gold-deep);
  color: var(--gold-bright);
}
.quick-add:hover{ background: var(--gold); color:#171310; border-color: var(--gold); }
.card-body{ padding: 22px 22px 24px; display:flex; flex-direction:column; gap:8px; flex:1; }
.card-inspired{ font-size:10px; letter-spacing:.12em; text-transform:uppercase; color: var(--gold); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.card-name{
  font-family: var(--font-display); font-size:21px; font-weight:600; color: var(--ivory); line-height:1.3;
  white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.card-notes{
  font-size:12.5px; color: var(--stone); line-height:1.6; flex:1;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.card-prices{ display:flex; align-items:baseline; gap:10px; margin-top:4px; padding-top:13px; border-top: 1px solid var(--hairline); }
.price-sale{ font-family: var(--font-body); font-size:17px; font-weight:600; color: var(--gold-bright); letter-spacing:.01em; }
.price-regular{ font-size:12.5px; color: var(--stone-dark); text-decoration: line-through; }
.price-only{ font-size:17px; font-weight:600; color: var(--gold-bright); letter-spacing:.01em; }

.grid-empty{ padding: 90px 20px; text-align:center; color: var(--stone); }
.grid-empty h3{ font-family: var(--font-display); color: var(--ivory); font-size:26px; margin-bottom:12px; }

/* ==========================================================================
   Skeletons — shown instantly in the real page layout while data loads,
   swapped for actual content the moment the backend responds.
   ========================================================================== */
.skel{
  position: relative; overflow: hidden;
  background: var(--surface-2);
  border-radius: 3px;
}
.skel::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,.10), transparent);
  transform: translateX(-100%);
  animation: skelShimmer 1.7s ease-in-out infinite;
}
@keyframes skelShimmer{ 100%{ transform: translateX(100%); } }
@media (prefers-reduced-motion: reduce){ .skel::after{ animation:none; } }

.sk-line{ height: 12px; border-radius: 3px; }
.sk-btn{ width: 168px; height: 50px; border-radius: 2px; }
.sk-hero-img{ width:100%; max-width:620px; aspect-ratio: 1448/1086; border-radius:10px; }

.card-skeleton{ pointer-events:none; }
.card-skeleton .card-media{ padding:0; }
.sk-media{ width:100%; height:100%; border-radius:0; }
.sk-pdp-media{ aspect-ratio: 3/4; border-radius:3px; width:100%; }

/* filter bar */
.filter-bar{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  padding-bottom: 34px; margin-bottom: 6px; border-bottom: var(--edge);
}
.filter-chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  font-size:11.5px; letter-spacing:.1em; text-transform:uppercase;
  padding: 11px 26px; border:1px solid var(--hairline-strong); border-radius:30px; color: var(--stone);
  transition: all .25s ease; background:transparent;
}
.chip:hover{ color: var(--ivory); border-color: var(--gold-deep); }
.chip.active{ background: var(--gold); color:#171310; border-color: var(--gold); font-weight:500; }
.search-wrap{ position:relative; min-width: 220px; flex:1; max-width: 320px; }
.filter-bar--search-focused{ flex-direction:column; align-items:center; }
.filter-bar--search-focused .search-wrap{ order:-1; width:100%; max-width:480px; flex:none; }
.filter-bar--search-focused .filter-chips{ justify-content:center; }
.search-wrap.search-highlight input{ border-color: var(--gold); animation: searchGlow 1.4s ease-out 1; }
@keyframes searchGlow{
  0%{ box-shadow: 0 0 0 0 rgba(198,161,91,.55); }
  70%{ box-shadow: 0 0 0 14px rgba(198,161,91,0); }
  100%{ box-shadow: 0 0 0 0 rgba(198,161,91,0); }
}
.search-wrap input{
  width:100%; background: var(--surface); border:1px solid var(--hairline-strong); color: var(--ivory);
  padding: 11px 16px 11px 38px; font-size:16px; border-radius:30px; letter-spacing:.02em;
}
.search-wrap input::placeholder{ color: var(--stone-dark); }
.search-wrap input:focus{ border-color: var(--gold); outline:none; }
.search-wrap svg{ position:absolute; left:14px; top:50%; transform:translateY(-50%); width:14px; height:14px; color: var(--stone); }
.result-count{ font-size:12px; color: var(--stone-dark); letter-spacing:.06em; }

/* ==========================================================================
   Story / About blocks
   ========================================================================== */
.story-split{
  display:grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items:center;
}
.story-media{
  aspect-ratio: 4/5; border: var(--edge); position:relative; overflow:hidden;
  background: linear-gradient(160deg, var(--surface), var(--ink));
  display:flex; align-items:center; justify-content:center;
  padding: 16px;
}
.story-media img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.story-media .bottle-svg{ width:48%; }
.story-media::after{ content:''; position:absolute; inset:16px; border:1px solid var(--hairline); pointer-events:none; }
.story-media-photo{ padding:0; background:none; }
.story-media-photo img{ width:100%; height:100%; max-width:100%; max-height:100%; object-fit:cover; }
.story-media-photo::after{ inset:0; }
.story-copy p{ margin-top: 20px; color: var(--ivory-dim); font-size:15.5px; line-height:1.9; }
.story-copy p:first-of-type{ margin-top: 22px; }
.pledge-list{ margin-top: 32px; display:flex; flex-direction:column; gap:16px; }
.pledge-item{ display:flex; gap:14px; align-items:flex-start; }
.pledge-item svg{ width:16px; height:16px; color: var(--gold); flex-shrink:0; margin-top:4px; }
.pledge-item div b{ display:block; color: var(--ivory); font-size:14.5px; font-weight:500; }
.pledge-item div span{ font-size:13px; color: var(--stone); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi-track{ display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--hairline); border: var(--edge); }
.testi{ background: var(--ink-2); padding: 40px 34px; display:flex; flex-direction:column; gap:20px; }
.testi .stars{ color: var(--gold); font-size:14px; letter-spacing:2px; }
.testi p{ font-family: var(--font-display); font-size:19px; font-style:italic; color: var(--ivory-dim); line-height:1.6; }
.testi footer{ font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--stone); }

/* ==========================================================================
   Newsletter band
   ========================================================================== */
.newsletter{
  padding: 90px 0; text-align:center; position:relative;
  background: var(--surface); border-top: var(--edge); border-bottom: var(--edge);
}
.newsletter h2{ font-family: var(--font-display); font-size: clamp(30px,4vw,42px); color: var(--ivory); font-weight:500; }
.newsletter h2 em{ color: var(--gold); font-style:italic; }
.newsletter p{ margin-top:14px; color: var(--stone); font-size:14.5px; }
.newsletter-form{ display:flex; gap:0; max-width: 440px; margin: 34px auto 0; border:1px solid var(--hairline-strong); border-radius:30px; overflow:hidden; }
.newsletter-form input{
  flex:1; min-width:0; background:transparent; border:0; color: var(--ivory); padding: 15px 22px; font-size:16px;
}
.newsletter-form input::placeholder{ color: var(--stone-dark); }
.newsletter-form input:focus{ outline:none; }
.newsletter-form button{
  flex-shrink:0; white-space:nowrap;
  border:0; background: var(--gold); color:#171310; padding: 0 28px; font-size:11.5px;
  letter-spacing:.14em; text-transform:uppercase; font-weight:600; transition: filter .2s ease;
}
.newsletter-form button:hover{ filter:brightness(1.1); }
.newsletter-msg{ margin-top:16px; font-size:12.5px; color: var(--gold-bright); min-height:16px; }
.newsletter-consent{ margin-top:16px; font-size:11px; line-height:1.6; color: var(--stone-dark); max-width:440px; margin-left:auto; margin-right:auto; }
.newsletter-consent a{ color: var(--stone); text-decoration: underline; }
.newsletter-consent a:hover{ color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--ink); border-top: var(--edge); padding: 78px 0 0; }
.footer-grid{ display:grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.footer-brand .brand{ margin-bottom:16px; }
.footer-brand p{ color: var(--stone); font-size:13.5px; line-height:1.85; max-width: 320px; }
.footer-social{ display:flex; gap:14px; margin-top:22px; }
.footer-social a{
  width:34px; height:34px; border:1px solid var(--hairline-strong); border-radius:50%;
  display:flex; align-items:center; justify-content:center; transition: all .25s ease;
}
.footer-social a:hover{ border-color: var(--gold); color: var(--gold); }
.footer-social svg{ width:14px; height:14px; }
.footer-col h5{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color: var(--gold); margin-bottom:20px; font-weight:500; }
.footer-col ul{ display:flex; flex-direction:column; gap:12px; }
.footer-col a, .footer-col span{ font-size:13.5px; color: var(--stone); }
.footer-col a:hover{ color: var(--ivory); }
.footer-legal-note{ font-size:12px; color: var(--stone-dark); line-height:1.8; }
.footer-bottom{
  border-top: var(--edge); padding: 26px 0; display:flex; align-items:center; justify-content:space-between;
  gap: 20px; flex-wrap:wrap;
}
.footer-bottom p{ font-size:11.5px; color: var(--stone-dark); letter-spacing:.03em; }
.footer-bottom-links{ display:flex; gap:24px; }
.footer-bottom-links a{ font-size:11.5px; color: var(--stone-dark); }
.footer-bottom-links a:hover{ color: var(--gold); }

/* ==========================================================================
   Cart drawer
   ========================================================================== */
.overlay{
  position:fixed; inset:0; background: rgba(4,3,2,.6); backdrop-filter: blur(2px); z-index: 970;
  opacity:0; pointer-events:none; transition: opacity .35s ease;
}
.overlay.open{ opacity:1; pointer-events:auto; }
.cart-drawer{
  position:fixed; top:0; right:0; height:100%; width: 420px; max-width: 92vw; z-index: 971;
  background: var(--ink-2); border-left: var(--edge);
  display:flex; flex-direction:column;
  transform: translateX(100%); transition: transform .45s var(--ease);
  box-shadow: -30px 0 60px rgba(0,0,0,.5);
}
.cart-drawer.open{ transform: translateX(0); }
.cart-head{ display:flex; align-items:center; justify-content:space-between; padding: 26px 28px; border-bottom: var(--edge); }
.cart-head h3{ font-family: var(--font-display); font-size:22px; font-weight:500; }
.cart-close{ background:none; border:0; color: var(--stone); width:28px; height:28px; }
.cart-close:hover{ color: var(--gold); }
.cart-items{ flex:1; overflow-y:auto; padding: 10px 28px; }
.cart-empty{ text-align:center; padding: 80px 20px; color: var(--stone); }
.cart-empty svg{ width:40px; height:40px; color: var(--stone-dark); margin-bottom:18px; }
.cart-empty h4{ font-family: var(--font-display); font-size:20px; color: var(--ivory); margin-bottom:8px; }
.cart-line{ display:flex; gap:16px; padding: 20px 0; border-bottom: 1px solid var(--hairline); }
.cart-line-media{ width:68px; height:80px; flex-shrink:0; background: var(--surface); border:var(--edge); display:flex; align-items:center; justify-content:center; overflow:hidden; padding:6px; }
.cart-line-media img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.cart-line-media .bottle-svg{ width:55%; }
.cart-line-body{ flex:1; min-width:0; }
.cart-line-body .name{ font-family: var(--font-display); font-size:16.5px; color: var(--ivory); }
.cart-line-body .size{ font-size:11.5px; color: var(--stone); text-transform:uppercase; letter-spacing:.06em; margin-top:3px; }
.cart-line-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:12px; }
.qty-step{ display:flex; align-items:center; border:1px solid var(--hairline-strong); border-radius:20px; }
.qty-step button{ background:none; border:0; color: var(--ivory); width:26px; height:26px; font-size:14px; }
.qty-step button:hover{ color: var(--gold); }
.qty-step span{ font-size:13px; min-width:20px; text-align:center; }
.cart-line-price{ font-size:14px; color: var(--gold-bright); font-weight:500; }
.cart-line-remove{ background:none; border:0; color: var(--stone-dark); font-size:11px; letter-spacing:.06em; text-transform:uppercase; margin-top:10px; }
.cart-line-remove:hover{ color: var(--wine); }
.cart-foot{ padding: 24px 28px 28px; border-top: var(--edge); }
.cart-subtotal{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px; }
.cart-subtotal span:first-child{ font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--stone); }
.cart-subtotal span:last-child{ font-family: var(--font-display); font-size:24px; color: var(--gold-bright); }
.cart-note{ font-size:11.5px; color: var(--stone-dark); margin-bottom:18px; }

.ship-progress{ margin: 12px 0 18px; }
.ship-progress-bar{ height:3px; background: var(--surface-3); border-radius:2px; overflow:hidden; }
.ship-progress-fill{ height:100%; background: var(--gold); transition: width .4s ease; }
.ship-progress.qualified .ship-progress-fill{ background: var(--success); }
.ship-progress-msg{ font-size:11.5px; color: var(--stone); margin:8px 0 0; letter-spacing:.01em; }
.ship-progress.qualified .ship-progress-msg{ color: var(--gold-bright); }

/* ==========================================================================
   Product detail page
   ========================================================================== */
.pdp{ padding: 56px 0 120px; }
.breadcrumb{ font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color: var(--stone-dark); margin-bottom: 40px; }
.breadcrumb a:hover{ color: var(--gold); }
.pdp-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 76px; }
.pdp-media{
  aspect-ratio: 4/5; border: var(--edge); background: linear-gradient(160deg, var(--surface), var(--ink));
  display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; padding: 16px;
}
.pdp-media img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.pdp-media .bottle-svg{ width:42%; }
.pdp-info .card-inspired{ font-size:12px; }
.pdp-info h1{ font-family: var(--font-display); font-size: clamp(34px,3.6vw,46px); font-weight:500; margin-top:10px; color:var(--ivory); line-height:1.1; }
.pdp-desc{ margin-top: 20px; color: var(--ivory-dim); font-size:15px; line-height:1.85; }
.pdp-desc p{ margin: 0 0 14px; }
.pdp-desc p:last-child{ margin-bottom: 0; }
.pdp-desc ul, .pdp-desc ol{ margin: 0 0 14px 20px; padding:0; }
.pdp-desc li{ margin-bottom:6px; }
.pdp-desc strong, .pdp-desc b{ color: var(--ivory); font-weight:600; }
.pdp-desc a{ color: var(--gold-bright); text-decoration: underline; text-underline-offset:2px; }
.pdp-compare{
  margin-top: 30px; border: var(--edge); border-radius: 3px; padding: 22px 24px;
  display:flex; align-items:center; justify-content:space-between; gap: 20px; background: var(--surface);
}
.pdp-compare .col span{ display:block; font-size:10px; letter-spacing:.14em; text-transform:uppercase; color: var(--stone); margin-bottom:6px; }
.pdp-compare .col.reg b{ font-family: var(--font-display); font-size:24px; color: var(--stone); text-decoration:line-through; text-decoration-color: var(--gold-deep); font-weight:500; }
.pdp-compare .col.kav b{ font-family: var(--font-display); font-size:30px; color: var(--gold-bright); font-weight:600; }
.pdp-compare .save-pill{ background: var(--wine); color: var(--ivory); font-size:11px; letter-spacing:.06em; padding:7px 12px; border-radius:20px; white-space:nowrap; }

.size-select{ margin-top: 34px; }
.size-select > span{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: var(--stone); display:block; margin-bottom:12px; }
.size-opts{ display:flex; gap:12px; flex-wrap:wrap; }
.size-opt{
  border: 1px solid var(--hairline-strong); border-radius: 2px; padding: 14px 20px; text-align:left;
  background:transparent; min-width:140px; transition: all .25s ease;
}
.size-opt:hover{ border-color: var(--gold-deep); }
.size-opt.active{ border-color: var(--gold); background: rgba(198,161,91,.08); }
.size-opt .sname{ font-size:13.5px; color: var(--ivory); font-weight:500; }
.size-opt .sprice{ font-size:12.5px; color: var(--gold); margin-top:4px; }
.size-opt .sprice del{ color: var(--stone-dark); margin-right:6px; }

.pdp-actions{ display:flex; gap:16px; margin-top: 36px; align-items:center; min-width:0; }
.pdp-qty{ display:flex; align-items:center; border:1px solid var(--hairline-strong); border-radius:30px; }
.pdp-qty button{ background:none; border:0; color: var(--ivory); width:44px; height:52px; font-size:16px; }
.pdp-qty button:hover{ color: var(--gold); }
.pdp-qty span{ min-width:26px; text-align:center; font-size:14px; }

.pdp-meta{ margin-top: 44px; display:flex; flex-direction:column; gap:0; }
.pdp-meta-row{ display:flex; justify-content:space-between; padding: 15px 0; border-top: 1px solid var(--hairline); font-size:13px; }
.pdp-meta-row span:first-child{ color: var(--stone); letter-spacing:.06em; text-transform:uppercase; font-size:11.5px; }
.pdp-meta-row span:last-child{ color: var(--ivory-dim); text-align:right; max-width:60%; }

.pdp-accordion{ margin-top: 20px; border-top: var(--edge); }
.acc-item{ border-bottom: var(--edge); }
.acc-head{ width:100%; background:none; border:0; display:flex; justify-content:space-between; align-items:center; padding: 20px 0; text-align:left; }
.acc-head span{ font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--ivory); }
.acc-head .plus{ color: var(--gold); font-size:18px; transition: transform .3s ease; }
.acc-item.open .plus{ transform: rotate(45deg); }
.acc-body{ max-height:0; overflow:hidden; transition: max-height .35s ease; }
.acc-item.open .acc-body{ max-height: 6000px; }
.acc-body p{ padding-bottom: 20px; color: var(--stone); font-size:13.5px; line-height:1.85; }
.acc-body p:last-child{ padding-bottom:0; }
.acc-body ul, .acc-body ol{ margin: 0 0 20px 20px; padding:0; color: var(--stone); font-size:13.5px; line-height:1.85; }
.acc-body li{ margin-bottom:6px; }
.acc-body strong, .acc-body b{ color: var(--ivory-dim); font-weight:600; }
.acc-body a{ color: var(--gold-bright); text-decoration: underline; text-underline-offset:2px; }

.related-section{ margin-top: 130px; }

/* ==========================================================================
   Checkout
   ========================================================================== */
.checkout-wrap{ padding: 60px 0 120px; }
.checkout-grid{ display:grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items:start; }
.checkout-steps{ display:flex; gap:26px; margin-bottom: 46px; }
.checkout-step{ font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color: var(--stone-dark); display:flex; align-items:center; gap:8px; }
.checkout-step.active{ color: var(--gold); }
.checkout-step b{ width:20px; height:20px; border-radius:50%; border:1px solid currentColor; display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:600; }

.form-section{ margin-bottom: 44px; }
.form-section h3{ font-family: var(--font-display); font-size:22px; font-weight:500; margin-bottom:22px; color:var(--ivory); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
.field{ display:flex; flex-direction:column; gap:8px; }
.checkout-newsletter-opt{
  display:flex; align-items:flex-start; gap:10px; margin-top:14px;
  font-size:12.5px; color:var(--stone); line-height:1.5; cursor:pointer;
}
.checkout-newsletter-opt input{ margin-top:3px; accent-color: var(--gold); flex-shrink:0; cursor:pointer; }
.checkout-newsletter-opt span{ user-select:none; }
.field label{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color: var(--stone); }
.field input, .field textarea, .field select{
  background: var(--surface); border:1px solid var(--hairline-strong); color: var(--ivory);
  padding: 13px 16px; font-size:16px; border-radius:2px;
}
.field input:focus, .field textarea:focus, .field select:focus{ outline:none; border-color: var(--gold); }
.field-error{ font-size:11px; color: var(--wine); }
.field.has-error input{ border-color: var(--wine); }

.order-summary{
  border: var(--edge); background: var(--surface); border-radius:3px; padding: 30px;
  position:sticky; top: 110px;
}
.order-summary h3{ font-family: var(--font-display); font-size:20px; margin-bottom:22px; }
.os-line{ display:flex; gap:14px; padding: 14px 0; border-bottom: 1px solid var(--hairline); }
.os-line img, .os-line .bottle-svg-wrap{ width:52px; height:62px; flex-shrink:0; background:var(--ink-2); border:var(--edge); display:flex; align-items:center; justify-content:center; overflow:hidden; padding:4px; box-sizing:border-box; }
.os-line img{ object-fit:contain; }
.os-line .bottle-svg{ width:55%; }
.os-line-body{ flex:1; min-width:0; }
.os-line-body .n{ font-size:13.5px; color: var(--ivory); overflow-wrap:break-word; }
.os-line-body .s{ font-size:11px; color: var(--stone); text-transform:uppercase; margin-top:2px; }
.os-line-price{ font-size:13px; color: var(--gold); white-space:nowrap; flex-shrink:0; }
.os-totals{ margin-top: 18px; display:flex; flex-direction:column; gap:10px; }
.os-totals .row{ display:flex; justify-content:space-between; font-size:13.5px; color: var(--stone); }
.os-totals .row.total{ margin-top:8px; padding-top:14px; border-top: var(--edge); font-size:16px; color: var(--ivory); }
.os-totals .row.total span:last-child{ font-family: var(--font-display); font-size:24px; color: var(--gold-bright); }
.os-savings{ margin-top:16px; padding: 12px 14px; background: rgba(198,161,91,.08); border:1px solid var(--hairline-strong); border-radius:2px; font-size:12px; color: var(--gold-bright); text-align:center; }

/* ==========================================================================
   Success page
   ========================================================================== */
.success-wrap{ padding: 110px 0 130px; text-align:center; }
.success-icon{
  width: 84px; height:84px; border-radius:50%; border:1px solid var(--gold); margin: 0 auto 32px;
  display:flex; align-items:center; justify-content:center;
}
.success-icon svg{ width:34px; height:34px; color: var(--gold); }
.success-wrap h1{ font-family: var(--font-display); font-size: clamp(32px,4vw,46px); color: var(--ivory); font-weight:500; }
.success-wrap .sub{ margin-top:14px; color: var(--stone); font-size:15px; max-width:460px; margin-left:auto; margin-right:auto; }
.success-order-id{ margin-top: 26px; font-size:12.5px; letter-spacing:.1em; color: var(--gold); text-transform:uppercase; }
.success-items{ max-width: 480px; margin: 50px auto 0; text-align:left; border-top: var(--edge); }
.success-actions{ margin-top: 46px; display:flex; gap:18px; justify-content:center; }

/* ==========================================================================
   Bottle SVG placeholder tinting
   ========================================================================== */
.bottle-svg .glass{ fill: none; stroke: var(--gold-deep); stroke-width:1.1; }
.bottle-svg .liquid{ fill: var(--gold-deep); opacity:.35; }
.bottle-svg .cap{ fill: var(--gold); }
.bottle-svg .label{ fill: none; stroke: var(--hairline-strong); stroke-width:.8; }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast-stack{ position:fixed; bottom: 28px; right: 28px; z-index: 1200; display:flex; flex-direction:column; gap:12px; }
.toast{
  background: var(--surface); border: 1px solid var(--gold-deep); color: var(--ivory);
  padding: 16px 22px; border-radius:2px; font-size:13px; box-shadow: var(--shadow-lift);
  display:flex; align-items:center; gap:12px; min-width:260px;
  animation: toastIn .35s var(--ease);
}
.toast svg{ width:16px; height:16px; color: var(--gold); flex-shrink:0; }
@keyframes toastIn{ from{ opacity:0; transform: translateY(10px);} to{ opacity:1; transform: translateY(0);} }

/* ==========================================================================
   Misc pages: about / contact / static content
   ========================================================================== */
.page-hero{ padding: 90px 0 60px; text-align:center; border-bottom: var(--edge); }
.page-hero h1{ font-family: var(--font-display); font-size: clamp(38px,5vw,58px); font-weight:500; color: var(--ivory); }
.page-hero p{ margin-top: 16px; color: var(--stone); max-width: 520px; margin-left:auto; margin-right:auto; }

.legal-copy{ max-width: 740px; margin: 0 auto; color: var(--ivory-dim); font-size:14.5px; line-height:1.9; }
.legal-copy h3{ font-family: var(--font-display); font-size:22px; color: var(--ivory); margin: 40px 0 14px; font-weight:500; }
.legal-copy h3:first-child{ margin-top:0; }

.error-state{ padding: 140px 20px; text-align:center; }
.error-state h2{ font-family: var(--font-display); font-size:30px; color: var(--ivory); margin-bottom:14px; }
.error-state p{ color: var(--stone); margin-bottom: 28px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; text-align:center; padding: 48px 24px 56px; }
  .hero-visual{ order:-1; margin-bottom: 44px; }
  .hero-sub{ margin-left:auto; margin-right:auto; }
  .hero-ctas{ justify-content:center; }
  .hero-stats{ justify-content:center; }
  .hero-visual img{ max-width:480px; }
  .story-split{ grid-template-columns:1fr; }
  .story-media{ max-width:380px; margin: 0 auto; }
  .pdp-grid{ grid-template-columns:1fr; gap: 44px; }
  .checkout-grid{ grid-template-columns:1fr; }
  .order-summary{ position:static; }
  .difference-grid{ grid-template-columns:1fr; }
  .diff-points{ grid-template-columns:1fr; }
  .testi-track{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .container{ padding: 0 24px; }
  .container-narrow{ padding: 0 24px; }
  .header-inner{ padding: 16px 24px 14px; flex-wrap:wrap; row-gap:14px; }
  .main-nav{
    order:3; flex-basis:100%; width:100%; margin-left:0;
    display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
    gap:10px 18px; padding-top:14px; border-top: var(--edge);
  }
  .main-nav a{ padding: 4px 0; font-size:11.5px; letter-spacing:.06em; }
  .header-actions{ gap:16px; }
  .form-row{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .cart-drawer{ width:100%; }
  .filter-bar{ flex-direction:column; align-items:stretch; }
  .search-wrap{ max-width:none; }
  .pdp-compare{ flex-direction:column; align-items:flex-start; gap:14px; }
  .diff-col .price{ font-size:44px; }
  .hero-inner{ padding: 40px 20px 48px; }
  .hero-sub{ font-size:15.5px; }
  .hero-visual img{ max-width:400px; }
  .hero-stats{ flex-wrap:wrap; justify-content:center; gap: 0; row-gap:22px; }
  .hero-stat{ flex:1 1 33%; border-left:none; padding: 0 14px; }

  .grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card-body{ padding: 14px 14px 16px; gap:5px; }
  .card-inspired{ font-size:9px; }
  .card-name{ font-size:15.5px; }
  .card-notes{ font-size:11px; line-height:1.5; -webkit-line-clamp:2; }
  .card-prices{ margin-top:2px; padding-top:10px; gap:6px; flex-wrap:wrap; }
  .price-sale, .price-only{ font-size:14.5px; }
  .price-regular{ font-size:11px; }
  .quick-add{ font-size:10.5px; padding: 10px 12px; }
  .card-featured-tag, .card-save-tag{ font-size:8px; padding:4px 8px; top:8px; }
  .card-featured-tag{ left:8px; } .card-save-tag{ right:8px; }
}
@media (max-width: 480px){
  .grid{ gap: 10px; }
  .card-body{ padding: 12px 12px 14px; }
  .card-name{ font-size:14px; }
  .hero-ctas{ flex-direction:column; align-items:stretch; width:100%; }
  .hero-ctas .btn{ width:100%; }
  .hero h1{ font-size: clamp(34px, 9vw, 44px); }
  .hero-visual img{ max-width:100%; }
  .hero-stat{ flex:1 1 50%; }
  .container{ padding: 0 20px; }
  .container-narrow{ padding: 0 20px; }
  .header-inner{ padding: 16px 20px; }
  .pdp-actions{ flex-wrap:wrap; }
  .pdp-actions #pdp-add, .pdp-actions .btn{ min-width:0; white-space:normal; flex-basis:100%; }
  .pdp-qty{ flex:0 0 auto; }
}

/* ------------------------------------------------------------------ *
 * FLOATING "SAVE 10%" WIDGET
 * ------------------------------------------------------------------ */
.promo-float{
  position: fixed; left: 20px; bottom: 20px; z-index: 600;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.promo-float.visible{ opacity: 1; transform: translateY(0); pointer-events: auto; }
.promo-float.dismissed{ display: none; }
.promo-float-pill{
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #171310; border: 0; border-radius: 30px;
  padding: 13px 20px; font-family: var(--font-body); font-size: 12.5px; font-weight: 600;
  letter-spacing: .02em; box-shadow: 0 10px 26px rgba(0,0,0,.35);
  cursor: pointer; transition: transform .25s ease, box-shadow .25s ease;
}
.promo-float-pill:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.42); }
.promo-float.open .promo-float-pill{ display: none; }
.promo-float-card{
  display: none; width: 290px; max-width: calc(100vw - 40px);
  background: var(--ink-2); border: var(--edge); border-radius: 10px;
  padding: 22px 20px 20px; box-shadow: 0 18px 44px rgba(0,0,0,.5);
  position: relative;
}
.promo-float.open .promo-float-card{ display: block; }
.promo-float-close{
  position: absolute; top: 10px; right: 12px; background: none; border: 0;
  color: var(--stone); font-size: 20px; line-height: 1; cursor: pointer; padding: 4px;
}
.promo-float-close:hover{ color: var(--ivory); }
.promo-float-title{
  font-family: var(--font-display); font-size: 19px; color: var(--ivory);
  margin-bottom: 6px; padding-right: 16px;
}
.promo-float-card p{ font-size: 12.5px; color: var(--stone); line-height: 1.6; margin: 0 0 14px; }
.promo-float-card form{ display: flex; flex-direction: column; gap: 10px; }
.promo-float-card input{
  background: var(--surface); border: 1px solid var(--hairline-strong); border-radius: 6px;
  color: var(--ivory); padding: 11px 14px; font-size: 14px; font-family: var(--font-body);
}
.promo-float-card input:focus{ outline: none; border-color: var(--gold); }
.promo-float-card .btn{ padding: 11px 14px; font-size: 12px; }
.promo-float-msg{ font-size: 11.5px; color: var(--gold-bright); margin-top: 10px; min-height: 1px; }

@media (max-width: 480px){
  .promo-float{ left: auto; right: 14px; bottom: 14px; }
  .promo-float-pill{ padding: 12px 16px; font-size: 11.5px; }
  .promo-float-pill span{ max-width: 46vw; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
  .promo-float-card{ width: min(84vw, 290px); max-width: calc(100vw - 28px); }
}
