:root {
  --bg: #060606;
  --bg2: #0e0d0b;
  --panel: #141210;
  --line: #2a2620;
  --gold: #d4af37;
  --gold-2: #f4e2a1;
  --gold-deep: #a8842a;
  --cream: #f6f1e7;
  --muted: #9b9384;
  --grad-gold: linear-gradient(120deg, #a8842a 0%, #f4e2a1 38%, #d4af37 60%, #8a6a1f 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--cream); font-family: "Jost", sans-serif; font-weight: 300; overflow-x: hidden; line-height: 1.6; }
h1, h2, h3, .logo, .wordmark, .serif { font-family: "Playfair Display", serif; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--gold-2); }
img { max-width: 100%; display: block; }
#particles { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .45; }
main { position: relative; z-index: 1; }

/* ---------- buttons ---------- */
.btn { display: inline-block; padding: 14px 30px; border-radius: 2px; font-size: 13px; letter-spacing: .18em;
  text-transform: uppercase; cursor: pointer; border: 1px solid transparent; font-weight: 500;
  transition: transform .3s, box-shadow .3s, background-position .4s, color .3s; font-family: inherit; }
.btn-gold { background: var(--grad-gold); background-size: 200% 100%; color: #1a1407; box-shadow: 0 6px 30px rgba(212,175,55,.25); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 44px rgba(212,175,55,.45); background-position: 100% 0; }
.btn-ghost { border-color: var(--line); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-3px); }
.btn.full { width: 100%; text-align: center; }

/* ---------- header / nav ---------- */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; display: flex; align-items: center;
  justify-content: space-between; padding: 22px 6vw; transition: background .4s, padding .4s, border-color .4s; border-bottom: 1px solid transparent; }
#nav.scrolled { background: rgba(6,6,6,.85); backdrop-filter: blur(14px); padding: 13px 6vw; border-color: var(--line); }
.logo { font-size: 22px; font-weight: 900; letter-spacing: .26em; background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.logo small { display: block; font-size: 8px; letter-spacing: .5em; text-align: center; color: var(--gold-deep); -webkit-text-fill-color: var(--gold-deep); }
.links { display: flex; gap: 30px; }
.links a { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); transition: color .3s; position: relative; }
.links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.links a:hover, .links a.active { color: var(--cream); } .links a:hover::after, .links a.active::after { width: 100%; }
.cart-btn { background: transparent; border: 1px solid var(--line); color: var(--cream); padding: 10px 18px; border-radius: 2px;
  font-family: inherit; font-size: 12px; letter-spacing: .16em; cursor: pointer; transition: border-color .3s, color .3s; }
.cart-btn:hover { border-color: var(--gold); color: var(--gold-2); }
#cart-count { color: var(--gold); font-weight: 600; }
.cart-btn.bump { animation: bump .4s; }
@keyframes bump { 0%,100%{transform:scale(1)} 40%{transform:scale(1.22)} }

/* ---------- heroes ---------- */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 6vw; }
.hero-sm { min-height: 56vh; }
.hero-glow { position: absolute; width: 70vw; height: 70vw; max-width: 860px; max-height: 860px; border-radius: 50%;
  top: 44%; left: 50%; transform: translate(-50%,-50%); filter: blur(20px); z-index: -1; animation: breathe 8s ease-in-out infinite;
  background: radial-gradient(circle, rgba(212,175,55,.18) 0%, rgba(212,175,55,.05) 36%, transparent 68%); }
@keyframes breathe { 0%,100%{transform:translate(-50%,-50%) scale(1);opacity:.85} 50%{transform:translate(-50%,-50%) scale(1.16);opacity:1} }
.eyebrow { color: var(--gold); letter-spacing: .4em; font-size: 12px; margin-bottom: 24px; }
.wordmark { font-weight: 900; line-height: 1.12; letter-spacing: .03em; padding-bottom: .12em; background: linear-gradient(100deg,#8a6a1f,#f4e2a1 25%,#fff8e0 45%,#d4af37 60%,#8a6a1f 100%);
  background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shimmer 6s linear infinite; filter: drop-shadow(0 8px 40px rgba(212,175,55,.22)); }
.wordmark.xl { font-size: clamp(54px, 12vw, 150px); }
.wordmark.lg { font-size: clamp(40px, 8vw, 92px); }
@keyframes shimmer { to { background-position: 250% 0; } }
.tagline { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(18px,2.6vw,30px); margin-top: 10px; }
.sub { color: var(--muted); max-width: 560px; margin: 20px auto 0; font-size: 16px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 28px; color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.scroll-cue span { display: block; margin-top: 8px; color: var(--gold); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ---------- marquee ---------- */
.marquee { background: var(--grad-gold); overflow: hidden; padding: 12px 0; }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: scroll-x 30s linear infinite; }
.marquee-track span { color: #1a1407; font-weight: 600; letter-spacing: .22em; font-size: 13px; text-transform: uppercase; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 100px 6vw; max-width: 1280px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 46px; }
.kicker { color: var(--gold); letter-spacing: .35em; font-size: 12px; text-transform: uppercase; }
.section-head h2 { font-size: clamp(32px,5vw,56px); margin: 14px 0 10px; font-weight: 700; }
.section-head p { color: var(--muted); }

/* ---------- category tiles (home) ---------- */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.cat-tile { position: relative; height: 320px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: transform .45s, border-color .45s, box-shadow .45s; }
.cat-tile:hover { transform: translateY(-8px); border-color: var(--gold-deep); box-shadow: 0 24px 60px rgba(0,0,0,.55), 0 0 30px rgba(212,175,55,.12); }
.cat-tile .bg { position: absolute; inset: 0; z-index: -1; transition: transform .6s; }
.cat-tile:hover .bg { transform: scale(1.06); }
.cat-tile h3 { font-size: 32px; }
.cat-tile span { color: var(--gold); letter-spacing: .2em; font-size: 12px; text-transform: uppercase; margin-top: 8px; }

/* ---------- 3D unboxing scene (home) ---------- */
.box-wrap { text-align: center; padding: 230px 0 140px; }
.scene { display: inline-block; }
.stage { position: relative; width: 340px; height: 320px; margin: 0 auto; perspective: 1300px; perspective-origin: 50% 40%;
  transform: scale(1.4); cursor: pointer; outline: none; }

/* ambient halo + light rays + grounding reflection */
.halo, .rays { position: absolute; left: 50%; top: 50%; border-radius: 50%; opacity: 0; transition: opacity 1s; pointer-events: none; }
.halo { width: 400px; height: 400px; transform: translate(-50%,-50%) translateZ(-30px); filter: blur(16px);
  background: radial-gradient(circle, rgba(212,175,55,.30), transparent 60%); }
.rays { width: 560px; height: 560px; transform: translate(-50%,-50%) translateZ(-45px);
  background: repeating-conic-gradient(from 0deg, rgba(212,175,55,.18) 0deg 5deg, transparent 5deg 17deg);
  -webkit-mask: radial-gradient(circle, #000 6%, transparent 64%); mask: radial-gradient(circle, #000 6%, transparent 64%);
  animation: rayspin 26s linear infinite; }
@keyframes rayspin { to { transform: translate(-50%,-50%) translateZ(-45px) rotate(360deg); } }
.stage.opened .halo { opacity: 1; } .stage.opened .rays { opacity: .65; }
.reflection { position: absolute; left: 50%; bottom: 12px; width: 210px; height: 34px; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(212,175,55,.20), transparent 70%); filter: blur(7px); transition: opacity .8s; }

/* the spinning 3D box */
.box3d { position: absolute; left: 50%; top: 52%; width: 0; height: 0; transform-style: preserve-3d;
  animation: sway 7s ease-in-out infinite; }
@keyframes sway {
  0%, 100% { transform: translateY(0) rotateX(-15deg) rotateY(-17deg); }
  50%      { transform: translateY(-12px) rotateX(-15deg) rotateY(17deg); }
}
.stage.opened .box3d { animation-play-state: paused; }
.cuboid { position: absolute; left: 0; top: 0; transform-style: preserve-3d; transition: transform 1s cubic-bezier(.34,1.3,.4,1); }
.cuboid.base { transform: translateY(0); }
.cuboid.lid { transform: translateY(-83px); }
.stage.opened .lid { transform: translateY(-168px) rotateX(20deg); }

.cf { position: absolute; left: 0; top: 0; box-sizing: border-box; border: 1px solid var(--gold-deep);
  background: linear-gradient(135deg, #1d1812, #0c0b09); display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 26px rgba(212,175,55,.07); }
.lid .cf { background: linear-gradient(135deg, #261f16, #14110c); }
.mono { font-family: "Playfair Display", serif; font-weight: 700; font-size: 42px; letter-spacing: .05em;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mono.small { font-size: 11px; letter-spacing: .26em; }

/* base cuboid 150 x 130 x 120 */
.base .cf-front  { width: 150px; height: 120px; transform: translate(-50%,-50%) translateZ(65px); }
.base .cf-back   { width: 150px; height: 120px; transform: translate(-50%,-50%) rotateY(180deg) translateZ(65px); }
.base .cf-right  { width: 130px; height: 120px; transform: translate(-50%,-50%) rotateY(90deg) translateZ(75px); }
.base .cf-left   { width: 130px; height: 120px; transform: translate(-50%,-50%) rotateY(-90deg) translateZ(75px); }
.base .cf-top    { width: 150px; height: 130px; transform: translate(-50%,-50%) rotateX(90deg) translateZ(60px); }
.base .cf-bottom { width: 150px; height: 130px; transform: translate(-50%,-50%) rotateX(-90deg) translateZ(60px); }
/* lid cuboid 160 x 140 x 46 */
.lid .cf-front  { width: 160px; height: 46px; transform: translate(-50%,-50%) translateZ(70px); }
.lid .cf-back   { width: 160px; height: 46px; transform: translate(-50%,-50%) rotateY(180deg) translateZ(70px); }
.lid .cf-right  { width: 140px; height: 46px; transform: translate(-50%,-50%) rotateY(90deg) translateZ(80px); }
.lid .cf-left   { width: 140px; height: 46px; transform: translate(-50%,-50%) rotateY(-90deg) translateZ(80px); }
.lid .cf-top    { width: 160px; height: 140px; transform: translate(-50%,-50%) rotateX(90deg) translateZ(23px); }
.lid .cf-bottom { width: 160px; height: 140px; transform: translate(-50%,-50%) rotateX(-90deg) translateZ(23px); }

/* the perfume bottle rising out */
.bottle { position: absolute; left: 50%; top: 50%; display: flex; flex-direction: column; align-items: center; z-index: 2;
  opacity: 0; transform: translate(-50%,-50%) translateZ(85px) translateY(30px) scale(.5);
  transition: opacity 1s, transform 1.1s cubic-bezier(.2,.85,.25,1.15); filter: drop-shadow(0 0 20px rgba(212,175,55,.5)); }
.stage.opened .bottle { opacity: 1; transform: translate(-50%,-50%) translateZ(85px) translateY(-34px) scale(1); }
.b-cap { width: 30px; height: 36px; border-radius: 5px; background: linear-gradient(180deg, #f4e2a1, #a8842a); box-shadow: 0 0 12px rgba(212,175,55,.5); }
.b-neck { width: 16px; height: 12px; background: linear-gradient(180deg, #c9a449, #8a6a1f); }
.b-collar { width: 42px; height: 8px; border-radius: 2px; background: var(--grad-gold); }
.b-body { position: relative; width: 80px; height: 98px; border-radius: 10px; overflow: hidden; border: 1px solid var(--gold-deep);
  background: linear-gradient(135deg, rgba(244,226,161,.16), rgba(168,132,42,.26)); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; }
.b-liquid { position: absolute; left: 0; right: 0; bottom: 0; height: 62%;
  background: linear-gradient(180deg, rgba(212,175,55,.55), rgba(168,132,42,.85)); }
.b-shine { position: absolute; top: -10%; left: 14%; width: 18px; height: 130%; transform: rotate(18deg);
  background: linear-gradient(90deg, rgba(255,255,255,.32), transparent); }
.b-label { position: relative; z-index: 2; font-family: "Playfair Display", serif; font-size: 26px; color: #1a1407; font-weight: 700; }

/* sparkle burst */
.sparks { position: absolute; left: 50%; top: 50%; width: 0; height: 0; z-index: 3; }
.spark { position: absolute; left: 0; top: 0; width: 7px; height: 7px; border-radius: 50%; opacity: 0;
  background: radial-gradient(circle, #fff8e0, #d4af37 60%, transparent); box-shadow: 0 0 10px #d4af37; }
.spark.go { animation: burst 1s ease-out forwards; }
@keyframes burst { 0% { opacity: 1; transform: translate(0,0) scale(1.2); } 100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(.2); } }

/* the unboxed coupon ticket */
.coupon { position: absolute; left: 50%; top: 50%; z-index: 6; width: 246px; text-align: center; padding: 22px 24px; border-radius: 12px;
  border: 1px solid var(--gold); background: linear-gradient(160deg, rgba(30,25,17,.97), rgba(13,11,9,.97)); backdrop-filter: blur(8px);
  box-shadow: 0 24px 70px rgba(0,0,0,.65), 0 0 44px rgba(212,175,55,.28);
  opacity: 0; pointer-events: none; transform: translate(-50%,-50%) translateZ(130px) translateY(40px) scale(.55) rotateX(18deg);
  transition: opacity .7s, transform .9s cubic-bezier(.2,.85,.25,1.3); }
.stage.opened .coupon { opacity: 1; pointer-events: auto; transition-delay: .5s;
  transform: translate(-50%,-50%) translateZ(130px) translateY(-150px) scale(1) rotateX(0); }
.cpn-eyebrow { color: var(--gold); letter-spacing: .3em; font-size: 11px; text-transform: uppercase; }
.cpn-amt { font-family: "Playfair Display", serif; font-size: 42px; font-weight: 700; margin: 6px 0 14px; letter-spacing: .02em;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cpn-row { display: flex; align-items: stretch; border: 1px dashed var(--gold-deep); border-radius: 6px; overflow: hidden; }
.cpn-code { flex: 1; padding: 11px 8px; font-family: ui-monospace, monospace; letter-spacing: .22em; color: var(--gold-2); font-size: 16px;
  display: flex; align-items: center; justify-content: center; }
.cpn-copy { background: var(--grad-gold); color: #1a1407; border: 0; padding: 0 16px; font-family: inherit; font-weight: 600;
  letter-spacing: .08em; cursor: pointer; font-size: 12px; text-transform: uppercase; }
.cpn-copy:hover { filter: brightness(1.08); }
.cpn-note { color: var(--muted); font-size: 11px; margin-top: 11px; letter-spacing: .04em; }

.pbox-hint { margin-top: 26px; color: var(--gold); letter-spacing: .3em; font-size: 12px; text-transform: uppercase; transition: color .4s; }

@media (max-width: 760px) { .box-wrap { padding: 170px 0 90px; } .stage { transform: scale(1); } }

/* ---------- product grid ---------- */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 26px; }
.card { background: linear-gradient(180deg, var(--panel), #0c0b09); border: 1px solid var(--line); border-radius: 6px;
  overflow: hidden; cursor: pointer; position: relative; transition: transform .45s cubic-bezier(.2,.7,.2,1), box-shadow .45s, border-color .45s; }
.card:hover { transform: translateY(-10px); border-color: var(--gold-deep); box-shadow: 0 26px 60px rgba(0,0,0,.6), 0 0 36px rgba(212,175,55,.14); }
.card-art { height: 280px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.card-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.card:hover .card-art img { transform: scale(1.08); }
.art-initials { font-family: "Playfair Display", serif; font-size: 60px; font-weight: 700; background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .92; }
.card-art::after { content: ""; position: absolute; top: 0; left: -60%; width: 50%; height: 100%; transform: skewX(-20deg); transition: left .7s;
  background: linear-gradient(100deg, transparent, rgba(255,248,224,.18), transparent); }
.card:hover .card-art::after { left: 130%; }
.card-body { padding: 18px; }
.card-brand { color: var(--gold); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.card-name { font-family: "Playfair Display", serif; font-size: 18px; margin: 6px 0 12px; line-height: 1.3; min-height: 48px; }
.card-row { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 19px; color: var(--gold-2); }
.add { background: transparent; border: 1px solid var(--line); color: var(--cream); padding: 9px 15px; border-radius: 2px;
  font-family: inherit; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: all .3s; }
.add:hover { background: var(--grad-gold); color: #1a1407; border-color: transparent; }
.badge-hot { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(7,7,7,.7); border: 1px solid var(--gold-deep);
  color: var(--gold-2); font-size: 10px; letter-spacing: .15em; padding: 4px 10px; border-radius: 20px; text-transform: uppercase; backdrop-filter: blur(4px); }
.empty-note { text-align: center; color: var(--muted); padding: 60px; grid-column: 1/-1; }

/* ---------- filters ---------- */
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 38px; }
.filter { background: transparent; border: 1px solid var(--line); color: var(--muted); padding: 9px 20px; border-radius: 30px;
  cursor: pointer; font-family: inherit; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; transition: all .3s; }
.filter:hover { color: var(--cream); border-color: var(--gold-deep); }
.filter.active { background: var(--grad-gold); color: #1a1407; border-color: transparent; font-weight: 600; }

/* ---------- about ---------- */
.about-wrap { max-width: 820px; margin: 0 auto; }
.about-wrap p { color: var(--muted); font-size: 17px; margin-bottom: 22px; }
.about-wrap p strong { color: var(--cream); font-weight: 500; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 50px 0; }
.pillar { text-align: center; padding: 34px 22px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg2); }
.pillar .ic { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.pillar h3 { font-size: 19px; margin-bottom: 8px; }
.pillar p { font-size: 14px; margin: 0; }

/* ---------- story band ---------- */
.band { text-align: center; padding: 80px 30px; border-radius: 10px; border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.12), transparent 70%), var(--bg2); }
.band h2 { font-size: clamp(30px,4.5vw,50px); margin-bottom: 12px; }
.band p { color: var(--muted); margin-bottom: 26px; }

/* ---------- footer ---------- */
footer { text-align: center; padding: 70px 6vw 50px; border-top: 1px solid var(--line); position: relative; z-index: 1; margin-top: 40px; }
.foot-logo { font-family: "Playfair Display", serif; font-size: 34px; font-weight: 900; letter-spacing: .22em; background: var(--grad-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot-tag { font-style: italic; font-family: "Playfair Display", serif; color: var(--muted); margin-top: 6px; }
.foot-links { display: flex; gap: 26px; justify-content: center; margin: 22px 0 14px; flex-wrap: wrap; }
.foot-links a { color: var(--muted); font-size: 13px; letter-spacing: .1em; transition: color .3s; }
.foot-links a:hover { color: var(--gold-2); }
.foot-social { display: flex; gap: 16px; justify-content: center; margin: 0 0 22px; flex-wrap: wrap; }
.foot-social a { color: var(--gold); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 30px; transition: all .3s; }
.foot-social a:hover { border-color: var(--gold); background: rgba(212,175,55,.08); color: var(--gold-2); }
.copy { color: #5a554c; font-size: 12px; }

/* ---------- cart drawer ---------- */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 60; backdrop-filter: blur(3px); transition: opacity .3s; }
.overlay.hidden { opacity: 0; pointer-events: none; }
.cart { position: fixed; top: 0; right: 0; width: 400px; max-width: 92vw; height: 100%; background: var(--bg2);
  border-left: 1px solid var(--line); z-index: 70; display: flex; flex-direction: column; transition: transform .4s cubic-bezier(.3,.7,.2,1); }
.cart.hidden { transform: translateX(100%); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 26px 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 22px; }
.x { background: transparent; border: 0; color: var(--muted); font-size: 20px; cursor: pointer; }
.x:hover { color: var(--gold-2); }
.cart-items { flex: 1; overflow-y: auto; padding: 12px 24px; }
.ci { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.ci-art { width: 60px; height: 60px; border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ci-art img { width: 100%; height: 100%; object-fit: cover; } .ci-art .art-initials { font-size: 22px; }
.ci-info { flex: 1; } .ci-name { font-family: "Playfair Display", serif; font-size: 15px; } .ci-price { color: var(--gold-2); font-size: 14px; margin-top: 2px; }
.ci-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.ci-qty button { width: 24px; height: 24px; background: transparent; border: 1px solid var(--line); color: var(--cream); cursor: pointer; border-radius: 2px; }
.ci-qty button:hover { border-color: var(--gold); color: var(--gold-2); }
.ci-rm { background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 11px; text-decoration: underline; align-self: flex-start; }
.cart-empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.subtotal { display: flex; justify-content: space-between; font-size: 18px; margin-bottom: 16px; }
.subtotal span:last-child { color: var(--gold-2); }
.cart-note { text-align: center; color: var(--muted); font-size: 11px; margin-top: 12px; }

/* ---------- quick view ---------- */
.qv { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 70; width: 760px; max-width: 94vw;
  background: var(--bg2); border: 1px solid var(--line); border-radius: 10px; display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; transition: opacity .3s, transform .3s; }
.qv.hidden { opacity: 0; pointer-events: none; transform: translate(-50%,-50%) scale(.96); }
.qv-x { position: absolute; top: 14px; right: 16px; z-index: 2; font-size: 22px; }
.qv-art { min-height: 380px; display: flex; align-items: center; justify-content: center; background: var(--panel); }
.qv-art .art-initials { font-size: 92px; }
.qv-info { padding: 44px 36px; display: flex; flex-direction: column; }
.qv-brand { color: var(--gold); letter-spacing: .18em; font-size: 12px; text-transform: uppercase; }
.qv-info h2 { font-size: 30px; margin: 8px 0 14px; }
.qv-price { font-size: 25px; color: var(--gold-2); margin-bottom: 16px; }
.qv-blurb { color: var(--muted); margin-bottom: 26px; flex: 1; }
.qv-trust { color: var(--muted); font-size: 12px; margin-top: 18px; }

/* ---------- toast ---------- */
.toast { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(30px); background: var(--grad-gold);
  color: #1a1407; padding: 14px 26px; border-radius: 3px; font-weight: 600; letter-spacing: .08em; font-size: 13px; opacity: 0;
  pointer-events: none; transition: all .35s; z-index: 90; box-shadow: 0 10px 40px rgba(212,175,55,.4); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 760px) {
  #nav { flex-wrap: wrap; gap: 10px; padding: 12px 5vw; }
  #nav.scrolled { padding: 10px 5vw; }
  .links { order: 3; width: 100%; justify-content: center; gap: 16px; }
  .links a { font-size: 11px; letter-spacing: .1em; }
  .qv { grid-template-columns: 1fr; } .qv-art { min-height: 230px; }
  .pillars { grid-template-columns: 1fr; }
}
