/* ═══════════════════════════════════════════
   THE BASEMENT — Shared Stylesheet
   ═══════════════════════════════════════════ */

/* ─── SELF-HOSTED FONTS ─── */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('/fonts/syne-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Instrument Serif';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/space-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/space-mono-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── TOKENS ─── */
:root {
  --black:    #0C0B0A;
  --charcoal: #161412;
  --mid:      #2A2724;
  --border:   rgba(255,255,255,0.07);
  --smoke:    #7A7672;
  --cream:    #F2EDE4;
  --cream-dim:#C8C1B8;
  --gold:     #C9A254;
  --gold-dim: #8A6E38;
  --gold-bg:  rgba(201,162,84,0.08);

  --sans:  'Syne', sans-serif;
  --serif: 'Instrument Serif', serif;
  --mono:  'Space Mono', monospace;

  --nav-h:      72px;
  --announce-h: 36px;
  --page-top:   calc(var(--announce-h) + var(--nav-h));
  --gut:        clamp(20px, 5vw, 80px);
  --max:   1440px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --fast:  0.22s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

/* Skip navigation for keyboard/screen reader users */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  z-index: 9999;
  border-radius: 0 0 6px 6px;
  transition: top 0.15s;
}
.skip-nav:focus { top: 0; }

/* Keyboard focus styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

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

/* Text selection */
::selection { background: var(--gold); color: var(--black); }

/* Themed scrollbar */
html { scrollbar-width: thin; scrollbar-color: var(--mid) var(--black); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--smoke); }

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

/* ─── UTILITY ─── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--smoke);
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-gold { color: var(--gold); }

/* 4-point sparkle shape */
.star {
  display: inline-block;
  background: currentColor;
  clip-path: polygon(50% 0%,55% 45%,100% 50%,55% 55%,50% 100%,45% 55%,0% 50%,45% 45%);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background var(--fast), color var(--fast), border-color var(--fast), transform var(--fast);
  white-space: nowrap;
}

.btn-solid {
  background: var(--cream);
  color: var(--black);
  padding: 14px 30px;
}
.btn-solid:hover  { background: var(--gold); transform: translateY(-2px); }
.btn-solid:active { transform: translateY(0) scale(0.97); }

.btn-outline {
  border: 1px solid rgba(201,162,84,0.45);
  color: var(--gold);
  padding: 13px 28px;
}
.btn-outline:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

.btn-ghost {
  color: var(--cream-dim);
  padding: 0;
}
.btn-ghost:hover { color: var(--cream); }

.btn-ghost .arrow {
  width: 36px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width 0.3s var(--ease);
}
.btn-ghost:hover .arrow { width: 52px; }
.btn-ghost .arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 9px; height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: var(--announce-h); left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  background: #F7F4EF;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
  border-bottom-color: rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-inline: var(--gut);
}
.nav-logo { height: 40px; width: auto; filter: none; transition: opacity var(--fast); }
a:hover .nav-logo { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12,11,10,0.5);
  position: relative;
  transition: color var(--fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-burger span:nth-child(2) { width: 70%; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--page-top); left: 0; right: 0; bottom: 0;
  background: var(--charcoal);
  padding: 40px var(--gut);
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav-mobile { visibility: hidden; }
.nav-mobile.open { transform: translateX(0); visibility: visible; }
.nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.nav-mobile ul a {
  display: block;
  font-family: var(--sans);
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--fast), padding-left 0.3s var(--ease);
}
.nav-mobile ul a:hover { color: var(--gold); padding-left: 12px; }
.nav-mobile-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--smoke);
}

/* ─── NAV DROPDOWN ─── */
.has-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #F7F4EF;
  border: 1px solid rgba(0,0,0,0.09);
  min-width: 190px;
  list-style: none;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.22s var(--ease);
  box-shadow: 0 16px 48px rgba(0,0,0,0.11);
  z-index: 200;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: #F7F4EF;
  border-left: 1px solid rgba(0,0,0,0.09);
  border-top: 1px solid rgba(0,0,0,0.09);
}
.has-dropdown.open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 11px 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(12,11,10,0.5);
  transition: color 0.15s ease, padding-left 0.2s var(--ease);
  white-space: nowrap;
}
.nav-dropdown li a::after { display: none; }
.nav-dropdown li a:hover { color: var(--black); padding-left: 26px; }
.nav-dropdown li:not(:last-child) { border-bottom: 1px solid rgba(0,0,0,0.05); }
.nav-dropdown li:first-child a { color: rgba(12,11,10,0.75); font-weight: 700; }

/* Chevron arrow indicator */
.nav-chevron {
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  margin-left: 5px;
  vertical-align: middle;
  transition: transform 0.2s ease;
}
.has-dropdown.open .nav-chevron { transform: rotate(-135deg) translateY(2px); }

/* Nav CTA button */
.btn-nav-cta {
  background: var(--black);
  color: var(--cream);
  padding: 10px 22px;
  font-size: 10px;
  transition: background var(--fast), color var(--fast), transform var(--fast);
}
.btn-nav-cta:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }

/* ─── MOBILE SUB-NAV ITEMS ─── */
.nav-mobile .nav-mobile-sub a {
  font-size: clamp(17px, 3.8vw, 24px);
  font-weight: 600;
  color: var(--smoke);
  padding: 7px 0 7px 22px;
  border-bottom-color: transparent;
  letter-spacing: -0.01em;
}
.nav-mobile .nav-mobile-sub a:hover { color: var(--gold); padding-left: 30px; }

/* ─── CURRENCY SWITCHER ─── */
.currency-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(12,11,10,0.07);
  border-radius: 7px;
  padding: 3px;
}
.currency-btn {
  background: transparent;
  border: none;
  color: rgba(12,11,10,0.45);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 4px 7px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.currency-btn:hover { color: var(--black); }
.currency-btn.active {
  background: var(--gold);
  color: var(--black);
}
.currency-switcher-mobile {
  background: rgba(255,255,255,0.07);
  margin-bottom: 20px;
  align-self: flex-start;
}
.currency-switcher-mobile .currency-btn { color: var(--smoke); }
.currency-switcher-mobile .currency-btn:hover { color: var(--cream); }
.currency-switcher-mobile .currency-btn.active {
  background: var(--gold);
  color: var(--black);
}

/* ─── MARQUEE ─── */
.marquee {
  background: var(--gold);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-inline: 22px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  flex-shrink: 0;
}

/* ─── SECTION TITLES ─── */
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 64px);
  flex-wrap: wrap;
}
.sec-title {
  font-family: var(--sans);
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--cream);
  text-wrap: balance;
}
.sec-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

/* ─── PRODUCT CARDS ─── */
.card {
  contain: layout style paint;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.card:hover::after { border-color: rgba(201,162,84,0.3); }

.card-visual {
  aspect-ratio: 1;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-visual { will-change: transform; }
.card:hover .card-visual { transform: scale(1.04); }
.card:active .card-visual { transform: scale(1.01); }

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.card-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-info {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--cream);
  line-height: 1.35;
  margin-top: 2px;
}
.card-price {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-top: 6px;
}
.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.card-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
  padding: 4px 8px;
  border: 1px solid var(--border);
}
.card-btn {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fast), border-color var(--fast);
}
.card:hover .card-btn { background: var(--gold); border-color: var(--gold); }
.card-btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,11,10,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.card:hover .card-overlay { opacity: 1; }
.card-overlay-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(242,237,228,0.35);
  padding: 9px 18px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.footer-logo { height: 52px; width: auto; }
.footer-nav {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  transition: color var(--fast);
}
.footer-nav a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--smoke);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--smoke);
  transition: color var(--fast);
}
.footer-legal a:hover { color: var(--cream-dim); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ─── ANNOUNCEMENT BAR ─── */
.announce {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--announce-h);
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1001;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.announce.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announce-close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  opacity: 0.5;
  font-size: 16px;
  line-height: 1;
  padding: 6px;
  min-width: 32px; min-height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--fast);
}
.announce-close:hover { opacity: 1; }
/* When dismissed, collapse spacing so nav fills the gap */
.announce-dismissed ~ .nav,
body.announce-dismissed .nav { top: 0; }
body.announce-dismissed { --page-top: var(--nav-h); }
/* Hide bar instantly when already-dismissed (prevents CLS on load) */
body.announce-dismissed .announce { display: none; }

/* ─── CART ─── */
.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(12,11,10,0.55);
  transition: color var(--fast);
  flex-shrink: 0;
}
.cart-btn:hover { color: var(--black); }
.cart-badge {
  position: absolute;
  top: 5px; right: 4px;
  min-width: 16px; height: 16px;
  padding: 0 3px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.25s var(--ease);
}
.cart-badge.visible { opacity: 1; transform: scale(1); }
@keyframes badge-pulse {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  70%  { transform: scale(0.9); }
  100% { transform: scale(1); }
}
.cart-badge.pulse { animation: badge-pulse 0.4s var(--ease) forwards; }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,11,10,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  touch-action: pan-y;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--charcoal);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-head-title {
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.cart-head-sub {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-top: 3px;
}
.cart-close {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  border: 1px solid var(--border);
  transition: color var(--fast), border-color var(--fast);
  flex-shrink: 0;
}
.cart-close:hover { color: var(--cream); border-color: rgba(255,255,255,0.2); }

.cart-shipping-bar {
  padding: 12px 24px;
  background: rgba(201,162,84,0.06);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-shipping-text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cart-shipping-progress {
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.cart-shipping-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width 0.55s var(--ease);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px 16px;
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cart-items::-webkit-scrollbar { width: 3px; }
.cart-items::-webkit-scrollbar-thumb { background: var(--border); }

.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
}

.cart-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-art {
  width: 52px; height: 52px;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-item-info { display: flex; flex-direction: column; gap: 2px; }
.cart-item-cat {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.cart-item-name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.2;
}
.cart-item-variant {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--smoke);
}
.cart-item-price {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--cream);
  font-variant-numeric: lining-nums tabular-nums;
  margin-top: 5px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-item-qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--smoke);
  font-size: 15px;
  line-height: 1;
  transition: color var(--fast), border-color var(--fast), background var(--fast);
}
.cart-item-qty-btn:hover { color: var(--cream); border-color: var(--gold); background: rgba(201,162,84,0.08); }
.cart-item-qty-num {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  min-width: 18px;
  text-align: center;
}
.cart-item-remove {
  font-size: 20px;
  color: var(--smoke);
  transition: color var(--fast);
  line-height: 1;
  padding: 2px 4px;
}
.cart-item-remove:hover { color: #e55; }

.cart-foot {
  padding: 18px 24px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cart-subtotal span:first-child {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--smoke);
}
.cart-subtotal span:last-child {
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--cream);
}
.cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cream);
  color: var(--black);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px;
  transition: background var(--fast), transform var(--fast);
}
.cart-checkout-btn:hover { background: var(--gold); transform: translateY(-2px); }
.cart-thankyou {
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
  opacity: 0.8;
}
.cart-foot-note {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  color: var(--smoke);
  text-align: center;
  line-height: 1.75;
}

/* ─── CART CONFIRM SCREEN ─── */
.cart-confirm {
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  z-index: 2;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart-confirm.open { transform: translateX(0); }
.cart-confirm-items {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}
.cart-confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.cart-confirm-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 3px;
}
.cart-confirm-item-detail {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--smoke);
}
.cart-confirm-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}
.cart-confirm-foot {
  padding: 16px 24px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
.cart-confirm-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--cream);
  padding: 2px 0;
}
.cart-back-btn {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--smoke);
  text-align: center;
  padding: 6px;
  transition: color var(--fast);
}
.cart-back-btn:hover { color: var(--cream); }
@media (max-width: 480px) {
  .cart-drawer { max-width: 100%; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-right .currency-switcher,
  .nav-right .btn-nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 480px) {
  .announce { font-size: 9px; letter-spacing: 0.12em; gap: 8px; }
  .announce .star { display: none; }
}

/* ─── VIEW TRANSITIONS ─── */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: 200ms ease both fade-out; }
  ::view-transition-new(root) { animation: 200ms ease both fade-in; }
  @keyframes fade-out { to { opacity: 0; } }
  @keyframes fade-in  { from { opacity: 0; } }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root),
  ::view-transition-new(root) { animation: none; }
}

/* ─── CART QTY BUTTON TOUCH TARGETS ─── */
.cart-item-qty-btn {
  min-width: 36px;
  min-height: 36px;
}
