/* ============================= TOKENS ============================= */
:root{
  --bg-0:#07080a;
  --bg-1:#0c0d11;
  --bg-2:#121319;
  --glass-fill: rgba(255,255,255,0.055);
  --glass-fill-strong: rgba(255,255,255,0.09);
  --glass-border: rgba(255,255,255,0.14);
  --glass-border-strong: rgba(255,255,255,0.28);
  --ink-0:#f4f3f0;
  --ink-1:#c7c8cd;
  --ink-2:#83858d;
  --gold:#e3c495;
  --gold-soft: rgba(227,196,149,0.55);
  --violet:#b6a4ff;
  --violet-soft: rgba(182,164,255,0.55);
  --line-gradient: linear-gradient(90deg, var(--gold), var(--violet));
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.16,.84,.36,1);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:
    radial-gradient(1200px 700px at 15% -10%, rgba(182,164,255,0.10), transparent 60%),
    radial-gradient(1000px 600px at 90% 0%, rgba(227,196,149,0.09), transparent 55%),
    var(--bg-0);
  color:var(--ink-0);
  font-family:'Manrope', sans-serif;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.display{
  font-family:'Cormorant Garamond', serif;
  font-weight:500;
  letter-spacing:.01em;
  margin:0;
}
p{margin:0;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}
::selection{background:var(--violet-soft); color:#0a0a0c;}
@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important;}
}

/* ============================= UTILITIES ============================= */
.wrap{ max-width:1320px; margin:0 auto; padding:0 32px; }
.eyebrow{
  font-size:11.5px; letter-spacing:.28em; text-transform:uppercase;
  color:var(--ink-2); font-weight:600;
}
.glass{
  background:var(--glass-fill);
  border:1px solid var(--glass-border);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 0 40px rgba(255,255,255,0.02),
    0 20px 50px -20px rgba(0,0,0,0.6);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 30px; border-radius:100px; font-size:13.5px; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase; border:1px solid var(--glass-border-strong);
  color:var(--ink-0); background:var(--glass-fill-strong);
  backdrop-filter: blur(18px);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
  position:relative; overflow:hidden;
}
.btn:hover{ transform:translateY(-2px); box-shadow:0 14px 40px -14px var(--violet-soft), 0 0 0 1px var(--glass-border-strong) inset; border-color:rgba(255,255,255,0.5); }
.btn:active{ transform:translateY(0px) scale(.98); }
.btn-primary{
  background: linear-gradient(135deg, rgba(227,196,149,0.22), rgba(182,164,255,0.22));
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost{ background:transparent; border-color:var(--glass-border); }
.btn-ghost:hover{ background:var(--glass-fill); }
.btn-sm{ padding:11px 20px; font-size:11.5px; }
.section-head{ display:flex; flex-direction:column; gap:14px; margin-bottom:48px; }
.section-title{ font-size:clamp(32px,4vw,52px); }
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ============================= NAV ============================= */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:500;
  padding:18px 0;
}
.nav-inner{
  max-width:1320px; margin:0 auto; padding:0 32px;
  display:flex; align-items:center; justify-content:space-between;
  height:68px; border-radius:100px;
}
.nav-glass{
  background:rgba(10,10,13,0.45);
  border:1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 20px 50px -25px rgba(0,0,0,0.8);
}
.logo{
  font-family:'Cormorant Garamond', serif;
  font-size:28px; letter-spacing:.42em; padding-left:.42em;
  font-weight:500; color:var(--ink-0);
  text-shadow: 0 0 12px rgba(255,255,255,0.35), 0 0 34px var(--violet-soft), 0 0 60px var(--gold-soft);
  position:relative;
}
.nav-links{ display:flex; align-items:center; gap:6px; list-style:none; margin:0; padding:0; }
.nav-links a{
  padding:10px 18px; border-radius:100px; font-size:13px; letter-spacing:.04em;
  color:var(--ink-1); transition: color .3s, background .3s;
  position:relative;
}
.nav-links a:hover{ color:var(--ink-0); background:var(--glass-fill); }
.nav-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--glass-fill); border:1px solid var(--glass-border); color:var(--ink-0);
  transition: transform .35s var(--ease), background .3s, border-color .3s;
  position:relative;
}
.icon-btn:hover{ transform:translateY(-2px); background:var(--glass-fill-strong); border-color:var(--glass-border-strong); }
.icon-btn svg{ width:18px; height:18px; }
.bag-count{
  position:absolute; top:-4px; right:-4px; background:linear-gradient(135deg,var(--gold),var(--violet));
  color:#0a0a0c; font-size:10px; font-weight:800; min-width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; padding:0 4px;
}
.nav-toggle{ display:none; }

/* ============================= HERO ============================= */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  padding:150px 0 90px; overflow:hidden;
}
.hero-inner{
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
  width:100%;
}
.hero-copy{ position:relative; z-index:5; }
.hero-copy .eyebrow{ display:flex; align-items:center; gap:12px; margin-bottom:22px; }
.hero-copy .eyebrow::before{ content:''; width:34px; height:1px; background:var(--line-gradient); }
.hero-title{
  font-size:clamp(46px, 6.4vw, 84px); line-height:0.98; font-weight:500;
  background:linear-gradient(120deg, #ffffff 10%, var(--gold) 45%, var(--violet) 70%, #ffffff 95%);
  background-size:220% 220%;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation: sheen 9s ease-in-out infinite;
  margin-bottom:26px;
}
@keyframes sheen{ 0%{background-position:0% 50%;} 50%{background-position:100% 50%;} 100%{background-position:0% 50%;} }
.hero-sub{ font-size:16.5px; line-height:1.7; color:var(--ink-1); max-width:440px; margin-bottom:38px; font-weight:300; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:46px; }
.hero-stats{ display:flex; gap:36px; }
.hero-stats div{ display:flex; flex-direction:column; gap:4px; }
.hero-stats b{ font-family:'Cormorant Garamond',serif; font-size:26px; font-weight:600; }
.hero-stats span{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-2); }

/* ---- bottle stage ---- */
.stage{
  position:relative; height:640px; display:flex; align-items:center; justify-content:center;
  perspective:1400px;
}
.stage-glow{
  position:absolute; width:460px; height:460px; border-radius:50%;
  background:radial-gradient(circle, rgba(182,164,255,0.30), rgba(227,196,149,0.16) 45%, transparent 72%);
  filter:blur(10px); animation:pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow{ 0%,100%{ transform:scale(1); opacity:.85;} 50%{ transform:scale(1.12); opacity:1;} }
.floaters span{
  position:absolute; border-radius:50%; background:var(--glass-fill); border:1px solid var(--glass-border);
  backdrop-filter:blur(8px); animation: float-y 7s ease-in-out infinite;
}
.floaters span:nth-child(1){ width:70px; height:70px; top:8%; left:6%; animation-delay:.2s;}
.floaters span:nth-child(2){ width:34px; height:34px; top:70%; left:2%; animation-delay:1.4s;}
.floaters span:nth-child(3){ width:50px; height:50px; top:14%; right:4%; animation-delay:.8s;}
.floaters span:nth-child(4){ width:22px; height:22px; top:82%; right:14%; animation-delay:2s;}
@keyframes float-y{ 0%,100%{transform:translateY(0px);} 50%{transform:translateY(-22px);} }

.bottle-wrap{
  position:relative; z-index:4; transform-style:preserve-3d;
  animation: bottle-drift 8s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.55));
}
@keyframes bottle-drift{ 0%,100%{ transform:translateY(0) rotateY(-6deg);} 50%{ transform:translateY(-16px) rotateY(4deg);} }
.bottle{ position:relative; width:200px; height:360px; margin:0 auto; }
.bottle .cap{
  position:absolute; top:-46px; left:50%; transform:translateX(-50%);
  width:78px; height:52px; border-radius:10px 10px 6px 6px;
  background:linear-gradient(135deg,#3a3630,#151312 55%, #050505);
  border:1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.25), inset 0 -8px 14px rgba(0,0,0,0.5), 0 10px 20px rgba(0,0,0,.5);
}
.bottle .cap::after{
  content:''; position:absolute; inset:6px 10px auto 10px; height:6px; border-radius:4px;
  background:linear-gradient(90deg, transparent, rgba(227,196,149,0.7), transparent);
}
.bottle .neck{
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  width:34px; height:22px; background:linear-gradient(180deg, rgba(255,255,255,0.5), rgba(182,164,255,0.25));
  border:1px solid rgba(255,255,255,0.35); border-bottom:none;
}
.bottle .body{
  position:absolute; top:6px; left:0; right:0; bottom:0; border-radius:26px 26px 34px 34px;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.06) 18%, rgba(182,164,255,0.28) 46%, rgba(227,196,149,0.22) 72%, rgba(255,255,255,0.35) 100%);
  border:1px solid rgba(255,255,255,0.4);
  box-shadow:
    inset 12px 0 30px rgba(255,255,255,0.18),
    inset -18px -10px 40px rgba(0,0,0,0.35),
    inset 0 -60px 60px rgba(182,164,255,0.15),
    0 30px 60px -20px rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  overflow:hidden;
}
.bottle .body::before{ /* liquid */
  content:''; position:absolute; left:10px; right:10px; bottom:10px; top:34%; border-radius:20px 20px 28px 28px;
  background:linear-gradient(180deg, rgba(227,196,149,0.55), rgba(182,164,255,0.5));
  mix-blend-mode:overlay; opacity:.8;
}
.bottle .body::after{ /* highlight streak */
  content:''; position:absolute; top:6%; left:14%; width:18px; height:78%; border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0));
  filter:blur(2px); opacity:.7;
}
.bottle .label{
  position:absolute; left:50%; top:44%; transform:translate(-50%,-50%); text-align:center; z-index:3;
}
.bottle .label .lg{
  font-family:'Cormorant Garamond',serif; font-size:22px; letter-spacing:.32em; padding-left:.32em; color:#fff;
  text-shadow:0 0 18px rgba(255,255,255,0.6);
}
.bottle .label .sm{ font-size:8px; letter-spacing:.3em; color:rgba(255,255,255,0.65); margin-top:4px; text-transform:uppercase;}

/* mist */
.mist-field{
  position:absolute; left:50%; top:-8%; width:520px; height:340px; transform:translateX(-50%);
  pointer-events:none; z-index:2;
}
.puff{
  position:absolute; bottom:0; left:50%; border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,0.5), rgba(255,255,255,0) 70%);
  filter:blur(6px); opacity:0; animation: puff-rise 4.5s ease-out infinite;
}
.puff:nth-child(1){ width:26px; height:26px; margin-left:-40px; animation-delay:0s;}
.puff:nth-child(2){ width:34px; height:34px; margin-left:-10px; animation-delay:.4s;}
.puff:nth-child(3){ width:22px; height:22px; margin-left:20px; animation-delay:.9s;}
.puff:nth-child(4){ width:30px; height:30px; margin-left:-25px; animation-delay:1.3s;}
.puff:nth-child(5){ width:20px; height:20px; margin-left:8px; animation-delay:1.8s;}
@keyframes puff-rise{
  0%{ opacity:0; transform:translate(0,0) scale(.4);}
  20%{ opacity:.55;}
  100%{ opacity:0; transform:translate(var(--dx,10px),-220px) scale(2.4);}
}
.mist-word{
  position:absolute; left:50%; top:6%; transform:translateX(-50%);
  font-family:'Cormorant Garamond',serif; font-size:54px; letter-spacing:.5em; padding-left:.5em;
  color:#fff; display:flex;
}
.mist-word span{
  opacity:0; filter:blur(14px); display:inline-block;
  animation: mist-letter 6s ease-in-out infinite;
  text-shadow:0 0 18px rgba(255,255,255,0.8), 0 0 40px var(--violet-soft), 0 0 70px var(--gold-soft);
}
.mist-word span:nth-child(1){ animation-delay:.1s; }
.mist-word span:nth-child(2){ animation-delay:.35s; }
.mist-word span:nth-child(3){ animation-delay:.6s; }
.mist-word span:nth-child(4){ animation-delay:.85s; }
@keyframes mist-letter{
  0%{ opacity:0; filter:blur(16px); transform:translateY(14px) scale(.8);}
  18%{ opacity:1; filter:blur(0px); transform:translateY(0) scale(1);}
  55%{ opacity:.9; filter:blur(0px); transform:translateY(-6px) scale(1);}
  78%{ opacity:0; filter:blur(10px); transform:translateY(-26px) scale(1.06);}
  100%{ opacity:0; }
}

/* ============================= CATEGORY STRIP ============================= */
.cat-strip{ padding:26px 0; position:sticky; top:96px; z-index:200; }
.cat-strip .wrap{ padding:0 32px; }
.cat-row{
  display:flex; gap:10px; padding:10px; border-radius:100px; overflow-x:auto; scrollbar-width:none;
}
.cat-row::-webkit-scrollbar{ display:none; }
.cat-pill{
  flex:0 0 auto; padding:11px 22px; border-radius:100px; font-size:12.5px; font-weight:600;
  letter-spacing:.05em; color:var(--ink-1); border:1px solid transparent; transition:all .35s var(--ease);
  background:transparent;
}
.cat-pill:hover{ color:var(--ink-0); }
.cat-pill.active{
  color:#0b0b0d; background:linear-gradient(135deg, var(--gold), var(--violet));
  box-shadow:0 8px 24px -8px var(--violet-soft);
}

/* ============================= PRODUCTS ============================= */
.section{ padding:110px 0; position:relative; }
.section-tag{ display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.card{
  border-radius:var(--radius-lg); padding:26px 24px 24px; position:relative; overflow:hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s;
}
.card:hover{ transform:translateY(-10px); border-color:var(--glass-border-strong); box-shadow:0 30px 60px -24px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.16); }
.card-badge{
  position:absolute; top:20px; left:20px; font-size:10px; letter-spacing:.14em; text-transform:uppercase;
  padding:6px 12px; border-radius:100px; background:var(--glass-fill-strong); border:1px solid var(--glass-border);
  color:var(--ink-1); z-index:2;
}
.card-stage{
  position:relative; height:230px; display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.card-stage .glow{
  position:absolute; width:170px; height:170px; border-radius:50%; filter:blur(30px); opacity:.55;
}
.mini-bottle{ position:relative; width:92px; height:168px; transform:translateZ(0); transition:transform .5s var(--ease); }
.card:hover .mini-bottle{ transform:translateY(-6px) rotateZ(-1.5deg); }
.mini-bottle .cap{
  position:absolute; top:-20px; left:50%; transform:translateX(-50%); width:34px; height:22px; border-radius:6px 6px 3px 3px;
  background:linear-gradient(135deg,#3a3630,#131110); border:1px solid rgba(255,255,255,0.2);
}
.mini-bottle .neck{ position:absolute; top:-6px; left:50%; transform:translateX(-50%); width:16px; height:10px; background:rgba(255,255,255,0.3); border:1px solid rgba(255,255,255,0.3); border-bottom:none; }
.mini-bottle .body{
  position:absolute; inset:2px 0 0 0; border-radius:14px 14px 18px 18px; border:1px solid rgba(255,255,255,0.4);
  box-shadow: inset 8px 0 18px rgba(255,255,255,0.16), inset -10px -6px 22px rgba(0,0,0,0.4), 0 18px 30px -14px rgba(0,0,0,0.6);
  overflow:hidden;
}
.mini-bottle .body::after{ content:''; position:absolute; top:6%; left:16%; width:9px; height:80%; border-radius:10px; background:linear-gradient(180deg, rgba(255,255,255,0.85), transparent); filter:blur(1px); opacity:.75; }
.fam-fresh .body{ background:linear-gradient(150deg, rgba(255,255,255,0.5), rgba(120,220,210,0.35) 55%, rgba(255,255,255,0.3)); }
.fam-fresh .glow{ background:radial-gradient(circle,#7de0d6,transparent 70%); }
.fam-floral .body{ background:linear-gradient(150deg, rgba(255,255,255,0.5), rgba(240,160,190,0.35) 55%, rgba(255,255,255,0.3)); }
.fam-floral .glow{ background:radial-gradient(circle,#f2a6c8,transparent 70%); }
.fam-woody .body{ background:linear-gradient(150deg, rgba(255,255,255,0.45), rgba(190,140,90,0.4) 55%, rgba(255,255,255,0.28)); }
.fam-woody .glow{ background:radial-gradient(circle,#c99a63,transparent 70%); }
.fam-oriental .body{ background:linear-gradient(150deg, rgba(255,255,255,0.45), rgba(227,196,149,0.45) 55%, rgba(255,255,255,0.28)); }
.fam-oriental .glow{ background:radial-gradient(circle,#e3c495,transparent 70%); }
.fam-afterdark .body{ background:linear-gradient(150deg, rgba(255,255,255,0.35), rgba(120,90,200,0.5) 55%, rgba(20,10,30,0.5)); }
.fam-afterdark .glow{ background:radial-gradient(circle,#8a6ae0,transparent 70%); }

.card-family{ font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-2); margin-bottom:8px; }
.card-name{ font-size:23px; margin-bottom:8px; }
.card-notes{ font-size:12.5px; color:var(--ink-2); line-height:1.6; margin-bottom:18px; min-height:38px; }
.card-notes b{ color:var(--ink-1); font-weight:600; }
.card-foot{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.price{ font-family:'Cormorant Garamond',serif; font-size:22px; font-weight:600; }
.add-btn{
  padding:11px 18px; border-radius:100px; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  background:var(--glass-fill-strong); border:1px solid var(--glass-border-strong); color:var(--ink-0);
  transition:transform .3s var(--ease), background .3s;
}
.add-btn:hover{ background:linear-gradient(135deg,var(--gold),var(--violet)); color:#0a0a0c; transform:scale(1.04); }
.add-btn.added{ background:linear-gradient(135deg,var(--gold),var(--violet)); color:#0a0a0c; }

/* ============================= QUIZ ============================= */
.quiz-panel{
  border-radius:36px; padding:64px; position:relative; overflow:hidden;
}
.quiz-panel::before{
  content:''; position:absolute; inset:-40%; background:conic-gradient(from 0deg, rgba(182,164,255,0.15), rgba(227,196,149,0.12), rgba(182,164,255,0.15));
  animation:spin 18s linear infinite; z-index:0;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.quiz-inner{ position:relative; z-index:2; }
.quiz-top{ display:flex; justify-content:space-between; align-items:flex-start; gap:30px; flex-wrap:wrap; margin-bottom:40px; }
.quiz-steps{ font-size:12px; color:var(--ink-2); letter-spacing:.08em; }
.quiz-q{ font-size:clamp(26px,3vw,38px); margin-bottom:34px; max-width:640px; }
.quiz-options{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.quiz-opt{
  padding:22px 16px; border-radius:18px; text-align:center; font-size:14px; font-weight:600;
  background:var(--glass-fill); border:1px solid var(--glass-border); transition:all .35s var(--ease);
}
.quiz-opt:hover{ background:var(--glass-fill-strong); border-color:var(--glass-border-strong); transform:translateY(-4px); }
.quiz-opt.chosen{ background:linear-gradient(135deg,var(--gold),var(--violet)); color:#0a0a0c; }
.quiz-result{ display:none; text-align:center; padding:20px 0; }
.quiz-result.show{ display:block; }
.quiz-result .card-name{ font-size:34px; margin:16px 0 6px;}
.quiz-progress{ height:3px; border-radius:3px; background:rgba(255,255,255,0.1); margin-bottom:34px; overflow:hidden;}
.quiz-progress i{ display:block; height:100%; width:25%; background:var(--line-gradient); transition:width .5s var(--ease); }

/* ============================= FOOTER ============================= */
footer{ padding:80px 0 40px; border-top:1px solid var(--glass-border); margin-top:60px; }
.foot-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; margin-bottom:60px; }
.foot-logo{ font-family:'Cormorant Garamond',serif; font-size:30px; letter-spacing:.4em; padding-left:.4em; margin-bottom:16px; }
.foot-col h4{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-2); margin-bottom:16px; font-family:'Manrope'; font-weight:700;}
.foot-col a{ display:block; font-size:14px; color:var(--ink-1); padding:6px 0; transition:color .3s; }
.foot-col a:hover{ color:var(--ink-0); }
.foot-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; font-size:12.5px; color:var(--ink-2); border-top:1px solid var(--glass-border); padding-top:28px; }

/* ============================= CART DRAWER ============================= */
.overlay{ position:fixed; inset:0; background:rgba(4,4,6,0.6); backdrop-filter:blur(4px); z-index:900; opacity:0; pointer-events:none; transition:opacity .4s var(--ease); }
.overlay.show{ opacity:1; pointer-events:auto; }
.drawer{
  position:fixed; top:0; right:0; height:100%; width:420px; max-width:92vw; z-index:950;
  transform:translateX(100%); transition:transform .55s var(--ease);
  display:flex; flex-direction:column; border-left:1px solid var(--glass-border);
  background:rgba(10,10,13,0.75); backdrop-filter:blur(30px) saturate(160%);
}
.drawer.show{ transform:translateX(0); }
.drawer-head{ display:flex; justify-content:space-between; align-items:center; padding:26px 28px; border-bottom:1px solid var(--glass-border); }
.drawer-head h3{ font-size:24px; }
.drawer-body{ flex:1; overflow-y:auto; padding:20px 28px; display:flex; flex-direction:column; gap:18px; }
.drawer-empty{ text-align:center; color:var(--ink-2); font-size:14px; padding:60px 0; }
.cart-item{ display:flex; gap:14px; align-items:center; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,0.08); }
.cart-item .mini-bottle{ width:46px; height:84px; flex:0 0 auto; }
.cart-item .ci-info{ flex:1; }
.cart-item .ci-info .nm{ font-size:15.5px; font-family:'Cormorant Garamond',serif; margin-bottom:2px;}
.cart-item .ci-info .fam{ font-size:10.5px; color:var(--ink-2); text-transform:uppercase; letter-spacing:.08em;}
.ci-qty{ display:flex; align-items:center; gap:8px; margin-top:8px; }
.ci-qty button{ width:22px; height:22px; border-radius:50%; background:var(--glass-fill); border:1px solid var(--glass-border); color:var(--ink-0); font-size:13px; display:flex; align-items:center; justify-content:center; }
.ci-remove{ font-size:11px; color:var(--ink-2); text-decoration:underline; margin-left:6px;}
.drawer-foot{ padding:24px 28px 30px; border-top:1px solid var(--glass-border); }
.drawer-total{ display:flex; justify-content:space-between; font-size:15px; margin-bottom:16px; }
.drawer-total b{ font-family:'Cormorant Garamond',serif; font-size:22px; }

/* ============================= SEARCH OVERLAY ============================= */
.search-layer{
  position:fixed; inset:0; z-index:960; display:flex; align-items:flex-start; justify-content:center;
  padding-top:120px; opacity:0; pointer-events:none; transition:opacity .4s var(--ease);
  background:rgba(4,4,6,0.7); backdrop-filter:blur(6px);
}
.search-layer.show{ opacity:1; pointer-events:auto; }
.search-box{ width:640px; max-width:92vw; }
.search-input-row{ display:flex; align-items:center; gap:14px; padding:20px 26px; border-radius:100px; margin-bottom:24px; }
.search-input-row input{
  flex:1; background:transparent; border:none; outline:none; color:var(--ink-0); font-size:18px; font-family:'Manrope';
}
.search-input-row input::placeholder{ color:var(--ink-2); }
.search-results{ display:flex; flex-direction:column; gap:4px; max-height:50vh; overflow-y:auto; border-radius:20px; }
.search-result-item{ display:flex; align-items:center; gap:16px; padding:14px 20px; border-radius:14px; transition:background .25s; }
.search-result-item:hover{ background:var(--glass-fill); }
.search-result-item .mini-bottle{ width:30px; height:56px; }
.sr-name{ font-size:15px; font-family:'Cormorant Garamond',serif; }
.sr-meta{ font-size:11px; color:var(--ink-2); text-transform:uppercase; letter-spacing:.06em; }
.sr-price{ margin-left:auto; font-family:'Cormorant Garamond',serif; font-size:16px; }
.search-hint{ text-align:center; color:var(--ink-2); font-size:13px; padding:20px 0; }

/* ============================= TOAST ============================= */
.toast{
  position:fixed; bottom:32px; left:50%; transform:translateX(-50%) translateY(20px); z-index:1000;
  padding:16px 26px; border-radius:100px; opacity:0; pointer-events:none; transition:all .45s var(--ease);
  font-size:13.5px; font-weight:600; display:flex; align-items:center; gap:10px;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }
.toast .dot{ width:8px; height:8px; border-radius:50%; background:linear-gradient(135deg,var(--gold),var(--violet)); }

/* ============================= RESPONSIVE ============================= */
@media (max-width:1080px){
  .hero-inner{ grid-template-columns:1fr; }
  .stage{ height:480px; order:-1; }
  .grid{ grid-template-columns:repeat(2,1fr); }
  .foot-grid{ grid-template-columns:1fr 1fr; }
  .quiz-options{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:720px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .grid{ grid-template-columns:1fr; }
  .wrap{ padding:0 20px; }
  .cat-strip .wrap{ padding:0 20px; }
  .hero{ padding-top:130px; }
  .hero-stats{ gap:22px; flex-wrap:wrap; }
  .quiz-panel{ padding:34px 22px; }
  .foot-grid{ grid-template-columns:1fr 1fr; gap:26px; }
  .mist-word{ font-size:32px; }
  .stage{ height:400px; }
  .drawer{ width:100%; }
}
