/*
 * BlackFox52 storefront
 * Dark premium retail palette with foil-gold accents and serif display type.
 */

:root {
  --ink:        #0a0908;
  --panel:      #14110d;
  --panel-2:    #1c1813;
  --panel-hi:   #24201a;
  --paper:      #efe6d4;
  --paper-dim:  #cfc6b4;
  --muted:      #8f857a;
  --line:       #2a241b;
  --line-2:     #3a3327;
  --gold:       #c8a04a;
  --gold-hi:    #e6c47a;
  --gold-dim:   #6b4f1f;
  --crimson:    #b8202a;
  --teal:       #2f7f78;
  --green:      #4a8a5f;
  --shadow:     0 20px 60px rgba(0, 0, 0, 0.55);
  --glow-gold:  0 0 0 1px rgba(200, 160, 74, 0.35), 0 14px 40px rgba(200, 160, 74, 0.12);
}

* { box-sizing: border-box; }

/* overflow-x: clip prevents horizontal overflow WITHOUT creating a scroll
 * container — so position: sticky on .site-header (and other sticky
 * elements) keeps working against the viewport instead of the body. */
html, body { min-height: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15.5px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* atmospheric grain — single inline SVG, no extra request */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background: radial-gradient(620px circle at var(--spotlight-x, 50%) var(--spotlight-y, 18%), rgba(200, 160, 74, 0.13), transparent 58%);
  transition: opacity 260ms ease;
}

.deck-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.42;
  filter: saturate(0.82);
}

.deck-backdrop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 18%, rgba(10, 9, 8, 0.38), rgba(10, 9, 8, 0.88) 58%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.74), rgba(10, 9, 8, 0.96));
}

.deck-ghost {
  position: absolute;
  display: block;
  width: clamp(120px, 11vw, 210px);
  aspect-ratio: 3 / 4;
  opacity: 0.13;
  transform: rotate(var(--ghost-rotate, -8deg));
  filter: blur(0.2px) drop-shadow(0 28px 48px rgba(0, 0, 0, 0.7));
}

.deck-ghost img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.deck-ghost-1 { left: 3%; top: 16%; --ghost-rotate: -13deg; }
.deck-ghost-2 { left: 18%; top: 68%; --ghost-rotate: 9deg; opacity: 0.1; }
.deck-ghost-3 { right: 7%; top: 12%; --ghost-rotate: 12deg; }
.deck-ghost-4 { right: 24%; top: 56%; --ghost-rotate: -7deg; opacity: 0.09; }
.deck-ghost-5 { left: 42%; top: 4%; --ghost-rotate: 5deg; opacity: 0.08; }
.deck-ghost-6 { left: 6%; bottom: 5%; --ghost-rotate: 14deg; opacity: 0.08; }
.deck-ghost-7 { right: 4%; bottom: 8%; --ghost-rotate: -11deg; opacity: 0.11; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
main img,
.deck-backdrop img,
.suggestion-item img,
.pdp-lightbox-stage img,
.bf52-drawer-item img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}
input, select, textarea, button { font: inherit; }
hr { border: 0; border-top: 1px solid var(--line); }

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--ink);
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ─────────────────────────── header ─────────────────────────── */

.announcement-bar {
  position: relative;
  z-index: 21;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 42px);
  flex-wrap: wrap;
  padding: 8px clamp(16px, 4vw, 46px);
  border-bottom: 1px solid rgba(200, 160, 74, 0.18);
  background: #050403;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.announcement-bar a {
  white-space: nowrap;
}

.announcement-bar a {
  position: relative;
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  cursor: pointer;
}

.announcement-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.announcement-bar a:hover,
.announcement-bar a:focus-visible {
  color: var(--gold-hi);
}

.announcement-bar a:hover::after,
.announcement-bar a:focus-visible::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(190px, 280px) auto auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(18px, 3.2vw, 46px);
  background: rgba(10, 9, 8, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(140%);
}

.site-header.is-scrolled {
  background: rgba(10, 9, 8, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-width: max-content;
}

.brand > span:last-child {
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, var(--panel-hi), var(--panel));
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(200, 160, 74, 0.15);
  overflow: hidden;
}

.brand-mark svg { width: 36px; height: 36px; display: block; }

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
}

.logo-mark {
  background: #050505 url("../img/blackfox52-logo.png") 50% 31% / 245% auto no-repeat;
  color: var(--gold);
}

.logo-mark img { opacity: 0; }

.brand strong, .brand small { display: block; }

.brand strong {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: clamp(12px, 1.35vw, 20px);
  flex-wrap: wrap;
  align-items: center;
  color: var(--paper-dim);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
}

.main-nav::-webkit-scrollbar { display: none; }

.main-nav a { position: relative; padding: 4px 0; transition: color 140ms ease; }
.main-nav a { white-space: nowrap; }
.main-nav a:hover { color: var(--gold); }
.main-nav a[aria-current="page"] { color: var(--gold); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 200ms ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }

.site-footer a:hover, .filters a:hover { color: var(--gold); }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
select:focus-visible,
textarea:focus-visible,
input:focus-visible,
.button:focus-visible,
.cart-link:focus-visible,
.account-link:focus-visible,
.whatsapp-float:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(200, 160, 74, 0.18);
}

.header-search input,
.sort-form select,
.form-grid input,
.form-grid select,
.form-grid textarea,
.checkout-form input,
.checkout-form select,
.checkout-form textarea,
.admin-search input,
.admin-form input,
.admin-form select,
.admin-form textarea,
.login-card input {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--panel);
  color: var(--paper);
  padding: 11px 13px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.header-search { position: relative; }
.header-search input { padding-right: 42px; }
.header-search input::placeholder { color: var(--muted); }
.header-search button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  border-radius: 4px;
  transition: color 140ms ease, background 140ms ease;
}
.header-search button:hover, .header-search button:focus-visible { color: var(--gold); background: rgba(200, 160, 74, 0.1); outline: none; }
.header-search button svg { width: 16px; height: 16px; }

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 90;
  display: grid;
  gap: 6px;
  padding: 8px;
  border: 1px solid rgba(200, 160, 74, 0.28);
  border-radius: 6px;
  background: rgba(12, 10, 8, 0.98);
  box-shadow: var(--shadow);
}

.search-suggestions[hidden] { display: none; }

.suggestion-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 8px;
  border-radius: 4px;
  color: var(--paper);
}

.suggestion-item:hover { background: rgba(200, 160, 74, 0.1); }
.suggestion-item img { width: 48px; height: 54px; object-fit: contain; background: #efe6d4; border-radius: 3px; padding: 3px; }
.suggestion-item strong, .suggestion-item small { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.suggestion-item small { color: var(--muted); font-size: 11px; }

.header-search input:focus,
.sort-form select:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus,
.admin-form input:focus,
.admin-form textarea:focus,
.login-card input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 74, 0.18);
}

.cart-link,
.account-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: background 140ms ease, color 140ms ease;
}

.cart-link:hover { background: var(--gold); color: var(--ink); }

.account-link {
  border-color: var(--line-2);
  color: var(--paper-dim);
  padding-inline: 14px;
}

.account-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cart-link span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.cart-link:hover span { background: var(--ink); color: var(--gold); }

main { min-height: 70vh; position: relative; z-index: 1; }

/* ─────────────────────────── hero ─────────────────────────── */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  min-height: min(640px, calc(100vh - 170px));
  padding: clamp(42px, 6vw, 86px) clamp(18px, 6vw, 86px);
  background:
    radial-gradient(60% 90% at 12% 0%, rgba(200, 160, 74, 0.18), transparent 60%),
    radial-gradient(70% 110% at 100% 100%, rgba(184, 32, 42, 0.12), transparent 65%),
    linear-gradient(180deg, #0a0908 0%, #100d09 50%, #0a0908 100%);
  color: var(--paper);
  overflow: hidden;
  isolation: isolate;
}

/* Low-contrast suit shape keeps the header atmospheric without taking focus from products. */
.hero::before {
  content: "♠";
  position: absolute;
  right: clamp(10px, 3vw, 46px);
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(220px, 28vw, 420px);
  font-family: "Playfair Display", serif;
  color: var(--gold);
  opacity: 0.035;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(10, 9, 8, 0.9) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-copy { position: relative; z-index: 1; max-width: 760px; }

.hero-card-fan {
  position: absolute;
  inset: auto 0 6% auto;
  width: min(760px, 54vw);
  height: min(520px, 44vw);
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  transform: translateX(8%);
}

.hero-card-fan span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: clamp(120px, 13vw, 178px);
  aspect-ratio: 5 / 7;
  border: 1px solid rgba(200, 160, 74, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(200, 160, 74, 0.14), transparent 38%),
    radial-gradient(circle at 50% 24%, rgba(47, 127, 120, 0.13), transparent 38%),
    linear-gradient(180deg, rgba(239, 230, 212, 0.055), rgba(10, 9, 8, 0.42));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform-origin: 50% 120%;
  animation: fan-breathe 6200ms ease-in-out infinite;
}

.hero-card-fan span::before,
.hero-card-fan span::after {
  position: absolute;
  color: rgba(200, 160, 74, 0.42);
  font-family: "Playfair Display", serif;
  font-weight: 800;
  line-height: 1;
}

.hero-card-fan span::before {
  content: "52";
  top: 14px;
  left: 14px;
  font-size: 18px;
}

.hero-card-fan span::after {
  content: "♠";
  right: 13px;
  bottom: 12px;
  font-size: 34px;
}

.hero-card-fan span:nth-child(1) { transform: translateX(-50%) rotate(-28deg); animation-delay: -600ms; }
.hero-card-fan span:nth-child(2) { transform: translateX(-50%) rotate(-17deg); animation-delay: -300ms; }
.hero-card-fan span:nth-child(3) { transform: translateX(-50%) rotate(-6deg); }
.hero-card-fan span:nth-child(4) { transform: translateX(-50%) rotate(7deg); animation-delay: 180ms; }
.hero-card-fan span:nth-child(5) { transform: translateX(-50%) rotate(18deg); animation-delay: 360ms; }
.hero-card-fan span:nth-child(6) { transform: translateX(-50%) rotate(29deg); animation-delay: 540ms; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 580px;
  margin: 22px 0 0;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(650px, 100%);
  margin-top: 28px;
}

.hero-proof span {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid rgba(200, 160, 74, 0.18);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-proof small {
  margin-top: 5px;
  color: var(--paper-dim);
  font-size: 12px;
  line-height: 1.35;
}

.hero-showcase {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  align-items: end;
  min-height: 430px;
  transform: perspective(1200px) rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform 260ms ease;
}

.hero-deck {
  display: grid;
  place-items: end center;
  min-height: 390px;
  padding: 8px 0 0;
  border-bottom: 1px solid rgba(200, 160, 74, 0.34);
  opacity: 0;
  transform: translateY(var(--deck-y, 0px));
  animation: deck-rise 820ms ease forwards;
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-deck img {
  width: 100%;
  height: 100%;
  max-height: 390px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.62));
}

.hero-deck-1 { --deck-y: 8px; }
.hero-deck-2 { --deck-y: -18px; animation-delay: 90ms; }
.hero-deck-3 { --deck-y: 18px; animation-delay: 180ms; }
.hero-deck-4 { --deck-y: -4px; animation-delay: 270ms; }
.hero-deck:hover { filter: brightness(1.08); transform: translateY(-24px); }

.hero-curator-note {
  grid-column: 1 / -1;
  justify-self: end;
  position: relative;
  z-index: 2;
  width: min(460px, 100%);
  margin-top: -8px;
  padding: 16px 18px;
  border: 1px solid rgba(200, 160, 74, 0.26);
  background: rgba(10, 9, 8, 0.68);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.hero-curator-note span,
.signature-tags span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-curator-note strong {
  display: block;
  margin-top: 6px;
  color: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.05;
}

@keyframes deck-rise {
  from { opacity: 0; transform: translateY(calc(var(--deck-y, 0px) + 34px)) scale(0.96); }
  to { opacity: 1; transform: translateY(var(--deck-y, 0px)); }
}

@keyframes fan-breathe {
  0%, 100% { margin-bottom: 0; filter: brightness(0.95); }
  45% { margin-bottom: -8px; filter: brightness(1.08); }
}

/* ─────────────────────────── motion system ─────────────────────────── */

.js [data-reveal] {
  opacity: 1;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid .product-card:nth-child(2) { transition-delay: 70ms; }
.product-grid .product-card:nth-child(3) { transition-delay: 120ms; }
.product-grid .product-card:nth-child(4) { transition-delay: 170ms; }
.product-grid .product-card:nth-child(5) { transition-delay: 50ms; }
.product-grid .product-card:nth-child(6) { transition-delay: 100ms; }
.product-grid .product-card:nth-child(7) { transition-delay: 150ms; }
.product-grid .product-card:nth-child(8) { transition-delay: 200ms; }

.price-row, .catalog-toolbar, .admin-title {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─────────────────────────── buttons ─────────────────────────── */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button:hover { background: var(--gold); color: var(--ink); box-shadow: var(--glow-gold); }
.button:active { transform: translateY(1px); }

.button.primary {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.button.primary:hover { background: var(--gold-hi); border-color: var(--gold-hi); }

.button.ghost { background: transparent; color: var(--paper); border-color: var(--line-2); }
.button.ghost:hover { color: var(--gold); border-color: var(--gold); background: transparent; box-shadow: none; }

.button.full { width: 100%; }
.button.tiny { min-height: 34px; padding: 0 14px; font-size: 11px; letter-spacing: 0.16em; }
.button[disabled], .button:disabled { opacity: 0.45; cursor: not-allowed; }

/* ─────────────────────────── sections ─────────────────────────── */

.section-head,
.catalog-shell,
.product-detail,
.cart-layout,
.checkout-layout,
.content-page,
.empty-state,
.product-grid,
.product-rail,
.collection-band {
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-head { padding: 72px 0 24px; }
.section-head.inline-head { padding-top: 0; }

.product-rail {
  padding: 54px 0 12px;
}

.product-rail .section-head p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 8px;
  color: var(--paper-dim);
  line-height: 1.55;
}

.section-head h2,
.catalog-toolbar h1 {
  font-size: clamp(32px, 4.4vw, 54px);
}

.section-head h2 { margin-top: 6px; }

.culture-section,
.premium-anatomy,
.guide-hero,
.guide-grid,
.guide-paths,
.finder-layout,
.article-grid {
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.culture-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: clamp(44px, 6vw, 86px) 0 18px;
}

.culture-copy h2,
.premium-anatomy h2,
.guide-hero h1,
.finder-results h2 {
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 0.98;
}

.culture-copy p:not(.eyebrow),
.premium-anatomy p,
.guide-hero p,
.finder-results p,
.finder-empty p {
  margin-top: 18px;
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.62;
}

.finder-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.finder-picks > article {
  display: grid;
  gap: 10px;
}

.finder-picks > article > small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reason-grid,
.culture-link-grid,
.guide-grid,
.guide-paths,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reason-card,
.culture-link-grid a,
.guide-grid article,
.guide-paths a,
.article-card,
.collection-education {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 160px;
  padding: 22px;
  border: 1px solid rgba(200, 160, 74, 0.18);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.reason-card::after,
.culture-link-grid a::after,
.guide-paths a::after,
.article-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 38px;
  height: 38px;
  border-right: 1px solid rgba(200, 160, 74, 0.28);
  border-bottom: 1px solid rgba(200, 160, 74, 0.28);
  opacity: 0.5;
  transition: transform 180ms ease, opacity 180ms ease;
}

.article-card small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.culture-article {
  max-width: 900px;
}

.culture-article h1 {
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.98;
}

.article-section {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 10px;
}

.article-section p {
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.68;
}

.reason-card:hover,
.culture-link-grid a:hover,
.guide-paths a:hover,
.article-card:hover {
  border-color: rgba(200, 160, 74, 0.52);
  transform: translateY(-2px);
}

.reason-card:hover::after,
.culture-link-grid a:hover::after,
.guide-paths a:hover::after,
.article-card:hover::after {
  transform: translate(4px, 4px);
  opacity: 1;
}

.reason-card span,
.guide-grid article span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reason-card strong,
.culture-link-grid strong,
.guide-grid h2,
.guide-paths strong,
.article-card strong,
.collection-education strong {
  color: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.05;
}

.reason-card small,
.culture-link-grid span,
.guide-grid p,
.guide-paths span,
.article-card span,
.collection-education p {
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.55;
}

.collection-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 30px;
}

.collection-guide-grid article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(200, 160, 74, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.026);
}

.collection-guide-grid strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-guide-grid p {
  margin: 10px 0 0;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.55;
}

.premium-anatomy {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: 44px;
  padding: clamp(34px, 5vw, 68px);
  border-block: 1px solid rgba(200, 160, 74, 0.14);
  background:
    radial-gradient(circle at 12% 16%, rgba(200, 160, 74, 0.12), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent);
}

.premium-anatomy .button {
  margin-top: 24px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.comparison-grid > div,
.anatomy-list {
  padding: 22px;
  border: 1px solid rgba(200, 160, 74, 0.2);
  border-radius: 5px;
  background: rgba(10, 9, 8, 0.54);
}

.comparison-grid h3 {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.comparison-grid p {
  margin: 13px 0 0;
  padding-top: 13px;
  border-top: 1px solid rgba(200, 160, 74, 0.12);
  font-size: 14px;
}

.guide-hero {
  padding: clamp(54px, 8vw, 104px) 0 clamp(28px, 5vw, 64px);
  max-width: 1040px;
}

.guide-hero h1 {
  max-width: 880px;
}

.guide-hero p {
  max-width: 760px;
}

.guide-grid,
.guide-paths,
.article-grid {
  padding-bottom: clamp(54px, 7vw, 96px);
}

.guide-grid article {
  min-height: 230px;
}

.guide-anatomy {
  margin-bottom: clamp(44px, 6vw, 78px);
}

.anatomy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.anatomy-list span {
  padding: 12px 14px;
  border: 1px solid rgba(200, 160, 74, 0.14);
  border-radius: 4px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.finder-form {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 5px;
  background: var(--panel);
}

.finder-form label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.finder-form select {
  margin-top: 7px;
}

.finder-results .product-grid {
  width: 100%;
  margin-top: 24px;
}

.finder-empty {
  min-height: 360px;
  display: grid;
  place-content: center;
  padding: 36px;
  border: 1px dashed rgba(200, 160, 74, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.025);
}

.article-card {
  min-height: 190px;
}

.collection-education {
  min-height: auto;
  margin-bottom: 28px;
}

.support-hero,
.support-grid {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.support-hero {
  padding: clamp(58px, 8vw, 110px) 0 clamp(28px, 5vw, 54px);
}

.support-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
}

.support-hero p {
  max-width: 760px;
  margin: 22px 0 28px;
  color: var(--paper-dim);
  font-size: 18px;
  line-height: 1.65;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: clamp(64px, 8vw, 110px);
}

.support-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(200, 160, 74, 0.2);
  border-radius: 6px;
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 160, 74, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.support-grid strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-grid p {
  margin: 14px 0 0;
  color: var(--paper-dim);
  line-height: 1.62;
}

.editorial-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  width: min(1360px, calc(100% - 40px));
  margin: 34px auto 0;
  padding: clamp(28px, 5vw, 64px) 0 clamp(42px, 6vw, 84px);
}

.editorial-showcase::before {
  content: "";
  position: absolute;
  inset: 10% -3% 5% 34%;
  background:
    radial-gradient(circle at 38% 28%, rgba(200, 160, 74, 0.15), transparent 38%),
    linear-gradient(135deg, rgba(200, 160, 74, 0.09), rgba(184, 32, 42, 0.08));
  filter: blur(28px);
  opacity: 0.82;
  pointer-events: none;
}

.editorial-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.editorial-copy h2 {
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.98;
}

.editorial-copy p:not(.eyebrow) {
  margin: 20px 0 28px;
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.62;
}

.editorial-stack {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 210px 260px;
  gap: 16px;
  min-height: 500px;
  perspective: 1200px;
}

.editorial-photo-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.editorial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
  transform: translateZ(0);
}

.editorial-photo-link span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.editorial-photo-link:hover span {
  opacity: 1;
  transform: translateY(0);
}

.editorial-photo-main {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.editorial-photo-overlap {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  transform: translateY(-18px) rotate(-1.2deg);
}

.editorial-photo-tall {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  transform: translateY(26px) rotate(1.5deg);
}

.motion-ribbon {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 51px;
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  border-block: 1px solid rgba(200, 160, 74, 0.22);
  background: rgba(200, 160, 74, 0.055);
}

.motion-ribbon div,
.category-ribbon div {
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  width: min(1500px, 116vw);
  gap: clamp(18px, 3vw, 42px);
  padding: 16px 0;
  animation: ribbon-scroll 32s linear infinite;
  will-change: transform;
}

.motion-ribbon span,
.category-ribbon span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes ribbon-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.trust-strip {
  width: min(1360px, calc(100% - 40px));
  margin: -30px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  position: relative;
  z-index: 2;
}

.trust-strip a {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.92), rgba(20, 17, 13, 0.92));
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.trust-strip a:hover,
.trust-strip a:focus-visible {
  background:
    radial-gradient(circle at 18% 0%, rgba(200, 160, 74, 0.12), transparent 44%),
    linear-gradient(170deg, rgba(36, 32, 26, 0.98), rgba(20, 17, 13, 0.96));
  transform: translateY(-1px);
}

.trust-strip strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}

.trust-strip small { color: var(--paper-dim); }

/* --------------------------- signature drop --------------------------- */

.signature-drop,
.pathway-showcase {
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.signature-drop {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 86px);
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 7px;
  overflow: hidden;
  background:
    radial-gradient(720px circle at 74% 32%, rgba(200, 160, 74, 0.17), transparent 58%),
    radial-gradient(520px circle at 100% 100%, rgba(74, 138, 95, 0.08), transparent 68%),
    linear-gradient(135deg, rgba(36, 32, 26, 0.96), rgba(10, 9, 8, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.signature-drop::before {
  content: "52";
  position: absolute;
  right: 2%;
  top: -12%;
  color: rgba(200, 160, 74, 0.045);
  font-family: "Playfair Display", serif;
  font-size: clamp(170px, 22vw, 360px);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.signature-copy {
  position: relative;
  z-index: 2;
}

.signature-copy h2 {
  font-size: clamp(38px, 5vw, 76px);
  line-height: 0.96;
}

.signature-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.65;
}

.signature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.signature-tags span {
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(200, 160, 74, 0.26);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.32);
}

.signature-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid rgba(200, 160, 74, 0.18);
  background: rgba(200, 160, 74, 0.16);
}

.signature-proof span {
  display: grid;
  gap: 4px;
  padding: 15px;
  background: rgba(10, 9, 8, 0.72);
}

.signature-proof strong {
  color: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.05;
}

.signature-proof small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signature-stage {
  position: relative;
  z-index: 2;
  min-height: 560px;
  transform: perspective(1200px) rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform 260ms ease;
}

.signature-main {
  position: absolute;
  inset: 0 24% 0 0;
  display: grid;
  place-items: center;
  padding: clamp(20px, 3vw, 42px);
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(239, 230, 212, 0.08), rgba(239, 230, 212, 0.02)),
    radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.38), transparent 46%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 24px 70px rgba(0, 0, 0, 0.38);
}

.signature-main img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.58));
  transition: transform 320ms ease, filter 320ms ease;
}

.signature-main:hover img {
  transform: translateY(-8px) scale(1.025);
  filter: drop-shadow(0 42px 52px rgba(0, 0, 0, 0.66));
}

.signature-side {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: 34%;
  transform: translateY(-50%);
}

.signature-side a {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 96px;
  padding: 10px;
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 5px;
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.signature-side img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 3px;
  background: #efe6d4;
}

.signature-side span {
  min-width: 0;
  color: var(--paper);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.signature-side a:hover {
  border-color: rgba(230, 196, 122, 0.52);
}

/* --------------------------- customer pathways --------------------------- */

.pathway-showcase {
  padding: clamp(52px, 7vw, 92px) 0 10px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pathway-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 320px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 74, 0.18);
  border-radius: 6px;
  background: var(--panel);
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.2), rgba(10, 9, 8, 0.92) 72%),
    radial-gradient(circle at 50% 22%, rgba(200, 160, 74, 0.2), transparent 52%);
}

.pathway-card img {
  position: absolute;
  right: -7%;
  top: 4%;
  z-index: -2;
  width: 76%;
  height: 74%;
  object-fit: contain;
  opacity: 0.44;
  filter: saturate(0.9) drop-shadow(0 26px 34px rgba(0, 0, 0, 0.48));
  transition: transform 320ms ease, opacity 320ms ease;
}

.pathway-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 160, 74, 0.5);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
}

.pathway-card:hover img {
  opacity: 0.56;
  transform: translateY(-8px) rotate(2deg) scale(1.04);
}

.pathway-card span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pathway-card strong {
  margin-top: 12px;
  color: var(--paper);
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.02;
}

.pathway-card small {
  margin-top: 12px;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.52;
}

/* --------------------------- spotlight runway --------------------------- */

.spotlight-runway {
  width: min(1360px, calc(100% - 40px));
  margin: clamp(54px, 7vw, 98px) auto 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: end;
}

.spotlight-copy {
  padding-bottom: 18px;
}

.spotlight-copy h2 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 0.98;
}

.spotlight-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--paper-dim);
  font-size: 16px;
  line-height: 1.65;
}

.runway-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: clamp(14px, 1.7vw, 22px);
  align-items: stretch;
}

.runway-card {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(310px, 1fr) auto;
  border: 1px solid rgba(200, 160, 74, 0.2);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(200, 160, 74, 0.17), transparent 44%),
    linear-gradient(180deg, rgba(36, 32, 26, 0.92), rgba(13, 11, 9, 0.96));
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.34);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.runway-card-1 {
  grid-row: span 2;
}

.runway-card:hover {
  border-color: rgba(230, 196, 122, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(200, 160, 74, 0.12);
}

.runway-card.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
}

.runway-image {
  display: grid;
  place-items: end center;
  min-height: 310px;
  padding: clamp(18px, 2.2vw, 34px) clamp(12px, 1.4vw, 22px) 0;
  background:
    linear-gradient(180deg, rgba(239, 230, 212, 0.05), transparent 48%),
    radial-gradient(circle at 50% 60%, rgba(0, 0, 0, 0.32), transparent 42%);
  overflow: hidden;
  position: relative;
}

.runway-image::before,
.product-image::before {
  content: "";
  position: absolute;
  inset: -20% auto -20% -50%;
  width: 34%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 242, 198, 0.28), transparent);
  transform: translateX(0) rotate(12deg);
  transition: opacity 220ms ease, transform 700ms ease;
}

.runway-card-1 .runway-image {
  min-height: 520px;
}

.runway-image img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.54));
  transition: transform 320ms ease, filter 320ms ease;
}

.runway-card:hover .runway-image img {
  transform: translateY(-8px) scale(1.035);
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.62));
}

.runway-card:hover .runway-image::before,
.product-card:hover .product-image::before {
  opacity: 1;
  transform: translateX(420%) rotate(12deg);
}

.runway-meta {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid rgba(200, 160, 74, 0.18);
  background: rgba(10, 9, 8, 0.72);
}

.runway-meta span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.runway-meta a {
  color: var(--paper);
  font-weight: 900;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.16;
}

.runway-meta a:hover {
  color: var(--gold-hi);
}

/* ─────────────────────────── product cards ─────────────────────────── */

.product-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2.2vw, 36px);
  padding-bottom: 72px;
}

.product-card {
  min-width: 0;
  position: relative;
  display: grid;
  align-content: start;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(200, 160, 74, 0.16);
  background: rgba(255, 255, 255, 0.024);
}

@media (min-width: 1100px) {
  .product-grid > .product-card:nth-child(9n + 5) {
    grid-column: span 2;
  }

  .product-grid > .product-card:nth-child(9n + 5) .product-image {
    aspect-ratio: 16 / 10;
  }

  .product-grid > .product-card:nth-child(9n + 5) .product-title {
    max-width: 72%;
    font-size: 19px;
  }
}

.stock-note {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.line-warning {
  display: block;
  margin-top: 5px;
  color: #f0a0a5;
  font-weight: 800;
}

.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(200, 160, 74, 0.16);
  border-radius: 6px;
  background: #f2eadb;
  position: relative;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
  transform-style: preserve-3d;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  pointer-events: none;
  transition: border-color 220ms ease;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(2px, 0.65vw, 8px);
  backface-visibility: hidden;
  transition: transform 360ms ease, opacity 220ms ease, filter 220ms ease;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28));
}

.product-image-back {
  position: absolute;
  inset: 10px;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(200, 160, 74, 0.28);
  border-radius: 5px;
  opacity: 0;
  transform: rotateY(180deg) scale(0.96);
  backface-visibility: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(47, 127, 120, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(12, 10, 8, 0.98), rgba(36, 28, 18, 0.98));
  color: var(--paper);
  transition: opacity 220ms ease, transform 360ms ease;
}

.product-image-back::before {
  content: "♠";
  position: absolute;
  top: 14px;
  right: 16px;
  color: rgba(200, 160, 74, 0.24);
  font-family: "Playfair Display", serif;
  font-size: 72px;
  line-height: 1;
}

/* ── Photo variant ─ second product image fills the back face ────────── */
.product-image-back--photo {
  align-content: stretch;
  padding: 0;
  background: linear-gradient(160deg, #14110d, #1c1813);
  overflow: hidden;
}

.product-image-back--photo::before { display: none; }

.product-image-back--photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(2px, 0.65vw, 8px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.55));
  transition: transform 460ms cubic-bezier(.2,.7,.3,1);
  transform: scale(1.02);
}

.product-card:hover .product-image-back--photo > img {
  transform: scale(1);
}

.product-image-back--photo .product-image-back-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  gap: 4px;
  padding: 16px 18px 14px;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 8, 0.92) 60%);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
}

.product-image-back--photo .product-image-back-meta strong {
  max-width: 100%;
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--paper);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.product-image-back--photo .product-image-back-meta small {
  color: var(--gold-hi);
}

.product-image-back--photo .product-image-back-meta em {
  font-size: 11px;
  color: var(--paper-dim);
  letter-spacing: 0.02em;
}

/* Hide the meta scrim if the photo is the entire story (rare; keep for now)
   but if you ever want photo-only back-face, set .product-image-back--photo[data-quiet]
   and hide the meta block. */
.product-image-back--photo[data-quiet] .product-image-back-meta { display: none; }

.product-image-back small {
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-image-back strong {
  max-width: 84%;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 0.98;
}

.product-image-back em {
  max-width: 34ch;
  color: var(--paper-dim);
  font-size: 12px;
  font-style: normal;
}

.product-card:hover .product-image {
  border-color: rgba(200, 160, 74, 0.5);
  background: #f7f0e3;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(200, 160, 74, 0.18);
}
.product-card.is-tilting .product-image {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
}
.product-card:hover .product-image::after { border-color: rgba(200, 160, 74, 0.25); }

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-image > img {
    opacity: 0;
    transform: rotateY(-180deg) scale(1.02);
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.28)) saturate(0.8);
  }
  .product-card:hover .product-image-back {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

.product-meta {
  display: grid;
  gap: 10px;
  padding: 16px 2px 2px;
}

.product-maker,
.product-condition {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-condition {
  color: rgba(239, 230, 212, 0.62);
}

.product-title {
  display: -webkit-box;
  min-height: 46px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--paper);
  transition: color 140ms ease;
}
.product-card:hover .product-title { color: var(--gold-hi); }

.product-card-rating {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--paper-dim);
  font-size: 12px;
}

.product-card-rating .stars {
  font-size: 11px;
}

.product-card-rating:hover {
  color: var(--gold-hi);
}

.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-card-tags span {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  padding: 2px 8px;
  border: 1px solid rgba(200, 160, 74, 0.24);
  border-radius: 999px;
  color: var(--paper-dim);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-value-cue {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.price-row {
  margin-top: 0;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: 0.02em;
}

.price-row.large { margin: 22px 0; font-size: 26px; }
.price-row strong { font-family: "Playfair Display", serif; font-weight: 700; }

s { color: var(--muted); font-weight: 500; }

.sale-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.quick-add-form { margin-top: 2px; }

/* ─────────────────────────── pills ─────────────────────────── */

.stock-pill, .status {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 10px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.stock-pill.in { border-color: rgba(200, 160, 74, 0.45); color: var(--gold); }
.stock-pill.out { border-color: rgba(184, 32, 42, 0.55); color: var(--crimson); }

/* ─────────────────────────── collection band ─────────────────────────── */

.collection-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 88px;
}

.collection-band a {
  position: relative;
  min-height: 124px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(150deg, var(--panel-hi), var(--panel) 70%);
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
  overflow: hidden;
}

.collection-band a::before {
  content: "♣";
  position: absolute;
  right: -8px;
  bottom: -20px;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.06;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.collection-band a:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: var(--glow-gold);
}

.collection-band span, .collection-band small { display: block; position: relative; z-index: 1; }

.collection-band span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--paper);
}

.collection-band small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ─────────────────────────── catalog ─────────────────────────── */

.category-moment {
  width: min(1360px, calc(100% - 40px));
  margin: 40px auto 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 460px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(200, 160, 74, 0.16);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(540px circle at 82% 28%, rgba(200, 160, 74, 0.18), transparent 62%),
    radial-gradient(520px circle at 100% 100%, rgba(184, 32, 42, 0.11), transparent 70%),
    linear-gradient(140deg, rgba(28, 24, 19, 0.98), rgba(10, 9, 8, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.category-moment::before {
  content: "♦";
  position: absolute;
  right: clamp(-32px, -2vw, -10px);
  bottom: -92px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(220px, 22vw, 360px);
  line-height: 1;
  opacity: 0.045;
  pointer-events: none;
}

.category-copy {
  position: relative;
  z-index: 1;
}

.category-copy h1 {
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: 0.96;
}

.category-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.65;
}

.category-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.category-stats span {
  min-width: 132px;
  padding: 14px 16px;
  border: 1px solid rgba(200, 160, 74, 0.2);
  background: rgba(10, 9, 8, 0.46);
}

.category-stats strong,
.category-stats small {
  display: block;
}

.category-stats strong {
  color: var(--gold-hi);
  font-family: "Playfair Display", serif;
  font-size: 30px;
  line-height: 1;
}

.category-stats small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.category-stage {
  position: relative;
  z-index: 1;
  min-height: 380px;
  transform: perspective(1200px) rotateX(var(--hero-tilt-y, 0deg)) rotateY(var(--hero-tilt-x, 0deg));
  transition: transform 260ms ease;
}

.category-pick {
  position: absolute;
  display: grid;
  place-items: end center;
  width: clamp(150px, 17vw, 250px);
  min-height: clamp(230px, 28vw, 360px);
  padding: 10px 10px 0;
  border-bottom: 1px solid rgba(200, 160, 74, 0.32);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.55));
  transition: transform 260ms ease, filter 260ms ease;
}

.category-pick:hover {
  filter: brightness(1.08) drop-shadow(0 32px 42px rgba(0, 0, 0, 0.62));
}

.category-pick img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  object-fit: contain;
  object-position: bottom center;
}

.category-pick span {
  position: absolute;
  left: 50%;
  bottom: -38px;
  width: max-content;
  max-width: 230px;
  transform: translateX(-50%);
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease, bottom 180ms ease;
}

.category-pick:hover span {
  bottom: -28px;
  opacity: 1;
}

.category-pick-1 { left: 0; bottom: 8%; transform: translateY(8px); z-index: 3; }
.category-pick-2 { left: 24%; top: 0; transform: translateY(-8px); z-index: 4; }
.category-pick-3 { right: 18%; bottom: 2%; transform: translateY(24px); z-index: 2; }
.category-pick-4 { right: 0; top: 10%; transform: translateY(6px); z-index: 1; }
.category-pick-1:hover { transform: translateY(-8px) rotate(-1deg); }
.category-pick-2:hover { transform: translateY(-22px) rotate(1deg); }
.category-pick-3:hover { transform: translateY(8px) rotate(-1deg); }
.category-pick-4:hover { transform: translateY(-10px) rotate(1deg); }

.category-ribbon {
  position: relative;
  width: 100%;
  max-width: 100vw;
  height: 48px;
  overflow: hidden;
  overflow: clip;
  contain: layout paint;
  border-bottom: 1px solid rgba(200, 160, 74, 0.16);
  background: rgba(200, 160, 74, 0.04);
}

.catalog-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 44px;
  padding: 44px 0 88px;
}

.catalog-main,
.catalog-main > *,
.catalog-main .product-grid,
.catalog-main .collection-education,
.catalog-main .collection-guide-grid,
.catalog-main .pagination {
  min-width: 0;
  max-width: 100%;
}

.catalog-main .product-grid,
.catalog-main .collection-education,
.catalog-main .collection-guide-grid,
.catalog-main .pagination {
  width: 100%;
  margin-inline: 0;
}

.filters {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, var(--panel-hi), var(--panel));
}

.filters h2 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: var(--gold);
}

.filters a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  color: var(--paper-dim);
  font-size: 14px;
  transition: color 140ms ease;
}

.filters a:first-of-type { border-top: 0; }
.filters a span { color: var(--muted); font-size: 12px; }
.filters a.active { color: var(--gold); font-weight: 700; }
.filters a.active span { color: var(--gold); }

.filter-form {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.filter-form h2 {
  margin-bottom: 0;
}

.intent-filter-panel {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.intent-filter-panel a {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(200, 160, 74, 0.16);
  border-radius: 999px;
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intent-filter-panel a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.check-row {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 800;
}

.check-row input {
  width: auto;
  accent-color: var(--gold);
}

.price-filter {
  display: grid;
  grid-template-columns: repeat(2, minmax(82px, 1fr));
  gap: 8px;
  min-width: 0;
}

.price-filter label {
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-filter input {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  margin-top: 5px;
  padding: 9px 8px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.68);
  color: var(--paper);
}

.clear-filters {
  justify-content: center !important;
  padding: 0 !important;
  border-top: 0 !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-toolbar {
  justify-content: space-between;
  min-width: 0;
  margin-bottom: 26px;
}

.sort-form { min-width: 0; }

.sort-form select {
  width: auto;
  min-width: 200px;
  padding-right: 32px;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 18px) center, calc(100% - 12px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.rich-text { color: var(--paper-dim); font-size: 15px; line-height: 1.65; }
.rich-text.compact { max-width: 780px; margin-bottom: 28px; }
.rich-text h3, .rich-text h4 { color: var(--paper); margin: 26px 0 10px; }
.rich-text a { color: var(--gold); border-bottom: 1px dotted var(--gold-dim); }
.rich-text a:hover { color: var(--gold-hi); }

.pagination { display: flex; gap: 8px; justify-content: center; padding-top: 32px; }

.pagination a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: var(--panel);
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 700;
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease;
}

.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination a.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* ─────────────────────────── product detail ─────────────────────────── */

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: 56px 0 88px;
}

.breadcrumbs {
  width: min(1360px, calc(100% - 40px));
  margin: 36px auto 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.breadcrumbs span,
.breadcrumbs a {
  min-width: 0;
}

.breadcrumbs a:hover { color: var(--gold); }

.gallery, .buy-panel, .summary-box, .admin-panel, .login-card, .admin-table {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, var(--panel-hi), var(--panel));
  box-shadow: var(--shadow);
}

.gallery {
  min-width: 0;
  padding: 22px;
}

.main-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 18px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.6));
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
  min-width: 0;
}

.thumbs button {
  aspect-ratio: 1;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: var(--panel);
  cursor: pointer;
  padding: 4px;
  transition: border-color 140ms ease;
}

.thumbs button:hover, .thumbs button:focus-visible { border-color: var(--gold); outline: none; }
.thumbs img { width: 100%; height: 100%; object-fit: contain; }

.buy-panel { padding: clamp(26px, 4vw, 44px); }

.buy-panel h1 {
  font-size: clamp(34px, 5vw, 60px);
  margin-top: 6px;
}

.rating-summary {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: var(--paper-dim);
  font-size: 13px;
}

.product-hook {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--paper-dim);
  font-size: 17px;
  line-height: 1.58;
}

.purchase-confidence {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
}

.purchase-confidence span {
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper-dim);
  background: rgba(0, 0, 0, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.purchase-confidence .is-live { color: #8ed1a4; border-color: rgba(74, 138, 95, 0.4); }
.purchase-confidence .is-out { color: #e88a90; border-color: rgba(184, 32, 42, 0.45); }

.best-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
}

.best-for-list strong,
.best-for-list span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.best-for-list strong {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.best-for-list span {
  padding: 0 12px;
  border: 1px solid rgba(200, 160, 74, 0.2);
  color: var(--paper);
  background: rgba(200, 160, 74, 0.07);
  font-size: 12px;
  font-weight: 800;
}

.product-assurance {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.product-assurance .assurance-row {
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

/* Hide the default details marker / disclosure triangle */
.product-assurance summary::-webkit-details-marker { display: none; }
.product-assurance summary { list-style: none; }

.product-assurance summary {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 18px 4px;
  color: var(--paper);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.product-assurance summary:hover { color: var(--gold-hi); }

.product-assurance .assurance-label {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--paper);
}

.product-assurance summary:hover .assurance-label { color: var(--gold-hi); }

.product-assurance .assurance-chevron {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  color: var(--gold);
  transition: transform 320ms cubic-bezier(.2,.7,.3,1), border-color 200ms ease, background 200ms ease;
  flex-shrink: 0;
}

.product-assurance .assurance-chevron svg {
  width: 12px;
  height: 12px;
  transition: transform 320ms cubic-bezier(.2,.7,.3,1);
}

.product-assurance summary:hover .assurance-chevron {
  border-color: var(--gold);
  background: rgba(200, 160, 74, 0.08);
}

.product-assurance details[open] .assurance-chevron svg {
  transform: rotate(180deg);
}

.product-assurance .assurance-body {
  padding: 0 4px 22px;
  color: var(--paper-dim);
  font-size: 14.5px;
  line-height: 1.65;
}

.product-assurance .assurance-body p {
  margin: 0 0 10px;
}

.product-assurance .assurance-body p:last-child { margin-bottom: 0; }

.product-assurance .assurance-points {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.product-assurance .assurance-points li {
  position: relative;
  padding-left: 18px;
  color: var(--paper-dim);
  font-size: 13.5px;
}

.product-assurance .assurance-points li::before {
  content: "♠";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 11px;
  opacity: 0.8;
}

.product-assurance .assurance-rich {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
  font-size: 13.5px;
}

/* Smooth open animation by transitioning the details-content
 * (Chromium/Safari support — Firefox falls back to instant) */
@supports (interpolate-size: allow-keywords) {
  .product-assurance details {
    interpolate-size: allow-keywords;
  }
  .product-assurance details::details-content {
    overflow: hidden;
    height: 0;
    transition: height 360ms cubic-bezier(.2,.7,.3,1), content-visibility 360ms allow-discrete;
  }
  .product-assurance details[open]::details-content {
    height: auto;
  }
}

.sticky-atc {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 23;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(760px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(200, 160, 74, 0.34);
  border-radius: 6px;
  background: rgba(10, 9, 8, 0.92);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.54), var(--glow-gold);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.sticky-atc[hidden] {
  display: none;
}

.sticky-atc.is-hidden {
  display: none;
}

.sticky-atc span {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
}

.sticky-atc img {
  grid-row: span 2;
  width: 48px;
  height: 56px;
  object-fit: contain;
  border: 1px solid rgba(200, 160, 74, 0.2);
  border-radius: 3px;
  background: #efe6d4;
  padding: 3px;
}

.sticky-atc strong,
.sticky-atc small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sticky-atc small {
  color: var(--muted);
  font-size: 12px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.add-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px;
  gap: 14px;
  margin: 26px 0;
}

.add-form .button { grid-column: 1 / -1; }

.quantity-stepper {
  display: inline-grid;
  grid-template-columns: 38px 54px 38px;
  width: 130px;
  height: 42px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.24);
}

.quantity-stepper input {
  width: 54px;
  min-width: 0;
  height: 40px;
  padding: 0;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.045);
  color: var(--paper);
  text-align: center;
  font-weight: 800;
  appearance: textfield;
  -moz-appearance: textfield;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.quantity-step {
  width: 38px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.quantity-step:hover,
.quantity-step:focus-visible {
  background: rgba(200, 160, 74, 0.13);
  color: var(--gold-hi);
  outline: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.check-line {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.check-line input {
  width: auto;
  accent-color: var(--gold);
}

.reviews-section {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto 92px;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.reviews-head h2 { font-size: clamp(30px, 4vw, 48px); }

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: start;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.82), rgba(20, 17, 13, 0.82));
}

.review-card h3 {
  margin: 8px 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card p { color: var(--paper-dim); }
.review-card small { color: var(--muted); }

.review-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.review-images img {
  width: 82px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(200, 160, 74, 0.35);
  border-radius: 4px;
}

.review-reply {
  margin: 16px 0;
  padding: 14px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 160, 74, 0.08);
}

.review-reply strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-reply p {
  margin: 0;
}

.review-form h2 { font-size: 24px; }

.review-note {
  margin: 0 0 16px;
  color: var(--paper-dim);
  font-size: 13px;
  line-height: 1.55;
}

.recently-viewed {
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto 80px;
}

.recently-viewed[hidden] { display: none; }

.recent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.recent-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.82), rgba(20, 17, 13, 0.82));
}

.recent-card img {
  width: 82px;
  height: 96px;
  object-fit: contain;
  border-radius: 3px;
  background: #efe6d4;
  padding: 5px;
}

.recent-card strong, .recent-card small { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.recent-card small { color: var(--gold); margin-top: 4px; }

/* ─────────────────────────── cart / checkout ─────────────────────────── */

.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 32px;
  padding: 56px 0 88px;
}

.cart-layout h1, .checkout-layout h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 8px; }

.line-items { display: grid; gap: 14px; margin: 24px 0; }

.line-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 100px auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.line-item img, .product-cell img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 4px;
  background: var(--panel-2);
  padding: 4px;
}

.line-item small { display: block; color: var(--muted); }
.line-item input { width: 90px; }
.line-item .quantity-stepper { justify-self: start; }
.line-item .quantity-stepper input { width: 54px; }
.line-item strong { font-family: "Playfair Display", serif; color: var(--gold); }

.line-actions {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.remove-line {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.remove-line:hover,
.remove-line:focus-visible {
  color: #e88a90;
}

.summary-box {
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.summary-box h2 { font-size: 18px; letter-spacing: 0.18em; text-transform: uppercase; font-family: "Inter", sans-serif; font-weight: 700; color: var(--gold); margin-bottom: 4px; }

.summary-box div, .order-line, .order-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.summary-box div:last-of-type, .order-line:last-of-type { border-bottom: 0; }
.summary-box p { color: var(--muted); }
.summary-box span { min-width: 0; overflow-wrap: anywhere; }
.summary-total strong { font-size: 20px; }

.discount-form {
  display: grid;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.discount-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.discount-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.discount-entry input {
  width: 100%;
}

.discount-entry .button {
  min-height: 44px;
  padding-inline: 18px;
}

.checkout-confidence {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid var(--line) !important;
}

.checkout-confidence span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--paper-dim);
  font-size: 12px;
  font-weight: 800;
}

.checkout-confidence span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 160, 74, 0.12);
}

.gift-checkout-panel {
  margin: 18px 0 22px;
  padding: 20px;
  border: 1px solid rgba(200, 160, 74, 0.22);
  border-radius: 5px;
  background: linear-gradient(145deg, rgba(200, 160, 74, 0.08), rgba(255, 255, 255, 0.02));
}

.gift-checkout-panel h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 4px 0 8px;
}

.gift-checkout-panel p:not(.eyebrow) {
  color: var(--paper-dim);
  line-height: 1.58;
}
.order-status-box, .privacy-status { margin-top: 24px; }
.return-request-box { margin-top: 24px; }
.empty-state.compact { padding: 22px 0 0; text-align: left; }

.account-auth {
  display: grid;
  place-items: start center;
  padding: clamp(42px, 7vw, 90px) var(--page-pad);
}

.account-card {
  width: min(560px, 100%);
}

.account-card p {
  color: var(--paper-dim);
}

.account-benefits {
  display: grid;
  gap: 8px;
  margin: 4px 0 6px;
}

.account-benefits span {
  position: relative;
  padding-left: 18px;
  color: var(--paper-dim);
  font-size: 13px;
  font-weight: 750;
}

.account-benefits span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.account-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.google-button {
  justify-content: center;
  gap: 10px;
  border-color: rgba(239, 230, 212, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.google-button:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
}

.google-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
}

.google-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.account-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-divider::before,
.account-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.account-nudge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(200, 160, 74, 0.28);
  border-radius: 4px;
  background: rgba(200, 160, 74, 0.07);
}

.account-nudge strong,
.account-nudge span {
  grid-column: 1;
}

.account-nudge span,
.account-nudge small {
  color: var(--paper-dim);
}

.account-nudge .button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.account-dashboard,
.account-order-page {
  padding: clamp(36px, 6vw, 76px) var(--page-pad);
}

.account-hero,
.account-grid {
  display: grid;
  gap: 20px;
}

.account-hero {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 24px;
}

.account-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.account-hero p {
  margin-top: 8px;
  color: var(--paper-dim);
}

.account-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin-bottom: 20px;
}

.account-panel,
.account-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
  box-shadow: var(--shadow-soft);
}

.rewards-panel strong {
  display: block;
  margin: 8px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 8vw, 82px);
  line-height: 0.95;
  color: var(--gold);
}

.account-panel h2 {
  margin-bottom: 12px;
  font-size: 26px;
}

.account-panel p {
  color: var(--paper-dim);
}

.account-line,
.order-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.account-line small,
.order-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.account-orders {
  display: grid;
}

.order-card {
  grid-template-columns: minmax(0, 1fr) auto auto;
  color: var(--paper-dim);
}

.order-card:hover {
  color: var(--gold);
}

.checkout-form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, var(--panel-hi), var(--panel));
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.compact-form {
  margin: 14px 0 0;
}

.compact-form .button {
  justify-self: start;
}

.wide { grid-column: 1 / -1; }

.return-items {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.return-items legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.return-items label {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 90px;
  gap: 14px;
  align-items: center;
}

.return-items small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.campaign-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  max-height: 420px;
  overflow: auto;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.campaign-products legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.campaign-products label {
  display: grid;
  grid-template-columns: auto 46px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(239, 230, 212, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.campaign-products img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 3px;
  background: var(--paper);
}

.campaign-products small {
  display: block;
  margin-top: 2px;
  color: var(--gold);
}

.campaign-preview iframe {
  width: 100%;
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0a0908;
}

.content-page, .empty-state { padding: 72px 0; }
.content-page h1 { font-size: clamp(36px, 5vw, 58px); margin-bottom: 18px; }
.content-page .eyebrow { margin-bottom: 18px; }

.form-page { max-width: 760px; }
.inquiry-form { margin-top: 24px; }
.inquiry-form .button { min-width: 200px; }
.empty-state { text-align: center; }
.empty-state.success { max-width: 720px; }
.empty-state h1 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 14px; }
.empty-state p { color: var(--paper-dim); }

/* ─── 404 Cinematic Stage ─────────────────────────────────────────── */
.not-found-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 88px);
  align-items: center;
  width: min(100% - 40px, 1240px);
  min-height: 72vh;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) 0;
  isolation: isolate;
  overflow: hidden;
}

/* Background atmospheric pip glyphs */
.not-found-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.not-found-ambient .not-found-pip {
  position: absolute;
  font-family: "Playfair Display", serif;
  line-height: 1;
  color: var(--gold);
  opacity: 0.05;
  filter: drop-shadow(0 0 24px rgba(200, 160, 74, 0.5));
  animation: nf-pip-drift 22s ease-in-out infinite;
}

.not-found-ambient .pip-spade   { top: 6%;  left: 4%;   font-size: clamp(140px, 18vw, 280px); transform: rotate(-12deg);  animation-delay:  0s; }
.not-found-ambient .pip-heart   { top: 12%; right: 8%;  font-size: clamp(120px, 14vw, 220px); transform: rotate(8deg);    animation-delay: 2.6s; color: var(--crimson); opacity: 0.07; }
.not-found-ambient .pip-diamond { bottom: 8%; left: 32%; font-size: clamp(100px, 12vw, 180px); transform: rotate(-18deg); animation-delay: 4.2s; color: var(--crimson); opacity: 0.05; }
.not-found-ambient .pip-club    { bottom: 14%; right: 6%; font-size: clamp(160px, 20vw, 320px); transform: rotate(10deg); animation-delay: 6.1s; }

@keyframes nf-pip-drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50%      { transform: translate(12px, -16px); }
}

/* The card itself — slowly rotating, atmospheric */
.not-found-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 7;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  border: 1px solid rgba(200, 160, 74, 0.45);
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 18%, rgba(200, 160, 74, 0.18), transparent 55%),
    radial-gradient(circle at 72% 82%, rgba(47, 127, 120, 0.12), transparent 60%),
    linear-gradient(160deg, #1c1813 0%, #14110d 60%, #0a0908 100%);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(200, 160, 74, 0.12),
    inset 0 0 0 1px rgba(239, 230, 212, 0.04);
  transform: rotate(-6deg);
  animation: nf-card-float 9s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

@keyframes nf-card-float {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-10px); }
}

.not-found-card-corner {
  position: absolute;
  display: grid;
  gap: 4px;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  line-height: 0.9;
  text-align: center;
}

.not-found-card-corner strong { font-size: clamp(28px, 3vw, 40px); }
.not-found-card-corner small  { font-size: clamp(20px, 2.2vw, 28px); }

.not-found-card-corner.top-left     { top: 18px;    left: 18px;    }
.not-found-card-corner.bottom-right { bottom: 18px; right: 18px;   transform: rotate(180deg); }

.not-found-card-pip {
  font-family: "Playfair Display", serif;
  font-size: clamp(130px, 18vw, 220px);
  line-height: 1;
  color: var(--gold);
  filter: drop-shadow(0 8px 30px rgba(200, 160, 74, 0.35));
  animation: nf-pip-pulse 4s ease-in-out infinite;
}

@keyframes nf-pip-pulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 8px 30px rgba(200, 160, 74, 0.30)); }
  50%      { transform: scale(1.06); filter: drop-shadow(0 8px 44px rgba(230, 196, 122, 0.55)); }
}

/* Slow gold shine sweep across the card */
.not-found-card-shine {
  position: absolute;
  top: 0;
  left: -50%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(230, 196, 122, 0.14) 50%,
    transparent 70%
  );
  transform: skewX(-18deg);
  animation: nf-shine-sweep 5.5s ease-in-out infinite;
  animation-delay: 1.4s;
  pointer-events: none;
}

@keyframes nf-shine-sweep {
  0%, 35%, 100% { left: -50%;  opacity: 0; }
  10%           { opacity: 1; }
  30%           { left: 120%;  opacity: 0; }
}

.not-found-copy {
  position: relative;
  z-index: 1;
}

.not-found-stage h1 {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(48px, 6.4vw, 86px);
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.not-found-stage p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 18px;
  color: var(--paper-dim);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.not-found-stage .hero-actions {
  margin-top: 32px;
}

@media (prefers-reduced-motion: reduce) {
  .not-found-card,
  .not-found-card-pip,
  .not-found-card-shine,
  .not-found-ambient .not-found-pip {
    animation: none !important;
  }
}

@media (max-width: 880px) {
  .not-found-stage { grid-template-columns: 1fr; text-align: center; }
  .not-found-card  { max-width: 260px; }
  .not-found-stage .hero-actions { justify-content: center; }
}

/* ─────────────────────────── flash ─────────────────────────── */

.flash {
  margin: 14px auto 0;
  width: min(1200px, calc(100% - 40px));
  padding: 13px 16px;
  border-left: 3px solid var(--gold);
  border-radius: 3px;
  background: rgba(200, 160, 74, 0.08);
  color: var(--gold-hi);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 5;
}

.flash.error {
  border-left-color: var(--crimson);
  background: rgba(184, 32, 42, 0.1);
  color: #e88a90;
}

/* ─────────────────────────── experience overlays ─────────────────────────── */

.toast-stack {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 80;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 36px));
}

.site-toast,
.cart-reminder,
.cookie-banner,
.newsletter-modal {
  border: 1px solid rgba(200, 160, 74, 0.35);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(36, 32, 26, 0.98), rgba(12, 10, 8, 0.98));
  box-shadow: var(--shadow);
}

.site-toast {
  display: grid;
  gap: 12px;
  padding: 16px;
  color: var(--paper);
}

.toast-actions,
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.modal-backdrop[hidden],
.cookie-banner[hidden],
.cart-reminder[hidden] { display: none; }

.newsletter-modal {
  position: relative;
  width: min(440px, 100%);
  padding: clamp(26px, 5vw, 38px);
}

.newsletter-modal h2 { font-size: clamp(30px, 5vw, 44px); margin: 8px 0 12px; }
.newsletter-modal p { color: var(--paper-dim); }
.newsletter-modal form { display: grid; gap: 14px; margin: 22px 0 12px; }
.newsletter-modal small { color: var(--gold); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.newsletter-modal input {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--panel);
  color: var(--paper);
  padding: 11px 13px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 75;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(440px, calc(100vw - 36px));
  padding: 16px;
}

.modal-backdrop:not([hidden]) ~ .cookie-banner {
  display: none;
}

.modal-backdrop:not([hidden]) ~ .whatsapp-float {
  display: none;
}

.cookie-banner:not([hidden]) ~ .whatsapp-float {
  display: none;
}

.cookie-banner strong,
.cart-reminder strong { color: var(--paper); }
.cookie-banner p,
.cart-reminder p { margin: 4px 0 0; color: var(--paper-dim); font-size: 13px; }

.cart-reminder {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 60;
  width: min(330px, calc(100vw - 36px));
  padding: 16px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 15px;
  border: 1px solid rgba(37, 211, 102, 0.7);
  border-radius: 999px;
  background: #25d366;
  color: #07120b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.whatsapp-float:hover {
  color: #07120b;
  background: #35e174;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.48);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

/* ─────────────────────────── footer ─────────────────────────── */

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 56px clamp(18px, 4vw, 56px) 32px;
  border-top: 1px solid var(--gold-dim);
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(200, 160, 74, 0.08), transparent 70%),
    #06060a;
  color: var(--paper-dim);
  position: relative;
  z-index: 1;
}

.site-footer::before {
  content: "♠  ♥  ♦  ♣";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 18px;
  background: var(--ink);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.4em;
}

.site-footer strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 8px;
}

.site-footer p, .site-footer a { color: rgba(239, 230, 212, 0.62); font-size: 13px; }
.site-footer a { transition: color 140ms ease; }
.site-footer a:hover { color: var(--gold); }

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(220px, 320px) auto;
  gap: 10px;
  align-items: end;
  margin-top: 20px;
}

.footer-newsletter input {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: var(--panel);
  color: var(--paper);
  padding: 10px 12px;
}

.site-footer nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ─────────────────────────── admin ─────────────────────────── */

.admin-body {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
  background: #0c0a08;
}

.admin-body.login-body {
  display: block;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px 22px;
  background: linear-gradient(180deg, #100d09, #06060a);
  color: var(--paper-dim);
  border-right: 1px solid var(--line);
}

.admin-brand { margin-bottom: 32px; }
.admin-brand .brand-mark { border-color: var(--gold-hi); }
.admin-brand .brand-mark:not(.logo-mark) { background: linear-gradient(160deg, var(--gold), #a07a30); color: var(--ink); }

.admin-sidebar nav { display: grid; gap: 4px; }

.admin-sidebar a {
  padding: 11px 13px;
  border-radius: 3px;
  color: var(--paper-dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: background 140ms ease, color 140ms ease;
}

.admin-sidebar a:hover { background: rgba(200, 160, 74, 0.08); color: var(--gold); }

.admin-main {
  min-width: 0;
  max-width: 100vw;
  padding: 32px;
  overflow-x: hidden;
}

.login-main {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 34px;
  background:
    radial-gradient(520px 420px at 50% 25%, rgba(200, 160, 74, 0.13), transparent 70%),
    linear-gradient(135deg, rgba(36, 32, 26, 0.6), transparent 38%),
    var(--ink);
}

.login-card {
  display: grid;
  gap: 18px;
  width: min(480px, 100%);
  padding: clamp(28px, 4vw, 44px);
  border-color: rgba(200, 160, 74, 0.34);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 46px rgba(200, 160, 74, 0.08);
}

.login-card h1 { font-size: clamp(34px, 5vw, 46px); line-height: 0.98; }

.admin-title { justify-content: space-between; margin-bottom: 24px; }
.admin-title h1 { font-size: clamp(28px, 3.4vw, 40px); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; align-items: center; min-width: 0; }
.button.danger { border-color: rgba(184, 32, 42, 0.7); color: #f0a0a5; }
.button.danger:hover { background: rgba(184, 32, 42, 0.18); color: #fff0f1; box-shadow: none; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(170deg, var(--panel-hi), var(--panel));
}

.stat-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.stat-card strong {
  display: block;
  margin-top: 10px;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
}

.launch-readiness .inline-head {
  margin-bottom: 18px;
}

.readiness-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.readiness-item {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left-width: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--paper-dim);
}

.readiness-item:hover {
  border-color: rgba(200, 160, 74, 0.65);
  color: var(--paper);
}

.readiness-item span {
  color: var(--paper);
  font-weight: 800;
}

.readiness-item strong {
  width: fit-content;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.readiness-item p {
  margin: 0;
  color: var(--muted);
}

.readiness-item.is-ready {
  border-left-color: var(--green);
}

.readiness-item.is-ready strong {
  background: rgba(87, 171, 115, 0.14);
  color: #9ee0b0;
}

.readiness-item.is-warning {
  border-left-color: var(--gold);
}

.readiness-item.is-warning strong {
  background: rgba(200, 160, 74, 0.16);
  color: var(--gold-hi);
}

.readiness-item.is-action {
  border-left-color: var(--crimson);
}

.readiness-item.is-action strong {
  background: rgba(184, 32, 42, 0.16);
  color: #f2a0a6;
}

.sales-channel-form .admin-title {
  margin-bottom: 18px;
}

.sales-channel-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.32fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
}

.sales-channel-hero h2 {
  margin: 4px 0 8px;
  font-size: clamp(30px, 4vw, 46px);
}

.channel-status-stack {
  display: grid;
  gap: 10px;
}

.channel-status-stack span {
  display: block;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--paper);
  font-weight: 800;
}

.channel-status-stack .is-ready {
  border-color: rgba(74, 138, 95, 0.55);
  color: #9ee0b0;
}

.channel-status-stack .is-warning {
  border-color: rgba(200, 160, 74, 0.45);
  color: var(--gold-hi);
}

.sales-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.channel-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
}

.channel-card > p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--paper-dim);
}

.channel-card-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.channel-card-head h2 {
  margin: 4px 0 0;
  font-size: 25px;
}

.channel-card-head strong {
  padding: 7px 9px;
  border: 1px solid rgba(200, 160, 74, 0.45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  white-space: nowrap;
}

.feed-url {
  display: grid;
  gap: 7px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.feed-url span,
.setup-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feed-url a {
  overflow-wrap: anywhere;
  color: var(--gold);
  font-weight: 800;
}

.setup-note {
  margin: 0;
  letter-spacing: 0.06em;
  text-transform: none;
}

.setup-note strong {
  color: var(--paper);
}

.setup-steps {
  margin: 0;
  padding-left: 22px;
  color: var(--paper-dim);
}

.setup-steps li + li {
  margin-top: 7px;
}

.channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-table {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

table { width: 100%; border-collapse: collapse; }
.admin-table table { min-width: 760px; }

th, td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  color: var(--paper-dim);
}

th {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.015);
}

.product-cell {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 300px;
  font-weight: 700;
  color: var(--paper);
}

.product-cell small { display: block; margin-top: 3px; color: var(--muted); font-weight: 500; }

.stock-input { width: 90px; }

.sticky-save {
  position: sticky;
  bottom: 18px;
  margin-top: 18px;
  box-shadow: var(--shadow);
  z-index: 6;
}

.admin-panel { padding: 22px; margin-bottom: 20px; }
.admin-panel h2 { font-size: 22px; margin-bottom: 10px; color: var(--paper); }
.muted { color: var(--muted); }

.variant-list { display: grid; gap: 10px; }

.variant-row {
  display: grid;
  grid-template-columns: minmax(170px, 1.2fr) 130px 100px 100px 90px 92px minmax(160px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.new-variant {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkbox { display: flex; align-items: center; gap: 8px; color: var(--paper-dim); }
.checkbox input { width: auto; accent-color: var(--gold); }

.admin-check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.admin-check-grid legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.admin-image-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.admin-image-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  border-radius: 3px;
  background: var(--paper);
}

.rich-editor {
  display: grid;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.rich-toolbar button {
  min-width: 38px;
  min-height: 34px;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.rich-toolbar button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.rich-surface {
  min-height: 260px;
  padding: 14px;
  color: var(--paper);
  line-height: 1.65;
  outline: none;
}

.rich-surface:focus {
  box-shadow: inset 0 0 0 1px var(--gold);
}

.inline-form { display: inline; }

.order-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.order-total {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* ─────────────────────────── responsive ─────────────────────────── */

@media (max-width: 1500px) {
  .site-header { grid-template-columns: auto minmax(260px, 1fr) auto auto; }
  .brand { grid-column: 1; grid-row: 1; }
  .header-search { grid-column: 2; grid-row: 1; }
  .cart-link { grid-column: 3; grid-row: 1; }
  .account-link { grid-column: 4; grid-row: 1; }
  .main-nav { grid-column: 1 / -1; grid-row: 2; }
  .main-nav {
    flex-wrap: wrap;
    overflow: visible;
  }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .brand { grid-column: 1; grid-row: 1; }
  .cart-link { grid-column: 2; grid-row: 1; }
  .account-link { grid-column: 3; grid-row: 1; }
  .main-nav { grid-column: 1 / -1; grid-row: 2; }
  .header-search { grid-column: 1 / -1; grid-row: 3; }

  .hero, .editorial-showcase, .product-detail, .cart-layout, .checkout-layout, .reviews-layout,
  .catalog-shell, .site-footer, .order-grid, .account-grid, .spotlight-runway, .category-moment, .signature-drop,
  .culture-section, .premium-anatomy, .finder-layout { grid-template-columns: 1fr; }

  .catalog-shell {
    width: min(100% - 28px, 1360px);
    gap: 22px;
  }

  .catalog-main,
  .catalog-toolbar,
  .catalog-main .product-grid,
  .catalog-main .collection-education,
  .catalog-main .collection-guide-grid,
  .catalog-main .pagination {
    width: 100%;
    max-width: 100%;
  }

  .catalog-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .sort-form,
  .sort-form select {
    width: 100%;
  }

  .filters {
    position: static;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }
  .filter-form h2,
  .price-filter,
  .filter-form .button,
  .clear-filters {
    grid-column: 1 / -1;
  }
  .price-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid, .recent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .reason-grid, .culture-link-grid, .guide-grid, .guide-paths, .article-grid, .finder-picks, .collection-guide-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pathway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .finder-form { position: static; }
  .runway-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .runway-card-1 { grid-row: auto; grid-column: 1 / -1; }
  .runway-card-1 .runway-image { min-height: 420px; }
  .trust-strip, .purchase-confidence { grid-template-columns: 1fr; }
  .collection-band, .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sales-channel-hero,
  .sales-channel-grid,
  .channel-card { grid-template-columns: 1fr; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-sidebar nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-main { padding: 22px 16px 36px; }
  .admin-title { align-items: flex-start; }
  .admin-actions { width: 100%; justify-content: flex-start; }
  .admin-search { flex: 1 1 220px; min-width: 0; }
  .admin-search input { width: 100%; }
  .variant-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-banner { grid-template-columns: 1fr; }

  .hero-showcase {
    grid-template-columns: repeat(4, minmax(80px, 1fr));
    min-height: 280px;
  }
  .hero-deck { min-height: 260px; }
  .hero-deck img { max-height: 260px; }
  .hero::before { font-size: clamp(220px, 50vw, 380px); right: -40px; }
  .category-moment { padding-bottom: 118px; }
  .category-stage { min-height: 330px; }
  .category-pick { width: clamp(130px, 24vw, 210px); min-height: 240px; }
  .category-pick img { max-height: 240px; }
  .editorial-stack {
    grid-template-rows: 180px 220px;
    min-height: 420px;
  }
  .signature-stage { min-height: 460px; }
  .signature-main { inset: 0 18% 0 0; }
  .signature-side { width: 32%; }
}

@media (max-width: 640px) {
  .deck-backdrop { opacity: 0.28; }
  .deck-ghost { width: 34vw; opacity: 0.08; }
  .deck-ghost-2,
  .deck-ghost-4,
  .deck-ghost-6 { display: none; }
  .announcement-bar {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .announcement-bar::-webkit-scrollbar { display: none; }
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    padding: 10px 12px;
    gap: 8px;
  }
  .brand {
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }
  .brand-mark {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }
  .brand strong {
    overflow: hidden;
    font-size: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .brand small {
    overflow: hidden;
    font-size: 9px;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .cart-link {
    position: relative;
    width: 46px;
    min-width: 46px;
    min-height: 38px;
    padding: 0;
    gap: 0;
    font-size: 0;
    letter-spacing: 0.1em;
  }
  .cart-link::before {
    content: "";
    width: 18px;
    height: 15px;
    border: 2px solid currentColor;
    border-top-width: 3px;
    border-radius: 2px 2px 4px 4px;
  }
  .cart-link::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 13px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 999px 999px 0 0;
    transform: translateX(-50%);
  }
  .cart-link span {
    position: absolute;
    right: 3px;
    top: 3px;
    min-width: 18px;
    height: 18px;
    font-size: 10px;
  }
  .account-link { min-height: 38px; padding: 0 12px; letter-spacing: 0.12em; }
  .account-link {
    position: relative;
    width: 42px;
    min-width: 42px;
    padding: 0;
    font-size: 0;
    gap: 0;
  }
  .account-link::before {
    content: "";
    width: 13px;
    height: 13px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translateY(-5px);
  }
  .account-link::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 23px;
    width: 18px;
    height: 9px;
    border: 2px solid currentColor;
    border-top: 0;
    border-radius: 0 0 999px 999px;
    transform: translateX(-50%);
  }
  .main-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    gap: 16px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .header-search input { padding-block: 9px; }
  .breadcrumbs {
    width: min(100% - 28px, 1360px);
    margin-top: 28px;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }
  .breadcrumbs span:last-child {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero { min-height: auto; padding: 36px 22px 34px; gap: 24px; }
  .hero-card-fan {
    top: 12px;
    right: -72px;
    bottom: auto;
    width: 280px;
    height: 260px;
    opacity: 0.2;
  }
  .hero-card-fan span {
    width: 88px;
    border-radius: 7px;
  }
  .hero h1 { font-size: 38px; }
  .hero p:not(.eyebrow) { margin-top: 16px; font-size: 15.5px; }
  .hero-proof { grid-template-columns: 1fr; margin-top: 20px; }
  .hero-actions { margin-top: 24px; }
  .hero .button { min-height: 42px; padding-inline: 16px; letter-spacing: 0.16em; }
  .hero-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: auto;
    gap: 8px;
  }
  .hero-deck {
    min-height: 128px;
    transform: none;
  }
  .hero-deck img { max-height: 128px; }
  .hero-curator-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  .signature-drop {
    width: min(100% - 28px, 1360px);
    margin-top: 34px;
    padding: 26px 20px;
  }
  .signature-copy h2 { font-size: 36px; }
  .signature-proof { grid-template-columns: 1fr; }
  .signature-stage { min-height: auto; display: grid; gap: 14px; }
  .signature-main {
    position: relative;
    inset: auto;
    min-height: 360px;
  }
  .signature-main img { max-height: 330px; }
  .signature-side {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: none;
  }
  .pathway-showcase { width: min(100% - 28px, 1360px); padding-top: 42px; }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 260px; }
  .editorial-showcase { width: min(100% - 28px, 1360px); padding-top: 24px; }
  .editorial-copy h2 { font-size: 34px; }
  .category-moment {
    width: min(100% - 28px, 1360px);
    margin-top: 22px;
    min-height: auto;
    padding: 28px 22px 146px;
  }
  .category-copy h1 { font-size: 40px; }
  .category-stats span { flex: 1 1 130px; }
  .category-stage {
    min-height: 250px;
    transform: none;
  }
  .category-pick {
    width: 34%;
    min-height: 170px;
    padding-inline: 4px;
  }
  .category-pick img { max-height: 170px; }
  .category-pick span { display: none; }
  .category-pick-1 { left: 0; bottom: 8%; }
  .category-pick-2 { left: 22%; top: 0; }
  .category-pick-3 { right: 18%; bottom: 1%; }
  .category-pick-4 { right: 0; top: 12%; }
  .editorial-stack {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 180px);
    min-height: auto;
  }
  .editorial-photo-main,
  .editorial-photo-overlap,
  .editorial-photo-tall {
    grid-column: 1;
    grid-row: auto;
    transform: none;
  }
  .spotlight-runway { width: min(100% - 28px, 1360px); margin-top: 48px; }
  .runway-grid { grid-template-columns: 1fr; }
  .runway-card, .runway-card-1 { grid-template-rows: minmax(260px, auto) auto; }
  .runway-card-1 .runway-image,
  .runway-image {
    min-height: 280px;
  }
  .runway-image img { max-height: 300px; }
  .product-grid, .collection-band, .form-grid, .stat-grid, .recent-grid, .collection-guide-grid, .support-grid,
  .reason-grid, .culture-link-grid, .guide-grid, .guide-paths, .article-grid, .finder-picks,
  .comparison-grid, .anatomy-list { grid-template-columns: 1fr; }
  .culture-section, .premium-anatomy, .guide-hero, .guide-grid, .guide-paths, .finder-layout, .article-grid, .support-hero, .support-grid {
    width: min(100% - 28px, 1360px);
  }
  .premium-anatomy { padding: 26px 20px; }
  .not-found-page {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 44px 0 70px;
  }
  .not-found-card {
    max-width: 220px;
  }
  .account-hero, .order-card, .account-nudge { grid-template-columns: 1fr; }
  .account-nudge .button { grid-column: 1; grid-row: auto; }
  .trust-strip { margin-top: 0; }
  .product-detail {
    width: min(100% - 28px, 1360px);
    max-width: 100%;
    padding-top: 34px;
  }
  .product-detail > * {
    min-width: 0;
    max-width: 100%;
  }
  .gallery {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    overflow: hidden;
  }
  .main-image {
    aspect-ratio: 4 / 5;
    padding: 8px;
  }
  .thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }
  .thumbs button {
    padding: 3px;
  }
  .purchase-confidence { grid-template-columns: 1fr; }
  .line-item { grid-template-columns: 72px minmax(0, 1fr); }
  .line-item input, .line-item .quantity-stepper, .line-item strong, .line-actions { grid-column: 2; }
  .line-actions { justify-items: start; }
  .product-image-back { display: none; }
  .add-form, .variant-row { grid-template-columns: 1fr; }
  .sticky-atc {
    bottom: 12px;
    width: calc(100vw - 24px);
    grid-template-columns: minmax(0, 1fr);
  }
  .sticky-atc .button { width: 100%; }
  .reviews-head { display: grid; }
  .footer-newsletter { grid-template-columns: 1fr; }
  .toast-stack, .cart-reminder { right: 12px; bottom: 82px; width: calc(100vw - 24px); }
  .has-sticky-atc .toast-stack,
  .has-sticky-atc .cart-reminder {
    bottom: 154px;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    min-height: 52px;
    padding-inline: 14px 16px;
  }
  .has-sticky-atc .whatsapp-float {
    bottom: 92px;
  }
  .whatsapp-float span { display: none; }
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    gap: 7px;
    padding: 10px;
  }
  .cookie-banner strong { font-size: 14px; }
  .cookie-banner p {
    margin-top: 2px;
    font-size: 11.5px;
    line-height: 1.3;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .cookie-actions .button {
    min-height: 38px;
    padding: 8px 10px;
    white-space: normal;
  }
  .site-footer nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body::after {
    opacity: 0;
  }

  .motion-ribbon div,
  .category-ribbon div,
  .hero-card-fan span {
    animation: none;
  }

  .hero-showcase,
  .hero-deck,
  .category-stage,
  .category-pick,
  .signature-stage {
    animation: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .runway-image::before,
  .product-image::before {
    display: none;
  }

  .product-card.is-tilting .product-image,
  .product-card:hover .product-image > img,
  .product-card:hover .product-image-back,
  .editorial-photo-overlap,
  .editorial-photo-tall {
    transform: none;
  }

  .product-card:hover .product-image > img {
    opacity: 1;
  }

  .product-image-back {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════════════════
 * MOTION LAYER — 2026-06-02
 * Additive enhancements: native view transitions, custom cursor,
 * hero letter-stagger, floating deck silhouettes, magnetic CTAs,
 * marquee strip, art-deco fleurons.
 * All gated by prefers-reduced-motion + pointer capability.
 * ════════════════════════════════════════════════════════════════════════ */

/* — Native cross-document page transitions (Chrome/Edge 126+) ——————————— */
@view-transition { navigation: auto; }

::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: 360ms;
  animation-timing-function: cubic-bezier(.2, .7, .25, 1);
}

::view-transition-old(root) {
  animation-name: vt-fade-out;
}
::view-transition-new(root) {
  animation-name: vt-fade-in;
}

@keyframes vt-fade-out {
  to { opacity: 0; transform: translateY(-8px); }
}
@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(12px); }
}

/* — Custom gold ♠ cursor — only on fine pointers ————————————————————————— */
.cursor-mark {
  position: fixed;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-9999px, -9999px);
  transition: width 220ms cubic-bezier(.2,.7,.3,1),
              height 220ms cubic-bezier(.2,.7,.3,1),
              opacity 220ms ease;
  will-change: transform;
  mix-blend-mode: difference;
  opacity: 0;
}

.cursor-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 6px rgba(200, 160, 74, 0.6));
}

.cursor-mark.is-armed { opacity: 1; }
.cursor-mark.is-active { width: 38px; height: 38px; }

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-mark { display: none !important; }
}

/* — Hero letter-stagger reveal —————————————————————————————————————————— */
.hero-heading-split { display: inline; }

.hero-heading-split .reveal-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-heading-split .reveal-letter {
  display: inline-block;
  transform-origin: 50% 100%;
  transition: opacity 700ms cubic-bezier(.2,.7,.3,1),
              transform 700ms cubic-bezier(.2,.7,.3,1);
  transition-delay: calc(var(--i, 0) * 26ms);
  will-change: transform, opacity;
}

/* Only offset letters initially when JS is active — text stays readable
 * (transform only, never opacity, so screenshots and the no-IO path still
 * surface fully-legible copy at all times) */
html.js .hero-heading-split .reveal-letter {
  transform: translateY(22px);
}

.hero-heading-split .reveal-letter[data-space] {
  width: 0.32em;
}

[data-hero-revealed] .hero-heading-split .reveal-letter {
  opacity: 1;
  transform: translateY(0) rotateX(0deg);
}

.hero .eyebrow,
.hero p:not(.eyebrow),
.hero-actions,
.hero-meta {
  transition: opacity 800ms cubic-bezier(.2,.7,.3,1),
              transform 800ms cubic-bezier(.2,.7,.3,1);
}

html.js .hero .eyebrow,
html.js .hero p:not(.eyebrow),
html.js .hero-actions,
html.js .hero-meta {
  transform: translateY(14px);
}

.hero .eyebrow            { transition-delay: 80ms; }
.hero p:not(.eyebrow)     { transition-delay: 420ms; }
.hero-actions             { transition-delay: 540ms; }
.hero-meta                { transition-delay: 640ms; }

[data-hero-revealed] .hero .eyebrow,
[data-hero-revealed] .hero p:not(.eyebrow),
[data-hero-revealed] .hero-actions,
[data-hero-revealed] .hero-meta {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading-split .reveal-letter,
  .hero .eyebrow,
  .hero p:not(.eyebrow),
  .hero-actions,
  .hero-meta {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* — Floating deck silhouettes in the hero ——————————————————————————————— */
.hero-card-deck {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-floating-card {
  position: absolute;
  width: clamp(110px, 14vw, 200px);
  aspect-ratio: 5 / 7;
  border-radius: 8px;
  background: linear-gradient(165deg, var(--panel-hi), var(--panel) 70%);
  border: 1px solid rgba(200, 160, 74, 0.4);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.7),
    inset 0 0 0 1px rgba(200, 160, 74, 0.18);
  opacity: 0;
  transform: translate(var(--tx, 0px), var(--ty, 0px)) rotate(var(--rot, 0deg)) scale(0.9);
  transition: opacity 1200ms ease, transform 1400ms cubic-bezier(.2,.7,.3,1);
  animation: card-drift var(--drift-duration, 22s) ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  color: var(--gold);
}

.hero-floating-card .pip {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  opacity: 0.85;
  filter: drop-shadow(0 0 12px rgba(200, 160, 74, 0.35));
}

.hero-floating-card .corner {
  position: absolute;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  opacity: 0.9;
}

.hero-floating-card .corner span {
  display: block;
  font-size: 0.8em;
  margin-top: 2px;
  opacity: 0.85;
}

.hero-floating-card .corner.top-left { top: 12px; left: 12px; }
.hero-floating-card .corner.bottom-right {
  bottom: 12px;
  right: 12px;
  transform: rotate(180deg);
}

[data-hero-revealed] .hero-floating-card {
  opacity: 1;
  transform: translate(var(--tx, 0px), var(--ty, 0px)) rotate(var(--rot, 0deg)) scale(1);
}

@keyframes card-drift {
  0%, 100% {
    transform: translate(var(--tx, 0px), var(--ty, 0px))
               rotate(var(--rot, 0deg)) scale(1);
  }
  50% {
    transform: translate(calc(var(--tx, 0px) + 14px), calc(var(--ty, 0px) - 18px))
               rotate(calc(var(--rot, 0deg) + 3deg)) scale(1.02);
  }
}

.hero-floating-card.suit-red { color: var(--crimson); border-color: rgba(184, 32, 42, 0.45); }

@media (prefers-reduced-motion: reduce) {
  .hero-floating-card { animation: none !important; opacity: 0.35 !important; }
}

/* — Magnetic CTA pull ——————————————————————————————————————————————————— */
.button {
  transition: background 160ms ease, color 160ms ease,
              box-shadow 160ms ease, transform 200ms cubic-bezier(.2,.7,.3,1);
  will-change: transform;
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .button[data-magnetic] {
    transform: none !important;
  }
}

/* — Parlor marquee strip ———————————————————————————————————————————————— */
.parlor-marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(180deg, transparent, rgba(200, 160, 74, 0.04) 50%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  z-index: 2;
}

.parlor-marquee::before,
.parlor-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.parlor-marquee::before { left: 0;  background: linear-gradient(90deg, var(--ink), transparent); }
.parlor-marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink), transparent); }

.parlor-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 42s linear infinite;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--paper-dim);
  align-items: center;
}

.parlor-marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
}

.parlor-marquee-track .pip {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0;
}

.parlor-marquee-track .accent {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  text-transform: none;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-style: italic;
  font-weight: 700;
}

@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .parlor-marquee-track { animation: none; }
}

/* — Art-deco fleuron section dividers ——————————————————————————————————— */
.section-fleuron {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 64px auto 0;
  width: min(680px, calc(100% - 40px));
  color: var(--gold);
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 1;
}

.section-fleuron::before,
.section-fleuron::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 40%, var(--gold-dim) 60%, transparent);
}

.section-fleuron-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.4em;
  font-size: 14px;
  opacity: 0.85;
}

.section-fleuron-mark::before,
.section-fleuron-mark::after {
  content: "❦";
  font-size: 18px;
  color: var(--gold);
  opacity: 0.55;
}

/* ────────────────────────────────────────────────────────────────────────
 * PDP MOTION LAYER — 2026-06-02
 * Atmospheric backdrop, cross-fade gallery, click-to-zoom lightbox,
 * staggered buy-panel entrance, first-letter title accent.
 * ──────────────────────────────────────────────────────────────────────── */

.product-detail {
  position: relative;
  isolation: isolate;
}

/* atmospheric gold/teal glow behind gallery */
.product-detail::before {
  content: "";
  position: absolute;
  inset: -40px -10px auto -10px;
  height: 70%;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 22% 30%, rgba(200, 160, 74, 0.16), transparent 70%),
    radial-gradient(40% 60% at 72% 70%, rgba(47, 127, 120, 0.12), transparent 75%);
  filter: blur(4px);
  opacity: 0.85;
}

/* Decorative suit silhouettes near the gallery (injected by JS) */
.gallery-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  border-radius: inherit;
}

.gallery-floating-suit {
  position: absolute;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  opacity: 0.08;
  user-select: none;
  line-height: 1;
  filter: drop-shadow(0 0 22px rgba(200, 160, 74, 0.35));
  animation: gallery-suit-drift var(--drift-duration, 18s) ease-in-out infinite;
  animation-delay: var(--drift-delay, 0s);
}

@keyframes gallery-suit-drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50%      { transform: translate(8px, -10px) rotate(calc(var(--rot, 0deg) + 4deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-floating-suit { animation: none !important; }
}

.gallery {
  position: relative;
  z-index: 1;
}

/* Cross-fade swap on the main image when a thumb is clicked */
.main-image {
  transition: opacity 240ms ease, transform 480ms cubic-bezier(.2,.7,.3,1), filter 240ms ease;
  cursor: zoom-in;
}

.main-image.is-swapping {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(2px);
}

/* Small "tap to zoom" affordance overlay on the main image */
.gallery-zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(10, 9, 8, 0.72);
  border: 1px solid rgba(200, 160, 74, 0.35);
  border-radius: 999px;
  color: var(--gold-hi);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery:hover .gallery-zoom-hint,
.gallery:focus-within .gallery-zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.gallery-zoom-hint svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Staggered buy-panel entrance on PDP */
html.js .product-detail .buy-panel > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 720ms cubic-bezier(.2,.7,.3,1), transform 720ms cubic-bezier(.2,.7,.3,1);
  transition-delay: calc(var(--pdp-i, 0) * 60ms);
}

html.js .product-detail[data-pdp-revealed] .buy-panel > * {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js .product-detail .buy-panel > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* First-letter accent in the product title */
.buy-panel h1 .title-accent {
  color: var(--gold-hi);
}

/* Eyebrow gold suit prefix */
.buy-panel .eyebrow::after {
  content: " ♠";
  margin-left: 6px;
  color: var(--gold);
  opacity: 0.6;
  letter-spacing: 0;
}

/* ── Click-to-zoom lightbox ───────────────────────────────────────────── */
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: rgba(10, 9, 8, 0.96);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.pdp-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pdp-lightbox-stage {
  position: relative;
  width: min(94vw, 1200px);
  height: min(88vh, 900px);
  overflow: auto;                 /* scroll when image > stage */
  display: grid;
  place-items: center;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dim) transparent;
}

.pdp-lightbox-stage::-webkit-scrollbar { width: 10px; height: 10px; }
.pdp-lightbox-stage::-webkit-scrollbar-track { background: rgba(20, 17, 13, 0.4); }
.pdp-lightbox-stage::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 999px; }
.pdp-lightbox-stage::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.pdp-lightbox-stage img {
  position: relative;
  z-index: 0;
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.7));
  transition: opacity 220ms ease, transform 320ms cubic-bezier(.2,.7,.3,1), max-width 200ms ease, max-height 200ms ease;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;        /* shield intercepts right-click / drag */
}

.pdp-lightbox-stage img.is-swapping { opacity: 0; transform: scale(0.98); }

/* Zoom states cycled by shield click */
.pdp-lightbox-stage[data-zoom="100"] {
  place-items: start center;     /* anchor large image to top so user can scroll naturally */
}
.pdp-lightbox-stage[data-zoom="100"] img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: auto;
}

.pdp-lightbox-stage[data-zoom="200"] {
  place-items: start center;
}
.pdp-lightbox-stage[data-zoom="200"] img {
  max-width: none;
  max-height: none;
  width: 200%;
  height: auto;
}

/* Shield cursor reflects current zoom action */
.pdp-lightbox-stage[data-zoom="fit"]  .pdp-lightbox-shield,
.pdp-lightbox-stage:not([data-zoom]) .pdp-lightbox-shield { cursor: zoom-in; }
.pdp-lightbox-stage[data-zoom="100"]  .pdp-lightbox-shield { cursor: zoom-in; }
.pdp-lightbox-stage[data-zoom="200"]  .pdp-lightbox-shield { cursor: zoom-out; }

/* Tiny "fit / 100% / 200%" indicator pill */
.pdp-lightbox-zoom-state {
  position: absolute;
  bottom: 18px;
  left: 22px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid rgba(200, 160, 74, 0.35);
  color: var(--gold-hi);
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0.8;
}

/* Transparent shield sits on top of the zoomed image. Because the shield
 * has no `src`, right-click → "Save Image As" targets a div (no image),
 * not the underlying <img>, making the casual save vector dead-end. */
.pdp-lightbox-shield {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Watermark — sits in the corner of the lightbox image so any screenshot
 * carries the brand. Subtle enough not to ruin the zoom experience. */
.pdp-lightbox-watermark {
  position: absolute;
  bottom: 18px;
  right: 22px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.55);
  border: 1px solid rgba(200, 160, 74, 0.35);
  color: var(--gold-hi);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.75;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Lightbox controls must remain interactive above the shield */
.pdp-lightbox button { z-index: 3; }

.pdp-lightbox button {
  position: absolute;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(20, 17, 13, 0.85);
  border: 1px solid rgba(200, 160, 74, 0.45);
  color: var(--gold-hi);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.pdp-lightbox button:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }

.pdp-lightbox button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2.4; }

.pdp-lightbox-close { top: 18px; right: 18px; }
.pdp-lightbox-prev  { left: clamp(12px, 4vw, 38px); top: 50%; transform: translateY(-50%); }
.pdp-lightbox-next  { right: clamp(12px, 4vw, 38px); top: 50%; transform: translateY(-50%); }

.pdp-lightbox-counter {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--paper-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .pdp-lightbox-prev { left: 8px; }
  .pdp-lightbox-next { right: 8px; }
  .pdp-lightbox button { width: 40px; height: 40px; }
}

/* ════════════════════════════════════════════════════════════════════════
 * SIGNATURE LAYER — 2026-06-02
 * Cart drawer, satisfaction toast, Cmd+K palette.
 * ════════════════════════════════════════════════════════════════════════ */

/* ── Cart drawer ─────────────────────────────────────────────────────── */
.bf52-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.bf52-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.bf52-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(440px, 100vw);
  z-index: 1060;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  background: linear-gradient(180deg, #14110d 0%, #0a0908 100%);
  border-left: 1px solid var(--gold-dim);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(.2, .7, .25, 1);
  color: var(--paper);
}

.bf52-drawer.is-open { transform: translateX(0); }

.bf52-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 14px;
  border-bottom: 1px solid var(--line);
}

.bf52-drawer-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--paper);
}

.bf52-drawer-header h2 small {
  display: block;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.bf52-drawer-close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--paper-dim);
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.bf52-drawer-close:hover { border-color: var(--gold); color: var(--gold); background: rgba(200, 160, 74, 0.08); }
.bf52-drawer-close svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.4; }

.bf52-drawer-progress {
  padding: 16px 24px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--paper-dim);
}

.bf52-drawer-progress strong { color: var(--gold-hi); font-weight: 600; }

.bf52-drawer-progress-bar {
  position: relative;
  height: 4px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.12);
  overflow: hidden;
}

.bf52-drawer-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 60%, var(--gold-hi));
  transition: width 420ms cubic-bezier(.2, .7, .25, 1);
  border-radius: 999px;
}

.bf52-drawer-progress.is-unlocked strong { color: #6fbb8e; }

.bf52-drawer-items {
  overflow-y: auto;
  padding: 16px 20px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.bf52-drawer-empty {
  display: grid;
  place-items: center;
  padding: 56px 24px;
  text-align: center;
  gap: 14px;
  color: var(--paper-dim);
}

.bf52-drawer-empty .pip {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.bf52-drawer-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(28, 24, 19, 0.6);
  animation: drawer-item-in 360ms cubic-bezier(.2, .7, .25, 1) backwards;
}

@keyframes drawer-item-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.bf52-drawer-item img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 4px;
  background: #f7f0e3;
  padding: 4px;
}

.bf52-drawer-item-body { display: grid; gap: 4px; align-content: start; min-width: 0; }
.bf52-drawer-item-body a { color: var(--paper); font-family: "Playfair Display", serif; font-weight: 600; font-size: 15px; line-height: 1.2; }
.bf52-drawer-item-body a:hover { color: var(--gold-hi); }
.bf52-drawer-item-body small { color: var(--muted); font-size: 11.5px; }
.bf52-drawer-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 4px;
}
.bf52-drawer-item-meta strong { color: var(--gold-hi); font-family: "Playfair Display", serif; font-size: 16px; }
.bf52-drawer-item-meta .qty { color: var(--paper-dim); font-size: 12px; letter-spacing: 0.08em; }

.bf52-drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.6);
}

.bf52-drawer-footer-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.bf52-drawer-footer-row .label { color: var(--paper-dim); text-transform: uppercase; letter-spacing: 0.22em; font-size: 11px; font-weight: 700; }
.bf52-drawer-footer-row .total { font-family: "Playfair Display", serif; font-size: 28px; color: var(--gold-hi); font-weight: 700; }

.bf52-drawer-footer .button { width: 100%; }
.bf52-drawer-footer-note { margin-top: 10px; text-align: center; color: var(--muted); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.bf52-drawer-footer-note a { color: var(--gold); }

@media (max-width: 480px) {
  .bf52-drawer { width: 100vw; border-left: 0; }
}

/* ── Cart-add satisfaction: badge bounce + suit confetti ─────────────── */
[data-cart-count].is-bouncing {
  animation: cart-badge-bounce 600ms cubic-bezier(.2, .9, .3, 1.4);
}

@keyframes cart-badge-bounce {
  0%   { transform: scale(1);  background: var(--gold); }
  35%  { transform: scale(1.6); background: var(--gold-hi); box-shadow: 0 0 24px rgba(230, 196, 122, 0.7); }
  60%  { transform: scale(0.95); }
  100% { transform: scale(1);  background: var(--gold); }
}

.bf52-confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1100;
  overflow: hidden;
}

.bf52-confetti-pip {
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1;
  user-select: none;
  animation: confetti-fall var(--dur, 1100ms) cubic-bezier(.4, .2, .2, 1) forwards;
  animation-delay: var(--delay, 0ms);
  will-change: transform, opacity;
  opacity: 0;
}

@keyframes confetti-fall {
  0%   { opacity: 0; transform: translate(var(--x-start, 0), var(--y-start, 0)) rotate(0); }
  10%  { opacity: 1; }
  100% { opacity: 0; transform: translate(var(--x-end, 0), var(--y-end, 0)) rotate(var(--spin, 360deg)); }
}

/* Flying ♠ from product image to cart badge */
.bf52-flying-pip {
  position: fixed;
  z-index: 1101;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  color: var(--gold-hi);
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(230, 196, 122, 0.7));
  transition: transform 780ms cubic-bezier(.4, .1, .3, 1), opacity 780ms ease;
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: reduce) {
  [data-cart-count].is-bouncing,
  .bf52-confetti-pip,
  .bf52-flying-pip { animation: none !important; transition: none !important; }
}

/* ── Cmd/Ctrl+K command palette ──────────────────────────────────────── */
.bf52-palette-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  display: grid;
  place-items: start center;
  padding: 12vh 20px 20px;
}

.bf52-palette-backdrop.is-open { opacity: 1; pointer-events: auto; }

.bf52-palette {
  width: min(680px, 100%);
  background: linear-gradient(180deg, #1c1813, #14110d);
  border: 1px solid var(--gold-dim);
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(200, 160, 74, 0.18);
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 280ms cubic-bezier(.2, .7, .25, 1);
}

.bf52-palette-backdrop.is-open .bf52-palette { transform: translateY(0); }

.bf52-palette-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.bf52-palette-input-row svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.bf52-palette input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--paper);
  font-size: 18px;
  outline: none;
  padding: 6px 0;
}

.bf52-palette input::placeholder { color: var(--muted); }

.bf52-palette kbd {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  color: var(--muted);
}

.bf52-palette-list {
  max-height: 56vh;
  overflow-y: auto;
  padding: 8px;
}

.bf52-palette-list:empty { padding: 0; }

.bf52-palette-hint {
  padding: 22px 24px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.bf52-palette-result {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  color: var(--paper);
  transition: background 140ms ease;
}

.bf52-palette-result:hover,
.bf52-palette-result.is-active {
  background: rgba(200, 160, 74, 0.1);
}

.bf52-palette-result img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #f7f0e3;
  border-radius: 4px;
  padding: 3px;
}

.bf52-palette-result-body strong { display: block; font-weight: 600; color: var(--paper); }
.bf52-palette-result-body small  { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }
.bf52-palette-result-meta { color: var(--gold); font-size: 12px; letter-spacing: 0.08em; }

.bf52-palette-footer {
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bf52-palette-footer span { display: inline-flex; align-items: center; gap: 6px; }
.bf52-palette-footer kbd { padding: 2px 6px; }

/* ════════════════════════════════════════════════════════════════════════
 * FINAL POLISH — 2026-06-02
 * First-visit splash card-draw + hand-of-cards loading state.
 * ════════════════════════════════════════════════════════════════════════ */

/* ── First-visit splash ─────────────────────────────────────────────── */
.bf52-splash {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(200, 160, 74, 0.10), transparent 70%),
    rgba(8, 7, 6, 0.98);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  animation: bf52-splash-show 220ms ease forwards;
}

.bf52-splash.is-dismissing {
  animation: bf52-splash-hide 360ms cubic-bezier(.4, .1, .3, 1) forwards;
}

@keyframes bf52-splash-show {
  to { opacity: 1; pointer-events: auto; }
}

@keyframes bf52-splash-hide {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}

.bf52-splash-stage {
  position: relative;
  display: grid;
  place-items: center;
  gap: 36px;
}

.bf52-splash-card {
  position: relative;
  width: clamp(220px, 28vw, 320px);
  aspect-ratio: 5 / 7;
  perspective: 1400px;
  transform: translateY(120vh) rotate(-8deg);
  animation: bf52-splash-deal 3400ms cubic-bezier(.2, .7, .25, 1) forwards;
}

@keyframes bf52-splash-deal {
  0%   { transform: translateY(120vh) rotate(-8deg); }
  30%  { transform: translateY(0)     rotate(0deg); }
  90%  { transform: translateY(0)     rotate(0deg); }
  100% { transform: translateY(-60vh) rotate(2deg); opacity: 0; }
}

.bf52-splash-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  animation: bf52-splash-flip 3400ms cubic-bezier(.4, .1, .25, 1) forwards;
}

@keyframes bf52-splash-flip {
  0%, 35% { transform: rotateY(0deg);   }
  55%     { transform: rotateY(180deg); }
  100%    { transform: rotateY(180deg); }
}

.bf52-splash-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(200, 160, 74, 0.55);
  background: linear-gradient(160deg, #1c1813 0%, #14110d 60%, #0a0908 100%);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(200, 160, 74, 0.18),
    inset 0 0 0 1px rgba(239, 230, 212, 0.04);
  backface-visibility: hidden;
  overflow: hidden;
  isolation: isolate;
}

.bf52-splash-face.back {
  background:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(200, 160, 74, 0.05) 6px 12px),
    radial-gradient(circle at 50% 50%, rgba(200, 160, 74, 0.18), transparent 60%),
    linear-gradient(160deg, #1c1813 0%, #14110d 60%, #0a0908 100%);
}

.bf52-splash-face.back .pip {
  font-family: "Playfair Display", serif;
  font-size: clamp(80px, 12vw, 140px);
  color: var(--gold);
  opacity: 0.85;
  filter: drop-shadow(0 0 32px rgba(230, 196, 122, 0.45));
}

.bf52-splash-face.front {
  transform: rotateY(180deg);
  background:
    radial-gradient(circle at 30% 18%, rgba(200, 160, 74, 0.22), transparent 55%),
    radial-gradient(circle at 70% 82%, rgba(47, 127, 120, 0.14), transparent 60%),
    linear-gradient(160deg, #221b13 0%, #16120d 60%, #0a0908 100%);
}

.bf52-splash-face-content {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  color: var(--paper);
}

.bf52-splash-mark {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(160deg, #1c1813, #14110d);
  box-shadow: 0 0 22px rgba(200, 160, 74, 0.35);
}

.bf52-splash-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.bf52-splash-face .brand-line {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: var(--paper);
  margin: 6px 0 0;
}

.bf52-splash-face .brand-eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold);
}

.bf52-splash-face .corner {
  position: absolute;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  line-height: 0.9;
  text-align: center;
}
.bf52-splash-face .corner small { display: block; font-size: 14px; margin-top: 2px; }
.bf52-splash-face .corner.top-left { top: 14px; left: 16px; }
.bf52-splash-face .corner.bottom-right { bottom: 14px; right: 16px; transform: rotate(180deg); }

.bf52-splash-caption {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--paper-dim);
  margin: 0;
  opacity: 0;
  animation: bf52-splash-caption-in 2200ms ease forwards;
  animation-delay: 1400ms;
}

@keyframes bf52-splash-caption-in {
  0%   { opacity: 0; transform: translateY(8px); }
  40%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; }
}

.bf52-splash-skip {
  position: absolute;
  bottom: 32px;
  right: 32px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}
.bf52-splash-skip:hover { color: var(--gold); border-color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .bf52-splash,
  .bf52-splash-card,
  .bf52-splash-card-inner,
  .bf52-splash-caption {
    animation: none !important;
  }
  .bf52-splash { opacity: 1; }
}

/* ── Hand-of-cards loading state ────────────────────────────────────── */
.bf52-loader {
  display: inline-flex;
  position: relative;
  width: 80px;
  height: 56px;
  align-items: center;
  justify-content: center;
}

.bf52-loader-card {
  position: absolute;
  bottom: 0;
  left: calc(50% - 9px);
  width: 18px;
  height: 26px;
  border: 1px solid var(--gold);
  background: linear-gradient(160deg, var(--panel-hi), var(--panel));
  border-radius: 2px;
  opacity: 0;
  transform-origin: 50% 100%;
  animation: bf52-loader-deal 1800ms cubic-bezier(.4, .1, .3, 1) infinite;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.bf52-loader-card::after {
  content: "♠";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 9px;
  opacity: 0.55;
}

.bf52-loader-card:nth-child(1) { animation-delay:    0ms; --xR: -36px; --rot: -28deg; }
.bf52-loader-card:nth-child(2) { animation-delay:  100ms; --xR: -18px; --rot: -14deg; }
.bf52-loader-card:nth-child(3) { animation-delay:  200ms; --xR:   0px; --rot:   0deg; }
.bf52-loader-card:nth-child(4) { animation-delay:  300ms; --xR:  18px; --rot:  14deg; }
.bf52-loader-card:nth-child(5) { animation-delay:  400ms; --xR:  36px; --rot:  28deg; }

@keyframes bf52-loader-deal {
  0%   { opacity: 0; transform: translate(0, 8px)             rotate(0deg) scale(0.9); }
  15%  { opacity: 1; transform: translate(0, 0)               rotate(0deg) scale(1);   }
  50%  { opacity: 1; transform: translate(var(--xR), -10px)   rotate(var(--rot));      }
  80%  { opacity: 1; transform: translate(var(--xR), -10px)   rotate(var(--rot));      }
  100% { opacity: 0; transform: translate(var(--xR), -16px)   rotate(var(--rot));      }
}

.bf52-loader-shell {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 32px 12px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .bf52-loader-card { animation: none; opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════════════
 * PARLOR ACCOUNT — 2026-06-02
 * Cinematic account dashboard redesign.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-account {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 104px);
  isolation: isolate;
}

/* Ambient suit silhouettes drifting in the corners */
.parlor-account-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.parlor-account-ambient .pip {
  position: absolute;
  font-family: "Playfair Display", serif;
  line-height: 1;
  filter: drop-shadow(0 0 24px rgba(200, 160, 74, 0.4));
  animation: parlor-pip-drift 24s ease-in-out infinite;
  opacity: 0.05;
}

.parlor-account-ambient .pip-spade   { top: -4%;  left:  -2%; font-size: clamp(180px, 22vw, 360px); color: var(--gold);    transform: rotate(-10deg); animation-delay: 0s; }
.parlor-account-ambient .pip-club    { top: 24%;  right: -3%; font-size: clamp(140px, 18vw, 280px); color: var(--gold);    transform: rotate(12deg);  animation-delay: 3s; }
.parlor-account-ambient .pip-heart   { bottom: 8%; left: 28%; font-size: clamp(120px, 14vw, 220px); color: var(--crimson); opacity: 0.06; transform: rotate(-6deg); animation-delay: 6s; }
.parlor-account-ambient .pip-diamond { bottom: -4%; right: 12%; font-size: clamp(160px, 20vw, 300px); color: var(--crimson); opacity: 0.04; transform: rotate(14deg); animation-delay: 9s; }

@keyframes parlor-pip-drift {
  0%, 100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  50%      { transform: translate(10px, -14px); }
}

@media (prefers-reduced-motion: reduce) {
  .parlor-account-ambient .pip { animation: none !important; }
}

/* ── Hero header ──────────────────────────────────────────────────── */
.parlor-account-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: clamp(36px, 5vw, 64px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.parlor-account-avatar {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold) 0%, #a07a30 100%);
  border: 1px solid var(--gold-hi);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 0 4px rgba(10, 9, 8, 0.85),
    inset 0 0 0 5px var(--gold-hi);
}

.parlor-account-avatar span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--gold-hi);
  letter-spacing: 0.02em;
}

.parlor-account-hero-copy h1 {
  font-size: clamp(40px, 5vw, 60px);
  margin: 4px 0 10px;
}

.parlor-account-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--paper-dim);
  font-size: 13.5px;
  letter-spacing: 0.02em;
}

.parlor-account-meta .dot { color: var(--gold-dim); }

.parlor-tier-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.08);
  color: var(--gold-hi);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.parlor-tier-pill .suit {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 0.8;
}

.parlor-account-signout {
  align-self: start;
  margin-top: 6px;
}

/* ── Card chrome shared by all parlor cards ───────────────────────── */
.parlor-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.65), rgba(20, 17, 13, 0.78));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(239, 230, 212, 0.03);
  overflow: hidden;
}

.parlor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent);
  opacity: 0.55;
}

.parlor-card .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.parlor-card h2 {
  margin: 4px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.05;
}

.parlor-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.parlor-card-lead { color: var(--paper-dim); margin: 6px 0 0; }

.parlor-card-cta { margin-top: 12px; justify-self: start; }

/* ── Grid for the top three panels ────────────────────────────────── */
.parlor-account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  grid-template-rows: auto auto;
  gap: clamp(18px, 2vw, 28px);
  margin-bottom: clamp(36px, 4vw, 56px);
}

.parlor-points-card    { grid-column: 1; grid-row: 1; }
.parlor-activity-card  { grid-column: 2; grid-row: 1 / span 2; }
.parlor-profile-card   { grid-column: 1; grid-row: 2; }

/* ── Fox Points card ──────────────────────────────────────────────── */
.parlor-points-stage {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 8px 0 4px;
}

.parlor-points-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(72px, 9vw, 108px);
  font-weight: 700;
  line-height: 0.85;
  color: var(--gold-hi);
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 18px rgba(200, 160, 74, 0.3));
}

.parlor-points-suit {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
  margin-bottom: 8px;
}

.parlor-points-value-line {
  margin: 0;
  color: var(--paper-dim);
  font-size: 14px;
}

.parlor-points-value-line strong { color: var(--gold-hi); font-weight: 600; }

.parlor-tier-progress {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.parlor-tier-progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.parlor-tier-progress-meta span:first-child { color: var(--gold); }

.parlor-tier-progress-bar {
  position: relative;
  height: 5px;
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.12);
  overflow: hidden;
}

.parlor-tier-progress-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 70%, var(--gold-hi));
  border-radius: 999px;
  transition: width 420ms cubic-bezier(.2, .7, .25, 1);
  box-shadow: 0 0 18px rgba(230, 196, 122, 0.4);
}

.parlor-tier-progress-hint {
  margin: 4px 0 0;
  font-size: 12.5px;
  color: var(--paper-dim);
}

.parlor-tier-progress-hint strong { color: var(--gold-hi); }

/* ── Rewards activity / Ways to earn ──────────────────────────────── */
.parlor-activity-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.parlor-activity-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(28, 24, 19, 0.6);
}

.parlor-activity-suit {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
  text-align: center;
}

.parlor-activity-body strong { display: block; font-family: "Playfair Display", serif; font-weight: 600; font-size: 15px; color: var(--paper); }
.parlor-activity-body small { display: block; color: var(--muted); font-size: 11.5px; margin-top: 2px; }

.parlor-activity-points {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
}
.parlor-activity-points.is-positive { color: #6fbb8e; }
.parlor-activity-points.is-negative { color: var(--crimson); }

.parlor-earn-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.parlor-earn-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(160deg, rgba(34, 27, 19, 0.7), rgba(20, 17, 13, 0.7));
  transition: border-color 200ms ease, background 200ms ease;
}

.parlor-earn-list li:hover {
  border-color: var(--gold-dim);
  background: linear-gradient(160deg, rgba(36, 32, 26, 0.85), rgba(20, 17, 13, 0.85));
}

.parlor-earn-list .suit {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
  background: rgba(200, 160, 74, 0.06);
}

.parlor-earn-list strong { display: block; color: var(--paper); font-family: "Playfair Display", serif; font-weight: 600; font-size: 17px; }
.parlor-earn-list small  { display: block; margin-top: 4px; color: var(--paper-dim); font-size: 13px; line-height: 1.5; }

/* ── Profile form ─────────────────────────────────────────────────── */
.parlor-profile-form { display: grid; gap: 14px; margin-top: 4px; }

.parlor-profile-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.parlor-profile-form .form-grid .wide { grid-column: 1 / -1; }

.parlor-profile-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--paper-dim);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.parlor-profile-checkbox input { accent-color: var(--gold); }

.parlor-profile-form button { justify-self: start; min-width: 180px; }

/* ── Order rows ───────────────────────────────────────────────────── */
.parlor-orders-list {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}

.parlor-order-row {
  display: grid;
  grid-template-columns: 28px minmax(160px, 1.5fr) minmax(0, 1.4fr) auto 24px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(28, 24, 19, 0.5);
  color: var(--paper);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.parlor-order-row:hover {
  border-color: var(--gold);
  background: rgba(36, 32, 26, 0.7);
  transform: translateX(2px);
}

.parlor-order-suit {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.75;
  text-align: center;
}

.parlor-order-head { display: grid; gap: 2px; min-width: 0; }
.parlor-order-head strong { font-family: "Playfair Display", serif; font-weight: 600; color: var(--paper); font-size: 16px; }
.parlor-order-head small  { color: var(--muted); font-size: 11.5px; letter-spacing: 0.04em; }

.parlor-order-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.parlor-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-dim);
}

.parlor-pill.is-good    { color: #6fbb8e; border-color: rgba(111, 187, 142, 0.4); background: rgba(111, 187, 142, 0.08); }
.parlor-pill.is-pending { color: var(--gold); border-color: rgba(200, 160, 74, 0.45); background: rgba(200, 160, 74, 0.08); }
.parlor-pill.is-warn    { color: var(--crimson); border-color: rgba(184, 32, 42, 0.5); background: rgba(184, 32, 42, 0.08); }
.parlor-pill.is-neutral { color: var(--paper-dim); }

.parlor-order-total {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold-hi);
  white-space: nowrap;
}

.parlor-order-arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform 180ms ease;
}

.parlor-order-row:hover .parlor-order-arrow { transform: translateX(4px); }

.parlor-orders-empty {
  display: grid;
  place-items: center;
  gap: 14px;
  padding: 40px 24px;
  text-align: center;
  border: 1px dashed var(--line-2);
  border-radius: 6px;
}

.parlor-orders-empty .suit {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  color: var(--gold);
  opacity: 0.4;
}

.parlor-support-empty {
  margin: 8px 0 0;
  color: var(--paper-dim);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 940px) {
  .parlor-account-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .parlor-points-card,
  .parlor-activity-card,
  .parlor-profile-card { grid-column: 1; grid-row: auto; }
  .parlor-account-hero { grid-template-columns: auto minmax(0, 1fr); }
  .parlor-account-signout { grid-column: 1 / -1; justify-self: start; }

  .parlor-order-row {
    grid-template-columns: 24px minmax(0, 1fr);
    grid-template-areas:
      "suit head"
      "suit status"
      "suit total";
    gap: 8px 14px;
  }
  .parlor-order-suit   { grid-area: suit; }
  .parlor-order-head   { grid-area: head; }
  .parlor-order-status { grid-area: status; }
  .parlor-order-total  { grid-area: total; justify-self: start; }
  .parlor-order-arrow  { display: none; }
}

/* ── Order-detail item rows with thumbnails ───────────────────────── */
.order-items-box h2 { margin-bottom: 14px; }

.order-line-items {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.order-line-item {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(28, 24, 19, 0.55);
  transition: border-color 180ms ease, transform 180ms ease;
}

.order-line-item:hover { border-color: var(--gold-dim); transform: translateX(2px); }

.order-line-thumb {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 4px;
  background: #f7f0e3;
  overflow: hidden;
}

.order-line-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.order-line-thumb.is-empty {
  background: linear-gradient(160deg, var(--panel-hi), var(--panel));
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 32px;
  opacity: 0.6;
}

.order-line-body { display: grid; gap: 4px; min-width: 0; }
.order-line-body a { color: var(--paper); }
.order-line-body a:hover strong { color: var(--gold-hi); }
.order-line-body strong { font-family: "Playfair Display", serif; font-weight: 600; font-size: 16px; }
.order-line-body small { color: var(--muted); font-size: 12px; }
.order-line-qty { letter-spacing: 0.08em; text-transform: uppercase; font-size: 10.5px !important; font-weight: 700; }

.order-line-total {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold-hi);
  white-space: nowrap;
}

.order-line-totals {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.order-line-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 13.5px;
  color: var(--paper-dim);
}
.order-line-totals strong { color: var(--paper); font-weight: 600; }

.order-line-totals .order-line-grand {
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-size: 15px;
}
.order-line-totals .order-line-grand strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold-hi);
  font-weight: 700;
}

/* ── Returns form: thumbnailed item rows ──────────────────────────── */
.return-items legend {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 0 0 10px;
}

.return-item-row {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: center !important;
  padding: 12px !important;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(28, 24, 19, 0.55);
  margin-bottom: 10px;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 500 !important;
}

.return-item-thumb {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background: #f7f0e3;
  overflow: hidden;
}

.return-item-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.return-item-thumb.is-empty {
  background: linear-gradient(160deg, var(--panel-hi), var(--panel));
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 28px;
  opacity: 0.6;
}

.return-item-body { display: grid; gap: 3px; min-width: 0; }
.return-item-body strong { color: var(--paper); font-family: "Playfair Display", serif; font-weight: 600; font-size: 15px; }
.return-item-body small  { color: var(--muted); font-size: 11px; text-transform: none; letter-spacing: 0; }

@media (max-width: 640px) {
  .order-line-item {
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-areas: "thumb body" "thumb total";
  }
  .order-line-thumb { grid-area: thumb; width: 64px; height: 64px; }
  .order-line-body  { grid-area: body; }
  .order-line-total { grid-area: total; justify-self: start; }
  .return-item-row { grid-template-columns: 52px minmax(0, 1fr) !important; }
  .return-item-row > :last-child { grid-column: 1 / -1; }
}

/* ════════════════════════════════════════════════════════════════════════
 * PARLOR ADMIN — 2026-06-03
 * Dashboard refresh: revenue, pulse cards, recent orders, low stock,
 * top sellers, readiness panel — all in the same parlor language as the
 * customer-facing site.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-admin {
  display: grid;
  gap: clamp(20px, 2.4vw, 32px);
  padding-bottom: 40px;
}

.parlor-admin-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.parlor-admin-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 48px);
  margin: 4px 0 8px;
}

.parlor-admin-hero .eyebrow {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
}

.parlor-admin-meta { color: var(--paper-dim); margin: 0; font-size: 14px; }

.parlor-admin-quick-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ── Revenue strip ─────────────────────────────────────────────────── */
.parlor-admin-revenue {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.parlor-admin-stat {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.7), rgba(20, 17, 13, 0.85));
  position: relative;
  overflow: hidden;
}

.parlor-admin-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent);
  opacity: 0.4;
}

.parlor-admin-stat .eyebrow {
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.parlor-admin-stat strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--gold-hi);
  line-height: 1;
}

.parlor-admin-stat small { color: var(--paper-dim); font-size: 12px; letter-spacing: 0.04em; }

.parlor-admin-stat--feature {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 160, 74, 0.16), transparent 60%),
    linear-gradient(160deg, rgba(36, 32, 26, 0.9), rgba(14, 11, 8, 0.92));
  border-color: var(--gold-dim);
}

.parlor-admin-stat--feature strong {
  font-size: clamp(36px, 4vw, 56px);
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Pulse cards ───────────────────────────────────────────────────── */
.parlor-admin-pulse {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 8px;
}

.parlor-admin-pulse-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(20, 17, 13, 0.55);
  color: var(--paper);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.parlor-admin-pulse-card:hover { border-color: var(--gold); transform: translateY(-2px); background: rgba(36, 32, 26, 0.7); }

.parlor-admin-pulse-card strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
}

.parlor-admin-pulse-card span {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.parlor-admin-pulse-card.is-warn    strong { color: var(--crimson); }
.parlor-admin-pulse-card.is-warn    { border-color: rgba(184, 32, 42, 0.4); }
.parlor-admin-pulse-card.is-pending strong { color: var(--gold-hi); }
.parlor-admin-pulse-card.is-pending { border-color: rgba(200, 160, 74, 0.4); }

/* ── Main grid: orders + stock + top sellers + readiness ─────────── */
.parlor-admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.parlor-admin-card {
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(28, 24, 19, 0.72), rgba(20, 17, 13, 0.8));
  position: relative;
  align-content: start;
}

.parlor-admin-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 30%, var(--gold-dim) 70%, transparent);
  opacity: 0.5;
}

.parlor-admin-card-head { display: flex; align-items: start; justify-content: space-between; gap: 14px; }
.parlor-admin-card-head .eyebrow { margin: 0; color: var(--gold); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; }
.parlor-admin-card-head h2 { font-family: "Playfair Display", serif; font-size: 24px; margin: 4px 0 0; }

.parlor-admin-empty { color: var(--paper-dim); margin: 6px 0; font-size: 14px; }
.parlor-admin-empty--good { color: #6fbb8e; }

/* Order rows in the dashboard */
.parlor-admin-orders { grid-column: 1; grid-row: 1; }
.parlor-admin-stock  { grid-column: 2; grid-row: 1; }
.parlor-admin-top    { grid-column: 1; grid-row: 2; }
.parlor-admin-readiness { grid-column: 2; grid-row: 2; }

.parlor-admin-order-list { display: grid; gap: 8px; }

.parlor-admin-order {
  display: grid;
  grid-template-columns: 24px minmax(0, 1.6fr) minmax(0, 1.2fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(20, 17, 13, 0.55);
  color: var(--paper);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.parlor-admin-order:hover { border-color: var(--gold); background: rgba(36, 32, 26, 0.7); transform: translateX(2px); }

.parlor-admin-order-suit {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 16px;
  opacity: 0.7;
  text-align: center;
}

.parlor-admin-order-head { display: grid; gap: 2px; min-width: 0; }
.parlor-admin-order-head strong { font-family: "Playfair Display", serif; font-weight: 600; color: var(--paper); font-size: 15px; }
.parlor-admin-order-head small  { color: var(--muted); font-size: 11px; letter-spacing: 0.04em; }

.parlor-admin-order-status { display: flex; flex-wrap: wrap; gap: 6px; }

.parlor-admin-order-total {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--gold-hi);
  white-space: nowrap;
  text-align: right;
}

/* Low-stock list */
.parlor-admin-stock-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.parlor-admin-stock-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(20, 17, 13, 0.55);
  color: var(--paper);
  transition: border-color 160ms ease, background 160ms ease;
}

.parlor-admin-stock-list a:hover { border-color: var(--gold-dim); background: rgba(36, 32, 26, 0.7); }

.parlor-admin-stock-body strong { display: block; font-family: "Playfair Display", serif; font-weight: 600; font-size: 14px; color: var(--paper); }
.parlor-admin-stock-body small  { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }

.parlor-admin-stock-qty {
  display: grid;
  place-items: center;
  min-width: 56px;
  padding: 6px 10px;
  border-radius: 4px;
  text-align: center;
}

.parlor-admin-stock-qty strong { font-family: "Playfair Display", serif; font-size: 22px; line-height: 1; }
.parlor-admin-stock-qty small  { display: block; font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }

.parlor-admin-stock-qty.is-low { background: rgba(200, 160, 74, 0.1);   border: 1px solid rgba(200, 160, 74, 0.4); color: var(--gold-hi); }
.parlor-admin-stock-qty.is-out { background: rgba(184, 32, 42, 0.12);   border: 1px solid rgba(184, 32, 42, 0.5);  color: var(--crimson); }

/* Top sellers */
.parlor-admin-top-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  counter-reset: top-rank;
}

.parlor-admin-top-list li {
  display: grid;
  grid-template-columns: 28px 56px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(20, 17, 13, 0.55);
}

.parlor-admin-top-rank {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-hi);
  text-align: center;
  line-height: 1;
}

.parlor-admin-top-thumb {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: #f7f0e3;
  overflow: hidden;
}

.parlor-admin-top-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }

.parlor-admin-top-thumb.is-empty {
  background: linear-gradient(160deg, var(--panel-hi), var(--panel));
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  opacity: 0.6;
}

.parlor-admin-top-body { display: grid; gap: 3px; min-width: 0; }
.parlor-admin-top-body strong { font-family: "Playfair Display", serif; font-weight: 600; color: var(--paper); font-size: 14px; }
.parlor-admin-top-body small  { color: var(--muted); font-size: 11.5px; }

/* Readiness */
.parlor-admin-readiness-list { display: grid; gap: 8px; }

.parlor-admin-readiness-item {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(20, 17, 13, 0.55);
  color: var(--paper);
  transition: border-color 160ms ease, background 160ms ease;
}

.parlor-admin-readiness-item:hover { border-color: var(--gold-dim); background: rgba(36, 32, 26, 0.7); }

.parlor-admin-readiness-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 10px transparent;
}

.parlor-admin-readiness-item.is-ready    .parlor-admin-readiness-dot,
.parlor-admin-readiness-item.is-pass     .parlor-admin-readiness-dot,
.parlor-admin-readiness-item.is-ok       .parlor-admin-readiness-dot { background: #6fbb8e; box-shadow: 0 0 10px rgba(111, 187, 142, 0.55); }
.parlor-admin-readiness-item.is-warn     .parlor-admin-readiness-dot,
.parlor-admin-readiness-item.is-warning  .parlor-admin-readiness-dot { background: var(--gold-hi); box-shadow: 0 0 10px rgba(230, 196, 122, 0.5); }
.parlor-admin-readiness-item.is-fail     .parlor-admin-readiness-dot,
.parlor-admin-readiness-item.is-blocked  .parlor-admin-readiness-dot { background: var(--crimson); box-shadow: 0 0 10px rgba(184, 32, 42, 0.5); }

.parlor-admin-readiness-body strong { display: block; font-family: "Playfair Display", serif; font-weight: 600; font-size: 14px; color: var(--paper); }
.parlor-admin-readiness-body small  { display: block; color: var(--paper-dim); font-size: 12px; margin-top: 2px; line-height: 1.4; }

.parlor-pill.is-ready, .parlor-pill.is-pass, .parlor-pill.is-ok { color: #6fbb8e; border-color: rgba(111, 187, 142, 0.4); background: rgba(111, 187, 142, 0.08); }
.parlor-pill.is-warning { color: var(--gold-hi); border-color: rgba(200, 160, 74, 0.45); background: rgba(200, 160, 74, 0.08); }
.parlor-pill.is-blocked, .parlor-pill.is-fail { color: var(--crimson); border-color: rgba(184, 32, 42, 0.5); background: rgba(184, 32, 42, 0.08); }

/* Responsive */
@media (max-width: 1100px) {
  .parlor-admin-revenue { grid-template-columns: 1fr 1fr; }
  .parlor-admin-pulse   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .parlor-admin-grid    { grid-template-columns: 1fr; }
  .parlor-admin-orders, .parlor-admin-stock, .parlor-admin-top, .parlor-admin-readiness { grid-column: 1; grid-row: auto; }
}

@media (max-width: 640px) {
  .parlor-admin-revenue { grid-template-columns: 1fr; }
  .parlor-admin-pulse   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .parlor-admin-order {
    grid-template-columns: 20px minmax(0, 1fr);
    grid-template-areas: "suit head" "suit status" "suit total";
  }
  .parlor-admin-order-suit  { grid-area: suit; }
  .parlor-admin-order-head  { grid-area: head; }
  .parlor-admin-order-status{ grid-area: status; }
  .parlor-admin-order-total { grid-area: total; justify-self: start; }
}

/* ════════════════════════════════════════════════════════════════════════
 * PARLOR REVIEWS — 2026-06-03
 * Editorial pull-quote layout, rating distribution bars, verified badge.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-reviews {
  display: grid;
  gap: clamp(28px, 3.4vw, 48px);
  width: min(1240px, calc(100% - 40px));
  margin: clamp(48px, 6vw, 84px) auto;
  padding-top: clamp(40px, 5vw, 72px);
  border-top: 1px solid var(--line);
  position: relative;
}

.parlor-reviews::before {
  content: "❦";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 16px;
  background: var(--ink);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

/* ── Reviews hero ──────────────────────────────────────────────────── */
.parlor-reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.parlor-reviews-hero .eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
}

.parlor-reviews-hero h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 8px 0 14px;
}

.parlor-reviews-lead { color: var(--paper-dim); margin: 0; max-width: 540px; line-height: 1.6; }

.parlor-reviews-score {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
  padding: 22px 26px;
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(36, 32, 26, 0.7), rgba(20, 17, 13, 0.85));
  min-width: 200px;
}

.parlor-reviews-avg {
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.6vw, 64px);
  font-weight: 700;
  color: var(--gold-hi);
  line-height: 0.9;
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.parlor-reviews-count { color: var(--paper-dim); font-size: 12px; letter-spacing: 0.06em; }

.parlor-reviews-stars { display: inline-flex; gap: 2px; font-size: 16px; }

/* Star with half-fill support */
.parlor-star {
  color: var(--line-2);
  position: relative;
  display: inline-block;
  width: 1em;
  line-height: 1;
}
.parlor-star.is-full { color: var(--gold-hi); text-shadow: 0 0 8px rgba(230, 196, 122, 0.4); }
.parlor-star.is-half {
  background: linear-gradient(90deg, var(--gold-hi) 0 50%, var(--line-2) 50% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Rating distribution bars ──────────────────────────────────────── */
.parlor-reviews-distribution {
  display: grid;
  gap: 6px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(20, 17, 13, 0.55);
  max-width: 480px;
}

.parlor-reviews-bar-row {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 30px;
  gap: 12px;
  align-items: center;
}

.parlor-reviews-bar-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.parlor-reviews-bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.1);
  overflow: hidden;
}

.parlor-reviews-bar > span {
  display: block;
  height: 100%;
  width: var(--pct, 0%);
  background: linear-gradient(90deg, var(--gold-dim), var(--gold) 70%, var(--gold-hi));
  border-radius: 999px;
  transition: width 360ms cubic-bezier(.2, .7, .25, 1);
}

.parlor-reviews-bar-count { color: var(--paper-dim); font-size: 12px; text-align: right; }

/* ── Reviews layout: list left, form right ─────────────────────────── */
.parlor-reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr);
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}

.parlor-reviews-list { display: grid; gap: 22px; }

/* ── Review card — editorial pull-quote ────────────────────────────── */
.parlor-review-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.6), rgba(20, 17, 13, 0.78));
  overflow: hidden;
}

.parlor-review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-dim), var(--gold) 60%, var(--gold-dim));
  opacity: 0.6;
}

.parlor-review-quote {
  position: absolute;
  top: -22px;
  right: 18px;
  font-family: "Playfair Display", serif;
  font-size: 120px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
  pointer-events: none;
}

.parlor-review-stars { display: flex; gap: 2px; font-size: 14px; }
.parlor-review-title { font-family: "Playfair Display", serif; font-weight: 700; font-size: 22px; margin: 4px 0 0; color: var(--paper); line-height: 1.2; }
.parlor-review-body  { color: var(--paper-dim); font-size: 15px; line-height: 1.65; margin: 0; }

.parlor-review-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 4px;
}

.parlor-review-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  background: #f7f0e3;
  border: 1px solid var(--line);
}

.parlor-review-reply {
  margin-top: 8px;
  padding: 14px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(200, 160, 74, 0.06);
  border-radius: 0 4px 4px 0;
}

.parlor-review-reply .eyebrow { color: var(--gold); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; }
.parlor-review-reply p { margin: 4px 0 0; color: var(--paper-dim); font-size: 14px; line-height: 1.5; }

.parlor-review-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.parlor-review-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold), #a07a30);
  border: 1px solid var(--gold-hi);
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 14px;
}

.parlor-review-attrib { display: grid; gap: 2px; min-width: 0; }
.parlor-review-attrib strong { font-family: "Playfair Display", serif; font-weight: 600; color: var(--paper); font-size: 14px; }
.parlor-review-attrib small  { color: var(--muted); font-size: 11.5px; }

.parlor-review-verified {
  margin-left: auto;
  padding: 4px 12px;
  border: 1px solid rgba(200, 160, 74, 0.45);
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.08);
  color: var(--gold-hi);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.parlor-review-empty { background: linear-gradient(170deg, rgba(28, 24, 19, 0.55), rgba(20, 17, 13, 0.75)); border-style: dashed; }
.parlor-review-empty::before { display: none; }

/* ── Review form ───────────────────────────────────────────────────── */
.parlor-review-form {
  display: grid;
  gap: 14px;
  padding: 28px 30px;
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.8), rgba(20, 17, 13, 0.85));
  position: sticky;
  top: 96px;
}

.parlor-review-form .eyebrow { color: var(--gold); font-size: 10.5px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; margin: 0; }
.parlor-review-form h3 { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; margin: 4px 0 0; }
.parlor-review-form-lead { color: var(--paper-dim); font-size: 13px; line-height: 1.55; margin: 0; }

/* Interactive star input — radio-driven, no JS needed */
.parlor-review-stars-input {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 4px;
  border: 0;
  padding: 0;
  margin: 4px 0 0;
}

.parlor-review-stars-input input { position: absolute; opacity: 0; pointer-events: none; }
.parlor-review-stars-input label {
  cursor: pointer;
  font-size: 28px;
  color: var(--line-2);
  transition: color 140ms ease, transform 140ms ease;
  text-transform: none;
  letter-spacing: 0;
  font-weight: normal;
}
.parlor-review-stars-input label:hover { transform: scale(1.1); }
.parlor-review-stars-input input:checked ~ label,
.parlor-review-stars-input label:hover,
.parlor-review-stars-input label:hover ~ label {
  color: var(--gold-hi);
  text-shadow: 0 0 12px rgba(230, 196, 122, 0.4);
}

.parlor-review-form .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.parlor-review-form .form-grid .wide { grid-column: 1 / -1; }
.parlor-review-form button { justify-self: start; min-width: 180px; }

/* Responsive */
@media (max-width: 920px) {
  .parlor-reviews-hero { grid-template-columns: 1fr; }
  .parlor-reviews-score { justify-items: start; text-align: left; }
  .parlor-reviews-layout { grid-template-columns: 1fr; }
  .parlor-review-form { position: static; }
}

@media (max-width: 540px) {
  .parlor-review-card { padding: 22px 20px; }
  .parlor-review-images { grid-template-columns: repeat(2, 1fr); }
  .parlor-review-form { padding: 22px 20px; }
  .parlor-review-stars-input label { font-size: 24px; }
}

/* ════════════════════════════════════════════════════════════════════════
 * PARLOR CONFIRMATION — 2026-06-03
 * Cinematic checkout-success moment with rotating card + timeline.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-confirmation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  width: min(100% - 40px, 1240px);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) 0;
  isolation: isolate;
  overflow: hidden;
}

.parlor-confirmation-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.parlor-confirmation-ambient .pip {
  position: absolute;
  font-family: "Playfair Display", serif;
  line-height: 1;
  filter: drop-shadow(0 0 24px rgba(200, 160, 74, 0.4));
  animation: pc-pip-drift 22s ease-in-out infinite;
}

.parlor-confirmation-ambient .pip-1 { top: 4%;   left: -3%;  font-size: clamp(160px, 22vw, 320px); color: var(--gold);    opacity: 0.06; transform: rotate(-12deg); animation-delay: 0s; }
.parlor-confirmation-ambient .pip-2 { top: 18%;  right: 8%;  font-size: clamp(120px, 14vw, 200px); color: var(--crimson); opacity: 0.07; transform: rotate(8deg);   animation-delay: 3s; }
.parlor-confirmation-ambient .pip-3 { bottom: 10%; left: 32%; font-size: clamp(100px, 12vw, 180px); color: var(--crimson); opacity: 0.05; transform: rotate(-18deg); animation-delay: 6s; }
.parlor-confirmation-ambient .pip-4 { bottom: -2%; right: 4%;  font-size: clamp(140px, 18vw, 280px); color: var(--gold);    opacity: 0.06; transform: rotate(10deg);  animation-delay: 9s; }

@keyframes pc-pip-drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(12px, -16px); }
}

/* The big card — slow float + shine */
.parlor-confirmation-card {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 7;
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
  border: 1px solid rgba(200, 160, 74, 0.5);
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 20%, rgba(200, 160, 74, 0.2), transparent 55%),
    radial-gradient(circle at 72% 80%, rgba(47, 127, 120, 0.14), transparent 60%),
    linear-gradient(160deg, #1c1813 0%, #14110d 60%, #0a0908 100%);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(200, 160, 74, 0.15);
  transform: rotate(-5deg);
  animation: pc-card-float 9s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

@keyframes pc-card-float {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-12px); }
}

.parlor-confirmation-corner {
  position: absolute;
  display: grid;
  gap: 4px;
  font-family: "Playfair Display", serif;
  color: var(--gold);
  line-height: 0.9;
  text-align: center;
}

.parlor-confirmation-corner strong { font-size: clamp(28px, 3vw, 40px); }
.parlor-confirmation-corner small  { font-size: clamp(18px, 2.2vw, 26px); }
.parlor-confirmation-corner.top-left { top: 18px; left: 18px; }
.parlor-confirmation-corner.bottom-right { bottom: 18px; right: 18px; transform: rotate(180deg); }

.parlor-confirmation-pip {
  font-family: "Playfair Display", serif;
  font-size: clamp(140px, 20vw, 220px);
  line-height: 1;
  color: var(--gold);
  filter: drop-shadow(0 8px 30px rgba(200, 160, 74, 0.4));
  animation: pc-pip-pulse 4s ease-in-out infinite;
}

@keyframes pc-pip-pulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 8px 30px rgba(200, 160, 74, 0.35)); }
  50%      { transform: scale(1.08); filter: drop-shadow(0 8px 48px rgba(230, 196, 122, 0.6)); }
}

/* Copy column */
.parlor-confirmation-copy .eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0;
}

.parlor-confirmation-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5.4vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  margin: 12px 0 16px;
  font-weight: 700;
}

.parlor-confirmation-number {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 12px;
  border: 1px solid var(--gold-dim);
  border-radius: 4px;
  background: rgba(200, 160, 74, 0.08);
  color: var(--gold-hi);
  font-family: "Inter", sans-serif;
  font-size: 0.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  vertical-align: 0.18em;
}

.parlor-confirmation-total {
  margin: 0 0 18px;
  color: var(--paper-dim);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.parlor-confirmation-total strong {
  margin-left: 6px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-hi);
}

.parlor-confirmation-lead {
  max-width: 580px;
  margin: 0 0 28px;
  color: var(--paper-dim);
  font-size: 15px;
  line-height: 1.65;
}

/* Timeline */
.parlor-confirmation-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 14px;
  max-width: 600px;
}

.parlor-confirmation-timeline li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 12px 16px 12px 14px;
  border-left: 2px solid var(--line-2);
  position: relative;
}

.parlor-confirmation-timeline li.is-done    { border-left-color: var(--gold); }
.parlor-confirmation-timeline li.is-active  { border-left-color: var(--gold-hi); }

.parlor-confirmation-step {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(20, 17, 13, 0.8);
  color: var(--muted);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 16px;
}

.parlor-confirmation-timeline li.is-done .parlor-confirmation-step,
.parlor-confirmation-timeline li.is-active .parlor-confirmation-step {
  background: linear-gradient(160deg, var(--gold), #a07a30);
  border-color: var(--gold-hi);
  color: var(--ink);
  box-shadow: 0 0 14px rgba(230, 196, 122, 0.4);
}

.parlor-confirmation-timeline strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--paper);
  font-size: 15px;
}

.parlor-confirmation-timeline small {
  display: block;
  margin-top: 2px;
  color: var(--paper-dim);
  font-size: 12.5px;
  line-height: 1.5;
}

.parlor-confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 22px;
}

.parlor-confirmation-note {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

@media (max-width: 820px) {
  .parlor-confirmation { grid-template-columns: 1fr; padding: 56px 0; }
  .parlor-confirmation-card { max-width: 240px; }
}

@media (prefers-reduced-motion: reduce) {
  .parlor-confirmation-card,
  .parlor-confirmation-pip,
  .parlor-confirmation-ambient .pip { animation: none !important; }
}

/* ════════════════════════════════════════════════════════════════════════
 * PARLOR NEWSLETTER MODAL — 2026-06-03
 * Two-column drop-list modal with stacked playing-card art.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-newsletter-backdrop {
  background:
    radial-gradient(60% 60% at 50% 40%, rgba(200, 160, 74, 0.1), transparent 70%),
    rgba(8, 7, 6, 0.94);
  backdrop-filter: blur(14px);
  z-index: 1280;
  display: grid;
  place-items: center;
  padding: 20px;
}

.parlor-newsletter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1fr);
  gap: 0;
  width: min(820px, 100%);
  max-width: 820px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(170deg, #1c1813, #14110d 70%);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 160, 74, 0.15);
  animation: parlor-newsletter-in 420ms cubic-bezier(.2, .7, .25, 1);
}

@keyframes parlor-newsletter-in {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}

.parlor-newsletter-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(20, 17, 13, 0.8);
  color: var(--paper-dim);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.parlor-newsletter-close:hover { border-color: var(--gold); color: var(--gold); background: rgba(200, 160, 74, 0.08); }

/* ── Card art column ───────────────────────────────────────────────── */
.parlor-newsletter-art {
  position: relative;
  background:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(200, 160, 74, 0.04) 8px 16px),
    radial-gradient(circle at 60% 30%, rgba(200, 160, 74, 0.18), transparent 60%),
    linear-gradient(165deg, #221b13, #0a0908);
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.parlor-newsletter-card {
  position: absolute;
  width: 60%;
  aspect-ratio: 5 / 7;
  border-radius: 10px;
  background: linear-gradient(160deg, #1c1813, #0a0908);
  border: 1px solid var(--gold-dim);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.parlor-newsletter-card .corner {
  position: absolute;
  font-weight: 700;
  font-size: 14px;
  line-height: 0.9;
  text-align: center;
  color: inherit;
}

.parlor-newsletter-card .corner small { display: block; font-size: 12px; margin-top: 2px; }
.parlor-newsletter-card .corner.top-left { top: 10px; left: 12px; }
.parlor-newsletter-card .corner.bottom-right { bottom: 10px; right: 12px; transform: rotate(180deg); }

.parlor-newsletter-card .pip {
  font-size: 64px;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 0 18px rgba(200, 160, 74, 0.4));
}
.parlor-newsletter-card .pip.pip-red { color: var(--crimson); filter: drop-shadow(0 0 18px rgba(184, 32, 42, 0.4)); }

.parlor-newsletter-card--back  { transform: translate(-22%, 4%) rotate(-14deg); z-index: 1; opacity: 0.85; }
.parlor-newsletter-card--front { transform: translate(18%, -2%) rotate(8deg);  z-index: 2; color: var(--gold-hi); }
.parlor-newsletter-card--front { border-color: var(--gold-hi); background: linear-gradient(160deg, #2a2118, #14110d); }

.parlor-newsletter-fleuron {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: var(--gold);
  opacity: 0.55;
}

/* ── Copy column ───────────────────────────────────────────────────── */
.parlor-newsletter-copy {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  gap: 14px;
  align-content: center;
}

.parlor-newsletter-copy .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
}

.parlor-newsletter-copy h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 6px 0 0;
  color: var(--paper);
}

.parlor-newsletter-copy p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 14px;
  line-height: 1.6;
}

.parlor-newsletter-perks {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.parlor-newsletter-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-dim);
  font-size: 13.5px;
  line-height: 1.4;
}

.parlor-newsletter-perks li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  background: rgba(200, 160, 74, 0.08);
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 14px;
  flex-shrink: 0;
}

.parlor-newsletter-form { display: grid; gap: 10px; margin-top: 6px; }

.parlor-newsletter-field { display: grid; gap: 6px; }
.parlor-newsletter-field span {
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.parlor-newsletter-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.6);
  color: var(--paper);
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.parlor-newsletter-field input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 74, 0.18);
}

.parlor-newsletter-form button { justify-self: start; min-width: 180px; }

.parlor-newsletter-fine {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 720px) {
  .parlor-newsletter { grid-template-columns: 1fr; }
  .parlor-newsletter-art { min-height: 200px; }
  .parlor-newsletter-card { width: 38%; }
  .parlor-newsletter-card--back  { transform: translate(-30%, 4%) rotate(-14deg); }
  .parlor-newsletter-card--front { transform: translate(22%, -2%) rotate(8deg); }
}

/* ════════════════════════════════════════════════════════════════════════
 * WISHLIST — 2026-06-03
 * Heart toggle on cards/PDP + "Your shelf" account block.
 * ════════════════════════════════════════════════════════════════════════ */

.wish-toggle {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.7);
  border: 1px solid var(--line-2);
  color: var(--paper-dim);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(4px);
}

.wish-toggle svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.wish-toggle:hover {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: rgba(36, 32, 26, 0.85);
  transform: scale(1.08);
}

.wish-toggle[aria-pressed="true"] {
  border-color: var(--crimson);
  background: rgba(184, 32, 42, 0.18);
  color: var(--crimson);
}

.wish-toggle[aria-pressed="true"] svg {
  fill: var(--crimson);
  stroke: var(--crimson);
  animation: wish-pop 360ms cubic-bezier(.2, .9, .3, 1.4);
}

@keyframes wish-pop {
  0%   { transform: scale(0.6); }
  60%  { transform: scale(1.4); }
  100% { transform: scale(1);   }
}

/* PDP variant: full-width inline button under "Add to cart" */
.wish-pdp-button {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.wish-pdp-button svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.wish-pdp-button[aria-pressed="true"] { color: var(--crimson); border-color: var(--crimson); }
.wish-pdp-button[aria-pressed="true"] svg { fill: var(--crimson); stroke: var(--crimson); }

/* ── "Your shelf" account block ─────────────────────────────────────── */
.parlor-shelf-count {
  display: inline-grid;
  place-items: center;
  margin-left: 8px;
  min-width: 28px;
  padding: 2px 8px;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  background: rgba(200, 160, 74, 0.1);
  color: var(--gold-hi);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.parlor-shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.parlor-shelf-item {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(20, 17, 13, 0.55);
  transition: border-color 180ms ease, transform 180ms ease;
}

.parlor-shelf-item:hover { border-color: var(--gold-dim); transform: translateY(-2px); }

.parlor-shelf-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 5 / 6;
  border-radius: 4px;
  background: #f7f0e3;
  overflow: hidden;
}

.parlor-shelf-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.parlor-shelf-thumb span { font-family: "Playfair Display", serif; font-size: 36px; color: var(--gold); opacity: 0.5; }

.parlor-shelf-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--paper);
  line-height: 1.25;
}

.parlor-shelf-title:hover { color: var(--gold-hi); }

.parlor-shelf-price {
  color: var(--gold-hi);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 16px;
}

.parlor-shelf-remove {
  align-self: start;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease;
}

.parlor-shelf-remove:hover { color: var(--crimson); border-color: rgba(184, 32, 42, 0.5); }

@media (prefers-reduced-motion: reduce) {
  .wish-toggle[aria-pressed="true"] svg { animation: none; }
}

/* ════════════════════════════════════════════════════════════════════════
 * MOBILE AUDIT FIXES — 2026-06-03
 * Focused pass at 414/390/375/320px widths.
 * ════════════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  /* Hero text shouldn't push past the viewport edge */
  .hero,
  .hero-copy { word-break: normal; overflow-wrap: anywhere; }
  .hero h1 { font-size: clamp(34px, 9vw, 44px); line-height: 1.02; }
  .hero p:not(.eyebrow) { font-size: 14.5px; }

  /* Account / login forms: links + buttons must wrap, not clip */
  .auth-card,
  .auth-form,
  .login-card {
    width: 100% !important;
    padding: clamp(20px, 5vw, 28px) !important;
  }

  .auth-actions,
  .login-actions,
  .auth-foot,
  .auth-form-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    width: 100%;
  }

  .auth-actions a,
  .login-actions a,
  .auth-foot a,
  .auth-form-footer a { white-space: normal; }

  /* PDP buy panel — wishlist + add-to-cart buttons stack rather than crowd */
  .add-form { grid-template-columns: 1fr; }
  .wish-pdp-button { margin-top: 0; }

  /* Newsletter modal: card art column compresses heavily */
  .parlor-newsletter-art {
    min-height: 160px;
    padding: 16px;
  }
  .parlor-newsletter-card { width: 44%; }
  .parlor-newsletter-copy { padding: 24px 22px; }

  /* Account dashboard hero: avatar above the copy on phones */
  .parlor-account-hero {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .parlor-account-avatar { width: 72px; height: 72px; }
  .parlor-account-avatar span { font-size: 26px; }
  .parlor-account-hero h1 { font-size: 32px; }
  .parlor-account-meta { font-size: 12.5px; }

  /* Parlor confirmation: single column, smaller card */
  .parlor-confirmation { padding: 48px 0; }
  .parlor-confirmation-card { max-width: 200px; }
  .parlor-confirmation-copy h1 { font-size: 36px; }
  .parlor-confirmation-actions { flex-direction: column; }
  .parlor-confirmation-actions .button { width: 100%; }

  /* Reviews hero score panel — no longer right-aligned */
  .parlor-reviews-score { width: 100%; }

  /* Cart drawer full-width fallback (already covered, reinforced) */
  .bf52-drawer { width: 100vw; border-left: 0; }

  /* Search box in header gets full row */
  .header-search { grid-column: 1 / -1; }

  /* Filter / refine block inside catalog */
  .catalog-shell .filters {
    position: static;
    margin-bottom: 14px;
  }

  /* Wish toggle on cards keeps a comfortable tap target */
  .wish-toggle { width: 38px; height: 38px; top: 10px; right: 10px; }
  .wish-toggle svg { width: 18px; height: 18px; }

  /* Section paddings collapse */
  .section-head { padding: 40px 0 12px; }
  .product-grid { gap: 14px; padding-bottom: 40px; }

  /* Make button rows wrap reliably */
  .hero-actions,
  .buy-panel .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }

  /* Marquee track speed — slower so the long lines are readable */
  .parlor-marquee-track { animation-duration: 60s; }

  /* PDP gallery — drop the floating suits at phone widths so they don't crowd */
  .gallery-floating { display: none; }
}

@media (max-width: 420px) {
  /* Trust strip stacks fully */
  .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    margin-top: 0;
  }

  /* Parlor confirmation timeline more compact */
  .parlor-confirmation-timeline li { padding: 10px 12px 10px 10px; gap: 12px; }
  .parlor-confirmation-step { width: 28px; height: 28px; font-size: 13px; }

  /* Parlor reviews layout */
  .parlor-reviews { width: calc(100% - 24px); }
  .parlor-review-card { padding: 20px 18px; }
  .parlor-review-foot { gap: 10px; }
  .parlor-review-verified { margin-left: 0; }

  /* Footer columns stack on the smallest phones */
  .site-footer { grid-template-columns: 1fr; padding: 32px 20px 24px; }
  .site-footer nav { justify-content: flex-start; }
}

@media (max-width: 360px) {
  /* Smallest phones: shrink the main brand wordmark a touch */
  .brand strong { font-size: 16px; }
  .brand small  { font-size: 9.5px; letter-spacing: 0.16em; }
}

/* ════════════════════════════════════════════════════════════════════════
 * ADMIN ORDERS DRAWER — 2026-06-03
 * Slide-in quick-view for any order row.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-admin-orders--full .parlor-admin-order-list { gap: 6px; }

.parlor-admin-order--button {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  cursor: pointer;
  font: inherit;
}

.parlor-admin-order--button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.bf52-admin-order-drawer {
  width: min(540px, 100vw);
}

.bf52-admin-order-drawer .bf52-drawer-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
}

.parlor-admin-order-drawer-body {
  overflow-y: auto;
  padding: 20px 24px 24px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.parlor-admin-order-section {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(20, 17, 13, 0.55);
}

.parlor-admin-order-section .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.parlor-admin-order-section h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.parlor-admin-order-section .order-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--paper);
  font-size: 13px;
}

.parlor-admin-order-section .order-line:last-of-type { border-bottom: 0; }
.parlor-admin-order-section .order-line strong { color: var(--gold-hi); font-family: "Playfair Display", serif; font-weight: 700; }
.parlor-admin-order-section .order-line small  { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }

.parlor-admin-order-section.grand {
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.85), rgba(20, 17, 13, 0.92));
  border-color: var(--gold-dim);
}

.parlor-admin-order-section.grand .order-line strong {
  font-size: 22px;
}

.parlor-admin-order-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  font-size: 12.5px;
  color: var(--paper-dim);
}

.parlor-admin-order-meta span { display: grid; gap: 2px; }
.parlor-admin-order-meta strong { color: var(--paper); font-family: "Inter", sans-serif; font-weight: 600; font-size: 13px; }
.parlor-admin-order-meta small  { color: var(--muted); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }

.parlor-admin-order-quick-form {
  display: grid;
  gap: 12px;
}

.parlor-admin-order-quick-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.parlor-admin-order-quick-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.parlor-admin-order-quick-form select,
.parlor-admin-order-quick-form input,
.parlor-admin-order-quick-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.5);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.parlor-admin-order-quick-form select:focus,
.parlor-admin-order-quick-form input:focus,
.parlor-admin-order-quick-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 74, 0.18);
}

.parlor-admin-order-quick-form .wide { grid-column: 1 / -1; }

.parlor-admin-order-drawer-foot {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 24px 22px;
  border-top: 1px solid var(--line);
  background: rgba(10, 9, 8, 0.5);
}

.parlor-admin-order-drawer-foot .button { flex: 1; min-width: 0; }
.parlor-admin-order-drawer-foot .button.ghost { flex: 0 0 auto; }

/* ════════════════════════════════════════════════════════════════════════
 * WISHLIST SHARE + PUBLIC SHELF — 2026-06-03
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-shelf-share {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px dashed var(--gold-dim);
  border-radius: 5px;
  background: rgba(200, 160, 74, 0.05);
}

.parlor-shelf-share-eyebrow {
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.parlor-shelf-share-row {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.parlor-shelf-share-row input {
  flex: 1;
  min-width: 200px;
  padding: 9px 12px;
  border: 1px solid var(--line-2);
  border-radius: 4px;
  background: rgba(10, 9, 8, 0.5);
  color: var(--paper-dim);
  font-family: "Inter", sans-serif;
  font-size: 12.5px;
  outline: none;
}

.parlor-shelf-share-row input:focus { border-color: var(--gold); }

.parlor-shelf-share small { color: var(--muted); font-size: 11.5px; line-height: 1.5; }

/* ── Public shelf page ────────────────────────────────────────────── */
.parlor-public-shelf {
  width: min(1200px, calc(100% - 40px));
  margin: clamp(48px, 6vw, 80px) auto clamp(40px, 5vw, 64px);
  position: relative;
}

.parlor-public-shelf-hero {
  text-align: center;
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.parlor-public-shelf-hero .eyebrow {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.parlor-public-shelf-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 60px);
  margin: 10px 0 12px;
  font-weight: 700;
}

.parlor-public-shelf-lead { color: var(--paper-dim); font-size: 14.5px; }

.parlor-public-shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.parlor-public-shelf-item {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(170deg, rgba(36, 32, 26, 0.6), rgba(20, 17, 13, 0.8));
  transition: border-color 180ms ease, transform 180ms ease;
}

.parlor-public-shelf-item:hover { border-color: var(--gold-dim); transform: translateY(-2px); }

.parlor-public-shelf-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  background: #f7f0e3;
  overflow: hidden;
}

.parlor-public-shelf-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.parlor-public-shelf-thumb span { font-family: "Playfair Display", serif; font-size: 48px; color: var(--gold); opacity: 0.5; }

.parlor-public-shelf-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--paper);
  line-height: 1.25;
}

.parlor-public-shelf-title:hover { color: var(--gold-hi); }

.parlor-public-shelf-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 2px;
}

.parlor-public-shelf-price {
  color: var(--gold-hi);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 17px;
}

.parlor-public-shelf-avail {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6fbb8e;
}

.parlor-public-shelf-avail.is-out { color: var(--crimson); }

.parlor-public-shelf-empty {
  text-align: center;
  padding: 60px 24px;
  color: var(--paper-dim);
}

.parlor-public-shelf-foot {
  margin-top: 36px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════════════════
 * PARLOR PRODUCT EDITOR — 2026-06-03
 * Sticky save bar, variant column headers, refined image cards.
 * ════════════════════════════════════════════════════════════════════════ */

.parlor-product-editor { display: grid; gap: 18px; }

.parlor-product-editor-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 22px;
  margin: -28px -28px 0;
  background: linear-gradient(180deg, rgba(14, 11, 8, 0.96), rgba(14, 11, 8, 0.92));
  border-bottom: 1px solid var(--gold-dim);
  backdrop-filter: blur(10px);
}

.parlor-product-editor-title .eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
}

.parlor-product-editor-title h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 4px 0 0;
}

.parlor-product-editor-title small {
  display: block;
  margin-top: 4px;
}
.parlor-product-editor-title small a {
  color: var(--gold);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}

.parlor-product-editor-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Variant column header row */
.parlor-product-editor .variant-list-head {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) 130px 90px 90px 80px 60px 130px 50px;
  gap: 10px;
  padding: 0 4px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.parlor-product-editor .variant-row {
  display: grid;
  grid-template-columns: minmax(160px, 1.4fr) 130px 90px 90px 80px 60px 130px 50px;
  gap: 10px;
  align-items: center;
  padding: 8px 4px;
  border-bottom: 1px dashed var(--line);
}

.parlor-product-editor .variant-row:hover { background: rgba(200, 160, 74, 0.03); }
.parlor-product-editor .variant-row input,
.parlor-product-editor .variant-row select {
  width: 100%;
  min-width: 0;
  font-size: 13px;
  padding: 8px 10px;
}

/* Image grid — proper cards with hover delete affordance */
.parlor-product-editor .admin-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.parlor-product-editor .admin-image-card {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(20, 17, 13, 0.55);
  transition: border-color 180ms ease, transform 180ms ease;
}

.parlor-product-editor .admin-image-card:hover { border-color: var(--gold-dim); transform: translateY(-2px); }

.parlor-product-editor .admin-image-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f7f0e3;
  border-radius: 4px;
  padding: 6px;
}

.parlor-product-editor .admin-image-card input[type="text"],
.parlor-product-editor .admin-image-card input:not([type]),
.parlor-product-editor .admin-image-card input[type="number"] {
  font-size: 12px;
  padding: 7px 9px;
}

.parlor-product-editor .admin-image-card label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .parlor-product-editor .variant-list-head,
  .parlor-product-editor .variant-row {
    grid-template-columns: 1fr 1fr;
  }
  .parlor-product-editor .variant-list-head { display: none; }
  .parlor-product-editor .variant-row {
    grid-template-columns: 1fr;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(20, 17, 13, 0.5);
  }
}

@media (max-width: 700px) {
  .parlor-product-editor-bar {
    position: static;
    margin: 0 0 8px;
    padding: 14px 0;
  }
}

/* — Optional periodic gold accent on a single letter inside the headline —
 * Cannot use background-clip: text on the h1 — it breaks because each
 * inline-block .reveal-letter span becomes its own clip context with no fill.
 * Instead we animate a colour shift on a single chosen letter (via
 * a class added by JS) so the headline still feels alive. */
.hero-heading-split .reveal-letter.is-accent {
  color: var(--gold);
  animation: letter-pulse 6s ease-in-out infinite 4s;
}

@keyframes letter-pulse {
  0%, 60%, 100% { color: var(--gold); text-shadow: 0 0 0 transparent; }
  72%           { color: var(--gold-hi); text-shadow: 0 0 22px rgba(230, 196, 122, 0.5); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-heading-split .reveal-letter.is-accent { animation: none; }
}
