/* =========================================================
   Prime Rewind — Landing Page Styles
   Palette: purple #6B3FA0, red #C8242F, cream #F5E8D6, ink #1A1118
   ========================================================= */

:root {
  --brand-purple: #6B3FA0;
  --brand-purple-deep: #4E2A78;
  --brand-red: #C8242F;
  --brand-red-hot: #E0333F;
  --brand-cream: #F5E8D6;
  --brand-bone: #FBF6EC;
  --brand-ink: #1A1118;
  --brand-ink-soft: #2A1D2E;
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

html { scroll-behavior: smooth; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

body {
  background: var(--brand-bone);
  color: var(--brand-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

*::selection { background: var(--brand-red); color: var(--brand-cream); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--brand-ink); color: var(--brand-cream);
  padding: 0.5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* =========================================================
   NAV
   ========================================================= */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(251, 246, 236, 0.78);
  border-bottom: 1px solid rgba(26, 17, 24, 0.06);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav-wrap.nav-scrolled {
  background: rgba(251, 246, 236, 0.95);
  border-bottom-color: rgba(26, 17, 24, 0.12);
}
.nav-link {
  color: var(--brand-ink);
  position: relative;
  padding: 0.25rem 0;
  transition: opacity 0.2s ease;
}
.nav-link:hover { opacity: 0.65; }
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand-red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  transition: transform 0.25s var(--ease-out), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand-red);
  color: var(--brand-cream);
  box-shadow: 0 6px 20px -6px rgba(200, 36, 47, 0.5);
}
.btn-primary:hover {
  background: var(--brand-red-hot);
  box-shadow: 0 14px 28px -10px rgba(200, 36, 47, 0.65);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-ink);
  border-color: var(--brand-ink);
}
.btn-ghost:hover {
  background: var(--brand-ink);
  color: var(--brand-cream);
}

.btn-dark {
  background: var(--brand-ink);
  color: var(--brand-cream);
}
.btn-dark:hover { background: var(--brand-purple-deep); }

.btn-outline-cream {
  background: transparent;
  color: var(--brand-cream);
  border-color: var(--brand-cream);
}
.btn-outline-cream:hover {
  background: var(--brand-cream);
  color: var(--brand-ink);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(180deg, var(--brand-bone) 0%, #F0E4CF 100%);
  min-height: 92vh;
  display: flex; align-items: center;
  position: relative;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 20%, rgba(107, 63, 160, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 85%, rgba(200, 36, 47, 0.12), transparent 60%);
  pointer-events: none;
}
.hero-grit {
  position: absolute; inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.07 0 0 0 0 0.09 0 0 0 0.35 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.6'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0.9rem;
  border: 1.5px solid var(--brand-ink);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--brand-cream);
}
.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
}

.hero-title {
  font-size: clamp(2.4rem, 7.5vw, 6.25rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-ink);
  margin-bottom: 1.5rem;
}
.hero-title .reveal-line {
  display: block;
  overflow: hidden;
}
.hero-title .reveal-line > span {
  display: inline-block;
  transform: translateY(105%);
  will-change: transform;
}
.hero-italic {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-purple);
}
.hero-mark {
  position: relative;
  display: inline-block;
  color: var(--brand-cream);
  padding: 0 0.1em;
  z-index: 1;
}
.hero-mark::before {
  content: ''; position: absolute; inset: 0.1em -0.05em 0.05em -0.05em;
  background: var(--brand-red);
  transform: skew(-4deg) rotate(-1.5deg);
  z-index: -1;
  border-radius: 4px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.55;
  max-width: 44rem;
  color: #3C2D38;
  margin-bottom: 2rem;
}
.hero-sub strong { color: var(--brand-ink); font-weight: 700; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  opacity: 0.72;
}

.hero-card {
  background: var(--brand-ink);
  color: var(--brand-cream);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  min-width: 260px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(26, 17, 24, 0.4);
  transform: rotate(1.5deg);
  transition: transform 0.5s var(--ease-out);
}
.hero-card:hover { transform: rotate(0deg) translateY(-6px); }
.hero-card-stamp {
  position: absolute; top: 0.9rem; right: -2.2rem;
  transform: rotate(12deg);
  background: var(--brand-red);
  color: var(--brand-cream);
  font-family: 'Space Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.25rem 2rem;
}
.hero-card-stat {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.5rem 0;
}
.hero-card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-cream);
}
.hero-card-num-text {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 600;
  color: var(--brand-red-hot);
}
.hero-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 232, 214, 0.6);
  text-transform: lowercase;
}
.hero-card-divider {
  height: 1px; background: rgba(245, 232, 214, 0.15);
  margin: 0.5rem 0;
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--brand-red);
  color: var(--brand-cream);
  border-top: 2px solid var(--brand-ink);
  border-bottom: 2px solid var(--brand-ink);
  overflow: hidden;
  padding: 1.15rem 0;
  transform: rotate(-1.5deg) translateY(-8px);
  margin-top: -1rem;
  margin-bottom: 4rem;
  box-shadow: 0 6px 0 var(--brand-ink);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.marquee-dot {
  color: var(--brand-cream);
  font-size: 1.25rem;
  opacity: 0.75;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section { padding: 5rem 0; }
@media (min-width: 768px) { .section { padding: 7rem 0; } }

.section-dark {
  background: var(--brand-ink);
  color: var(--brand-cream);
}

.section-warehouse {
  background: var(--brand-bone);
}

.section-head { max-width: 56rem; }

.eyebrow {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 1rem;
  padding-bottom: 0.3rem;
  border-bottom: 1.5px solid var(--brand-red);
}
.eyebrow-light { color: #FFB3B8; border-bottom-color: #FFB3B8; }

.section-title {
  font-size: clamp(2rem, 5.5vw, 4.25rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--brand-ink);
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-purple);
}
.section-dark .section-title em { color: var(--brand-red-hot); }
.section-dark .section-title { color: var(--brand-cream); }

.section-lede {
  font-size: 1.1rem;
  line-height: 1.55;
  color: #4A3842;
  margin-top: 1.25rem;
  max-width: 42rem;
}
.section-dark .section-lede { color: rgba(245, 232, 214, 0.8); }

/* =========================================================
   WHY CARDS
   ========================================================= */
.why-card {
  background: var(--brand-ink);
  color: var(--brand-cream);
  padding: 1.75rem;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
}
.why-card:hover { transform: translateY(-6px); background: var(--brand-purple-deep); }
.why-card:nth-child(2) { background: var(--brand-red); }
.why-card:nth-child(2):hover { background: var(--brand-red-hot); }
.why-card:nth-child(3) { background: var(--brand-purple); }
.why-card:nth-child(3):hover { background: var(--brand-purple-deep); }

.why-num {
  font-family: 'Space Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.why-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-top: auto;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.93rem;
  line-height: 1.5;
  opacity: 0.82;
}

/* =========================================================
   BINS
   ========================================================= */
.bin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .bin-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bin-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.bin-card {
  background: var(--brand-cream);
  color: var(--brand-ink);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.bin-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -30px rgba(245, 232, 214, 0.3);
}
.bin-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand-red);
}

.bin-card-accent { background: var(--brand-red); color: var(--brand-cream); }
.bin-card-accent::before { background: var(--brand-cream); }

.bin-card-premium { background: var(--brand-purple-deep); color: var(--brand-cream); }
.bin-card-premium::before { background: var(--brand-cream); }

.bin-flag {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--brand-ink);
  color: var(--brand-cream);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
}

.bin-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  display: flex; align-items: flex-start;
  gap: 0.05em;
}
.bin-price .dollar {
  font-size: 0.5em;
  margin-top: 0.25em;
  opacity: 0.7;
  font-weight: 700;
}
.bin-price-premium {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #FFD66A;
}

.bin-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.72;
  margin-bottom: 1rem;
}

.bin-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.bin-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.bin-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px dashed currentColor;
  padding-top: 0.75rem;
  font-size: 0.82rem;
  opacity: 0.75;
}
.bin-list li { padding: 0.2rem 0; }
.bin-list li::before { content: '— '; opacity: 0.5; }

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience-card {
  background: var(--brand-cream);
  padding: 2rem;
  border-radius: 16px;
  border: 1.5px solid var(--brand-ink);
  transition: transform 0.4s var(--ease-out), background 0.4s ease, color 0.4s ease;
  display: flex; flex-direction: column;
  min-height: 260px;
}
.audience-card:hover {
  transform: translateY(-6px);
  background: var(--brand-ink);
  color: var(--brand-cream);
}
.audience-card-mid {
  background: var(--brand-ink);
  color: var(--brand-cream);
}
.audience-card-mid:hover { background: var(--brand-red); }

.audience-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 0.75rem;
}
.audience-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.65rem;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}
.audience-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.88;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.audience-foot {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  opacity: 0.7;
  padding-top: 0.75rem;
  border-top: 1px dashed currentColor;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .gallery { gap: 1rem; } }
.g-item {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/5;
  grid-column: span 3;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter 0.6s ease;
  filter: saturate(0.9) contrast(1.05);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1.1); }

@media (min-width: 768px) {
  .g-1 { grid-column: span 3; aspect-ratio: 16/11; }
  .g-2 { grid-column: span 3; aspect-ratio: 16/11; }
  .g-3 { grid-column: span 2; aspect-ratio: 3/4; }
  .g-4 { grid-column: span 2; aspect-ratio: 3/4; }
  .g-5 { grid-column: span 2; aspect-ratio: 3/4; }
  .g-6 { grid-column: span 3; aspect-ratio: 16/11; }
  .g-7 { grid-column: span 3; aspect-ratio: 16/11; }
}

/* =========================================================
   DROP CTA (daily restock callout)
   ========================================================= */
.drop-cta {
  margin-top: 3rem;
  display: flex; flex-direction: column;
  gap: 1.75rem;
  padding: 2.25rem;
  background: var(--brand-ink);
  color: var(--brand-cream);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .drop-cta { flex-direction: row; align-items: center; justify-content: space-between; padding: 2.75rem 3rem; gap: 3rem; }
}
.drop-cta-body { flex: 1 1 auto; }
.drop-cta-actions { flex: 0 0 auto; align-items: flex-start; }
.drop-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(200, 36, 47, 0.3), transparent 60%),
    radial-gradient(ellipse 50% 40% at 15% 90%, rgba(107, 63, 160, 0.25), transparent 60%);
  pointer-events: none;
}
.drop-cta > * { position: relative; }
.drop-cta-body { flex: 1; min-width: 0; }
.drop-cta-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFB3B8;
  margin-bottom: 0.75rem;
}
.drop-cta-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.drop-cta-handle {
  background: var(--brand-red);
  color: var(--brand-cream);
  padding: 0 0.3em;
  border-radius: 4px;
  display: inline-block;
  transform: rotate(-1deg);
  font-weight: 700;
}
.drop-cta-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  flex-shrink: 0;
}

/* =========================================================
   REVIEWS
   ========================================================= */

.review-card {
  background: var(--brand-cream);
  border: 1.5px solid var(--brand-ink);
  border-radius: 14px;
  padding: 1.5rem;
  display: flex; flex-direction: column;
  gap: 0.75rem;
}
.review-card .stars {
  color: var(--brand-red);
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.review-card p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: 500;
}
.review-card cite {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  font-style: normal;
  opacity: 0.7;
  margin-top: auto;
}

/* =========================================================
   VISIT
   ========================================================= */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  .visit-grid { grid-template-columns: 5fr 6fr; gap: 3rem; }
}

.visit-block { margin-bottom: 2rem; }
.visit-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFB3B8;
  margin-bottom: 0.4rem;
}
.visit-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  color: var(--brand-cream);
  display: block;
}
a.visit-big:hover { color: var(--brand-red-hot); transition: color 0.2s ease; }
.visit-hours {
  font-family: 'Space Mono', monospace;
  font-size: 1.15rem;
  color: var(--brand-red-hot);
}
.visit-closed {
  font-size: 0.85rem;
  font-family: 'Space Mono', monospace;
  opacity: 0.55;
}
.visit-body {
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(245, 232, 214, 0.82);
}
.visit-link {
  display: inline-block;
  color: var(--brand-cream);
  border-bottom: 1px solid rgba(245, 232, 214, 0.3);
  padding: 0.1rem 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.visit-link:hover { color: var(--brand-red-hot); border-color: var(--brand-red-hot); }
.visit-cta { margin-top: 2rem; }

.visit-map {
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(245, 232, 214, 0.15);
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) { .visit-map { height: 100%; min-height: 520px; } }
.visit-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  border-bottom: 1.5px solid var(--brand-ink);
  padding: 1.25rem 0;
}
.faq-item:first-child { border-top: 1.5px solid var(--brand-ink); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--brand-red); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Space Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-red);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  margin-top: 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4A3842;
  max-width: 48rem;
  animation: faqIn 0.35s var(--ease-out);
}
.faq-body a {
  color: var(--brand-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  background: var(--brand-purple-deep);
  color: var(--brand-cream);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200, 36, 47, 0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(245, 232, 214, 0.12), transparent 50%);
  pointer-events: none;
}
.final-cta > * { position: relative; }

.final-title {
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0.75rem 0 1.25rem;
}
.final-title em {
  font-style: italic;
  font-weight: 500;
  color: #FFB3B8;
}
.final-addr {
  color: var(--brand-cream);
  background: var(--brand-red);
  padding: 0 0.15em;
  border-radius: 4px;
  display: inline-block;
  transform: rotate(-1deg);
}
.final-sub {
  font-family: 'Space Mono', monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
  margin-bottom: 2.25rem;
}
.final-buttons {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--brand-ink);
  color: var(--brand-cream);
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 30rem;
  opacity: 0.75;
}
.footer-head {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFB3B8;
  margin-bottom: 0.9rem;
}
.footer-body {
  font-size: 0.95rem;
  line-height: 1.55;
  opacity: 0.82;
}
.footer-link {
  display: block;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  color: var(--brand-cream);
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.footer-link:hover { opacity: 1; color: var(--brand-red-hot); }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 232, 214, 0.1);
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: space-between;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  opacity: 0.55;
}
.footer-tiny { opacity: 0.75; }

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */
.sticky-cta {
  position: fixed;
  bottom: 1rem; right: 1rem;
  z-index: 40;
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--brand-red);
  color: var(--brand-cream);
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -8px rgba(200, 36, 47, 0.5);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
}
.sticky-cta.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   REVEAL ANIMATIONS (base, JS adds .in)
   ========================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal-up.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-line > span, .marquee-track,
  .hero-card, .bin-card, .why-card, .audience-card,
  .kicker-dot, .ig-tile img, .g-item img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track { animation: none !important; }
}

/* =========================================================
   UTILITIES
   ========================================================= */
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Honeypot field — hidden from real users, visible to bots */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* =========================================================
   FORMS — newsletter + B2B
   ========================================================= */
.drop-cta-fine {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: rgba(245, 232, 214, 0.65);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.02em;
}

.email-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  width: 100%;
  max-width: 440px;
}
.email-form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(245, 232, 214, 0.2);
  background: rgba(245, 232, 214, 0.08);
  color: var(--brand-cream);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.email-form input[type="email"]::placeholder {
  color: rgba(245, 232, 214, 0.5);
}
.email-form input[type="email"]:focus {
  outline: none;
  border-color: var(--brand-red-hot);
  background: rgba(245, 232, 214, 0.12);
}
.email-form button { flex-shrink: 0; }
.email-form .form-status {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.85rem;
  font-family: 'Space Mono', monospace;
  min-height: 1.2em;
}
.email-form .form-status.success { color: #9EEAB2; }
.email-form .form-status.error { color: #FFB3B8; }

/* Audience cards are now links — make sure the cursor/interaction reads right */
a.audience-card {
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  cursor: pointer;
}
a.audience-card:hover { text-decoration: none; }
/* The mid (dark) card needs its cream text color restored — the
   a.audience-card { color: inherit } above otherwise wins on specificity. */
a.audience-card.audience-card-mid { color: var(--brand-cream); }

/* =========================================================
   B2B / WORK WITH US SECTION
   ========================================================= */
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 900px) {
  .b2b-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    margin-top: 4rem;
  }
}

.b2b-info { display: flex; flex-direction: column; gap: 1.75rem; }
.b2b-block { }
.b2b-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-red);
  margin-bottom: 0.5rem;
}
.b2b-body {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--brand-ink);
}
.b2b-link {
  color: var(--brand-ink);
  border-bottom: 1.5px solid var(--brand-red);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.b2b-link:hover { color: var(--brand-red-hot); border-color: var(--brand-red-hot); }

.b2b-form {
  background: var(--brand-cream);
  border: 1.5px solid var(--brand-ink);
  border-radius: 20px;
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .b2b-form { padding: 2.25rem; gap: 1.15rem; }
}
.b2b-field { display: flex; flex-direction: column; gap: 0.4rem; }
.b2b-field-full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .b2b-field { grid-column: 1 / -1; }
}
.b2b-field label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-ink);
  opacity: 0.75;
}
.b2b-field input,
.b2b-field select,
.b2b-field textarea {
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1.5px solid rgba(26, 17, 24, 0.18);
  background: var(--brand-bone);
  color: var(--brand-ink);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.b2b-field textarea { resize: vertical; min-height: 110px; }
.b2b-field input:focus,
.b2b-field select:focus,
.b2b-field textarea:focus {
  outline: none;
  border-color: var(--brand-red);
  background: #FFF;
}
.b2b-submit {
  grid-column: 1 / -1;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-top: 0.25rem;
}
.b2b-fallback {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--brand-ink);
  opacity: 0.7;
  border-bottom: 1px dotted currentColor;
}
.b2b-fallback:hover { opacity: 1; color: var(--brand-red); }
.b2b-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
  font-family: 'Space Mono', monospace;
  min-height: 1.2em;
}
.b2b-form .form-status.success { color: #2F7A3F; }
.b2b-form .form-status.error { color: var(--brand-red); }

/* =========================================================
   SHOP — product grid + cart drawer (products.html only)
   ========================================================= */

/* ---------- Controls: filters + sort + search ---------- */
.shop-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(26, 17, 24, 0.1);
}

.shop-controls-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.shop-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filters--style { gap: 6px; }
.shop-filter-pill--style {
  font-size: 11px;
  padding: 6px 13px;
  border-color: rgba(26, 17, 24, 0.15);
}
.shop-filter-pill--style.is-active {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: var(--brand-cream);
}

/* ---------- Search input ---------- */
.shop-search {
  position: relative;
  display: flex;
  align-items: center;
}
.shop-search-icon {
  position: absolute;
  left: 12px;
  color: rgba(26, 17, 24, 0.5);
  pointer-events: none;
}
.shop-search-input {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 12px;
  padding: 8px 14px 8px 32px;
  border-radius: 999px;
  border: 1px solid rgba(26, 17, 24, 0.22);
  background: transparent;
  color: var(--brand-ink);
  width: 200px;
  transition: border-color 0.2s ease, width 0.3s ease, background 0.2s ease;
}
.shop-search-input::placeholder {
  color: rgba(26, 17, 24, 0.45);
  font-family: 'Space Mono', ui-monospace, monospace;
}
.shop-search-input:focus {
  outline: none;
  border-color: var(--brand-purple);
  background: #fff;
  width: 240px;
}
.shop-search-input::-webkit-search-cancel-button { cursor: pointer; }

@media (max-width: 768px) {
  .shop-controls-row { gap: 10px; }
  .shop-tools { flex: 1; justify-content: flex-end; }
  .shop-search-input { width: 140px; }
  .shop-search-input:focus { width: 180px; }
}

.shop-filter-pill {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(26, 17, 24, 0.22);
  background: transparent;
  color: var(--brand-ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.shop-filter-pill:hover {
  background: rgba(107, 63, 160, 0.08);
  border-color: var(--brand-purple);
}
.shop-filter-pill:focus-visible {
  outline: 2px solid var(--brand-purple);
  outline-offset: 2px;
}
.shop-filter-pill.is-active {
  background: var(--brand-ink);
  border-color: var(--brand-ink);
  color: var(--brand-cream);
}
.shop-filter-pill.is-active:hover { background: var(--brand-purple); border-color: var(--brand-purple); }

.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}
.shop-sort-label {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 17, 24, 0.65);
}
.shop-sort-select {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 12px;
  padding: 8px 32px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 17, 24, 0.22);
  background: transparent;
  color: var(--brand-ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A1118' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.shop-sort-select:focus-visible {
  outline: 2px solid var(--brand-purple);
  outline-offset: 2px;
  border-color: var(--brand-purple);
}

.shop-count {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 17, 24, 0.55);
  margin: 18px 0 0;
}

.shop-empty-clear {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--brand-purple);
  text-decoration: underline;
  cursor: pointer;
}
.shop-empty-clear:hover { color: var(--brand-purple-deep); }

@media (max-width: 640px) {
  .shop-controls { flex-direction: column; align-items: stretch; }
  .shop-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .shop-filter-pill { flex-shrink: 0; }
  .shop-sort { justify-content: flex-end; }
}

/* ---------- Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 1.75rem;
}
@media (min-width: 768px) { .product-grid { gap: 1.5rem; margin-top: 2rem; } }

.product-grid-status,
.product-grid-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(26, 17, 24, 0.65);
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.9rem;
}
.product-grid-empty-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-ink);
  margin: 0 0 0.5rem;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(26, 17, 24, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-5px) rotate(-0.35deg);
  box-shadow: 0 22px 44px -20px rgba(26, 17, 24, 0.3);
}

.product-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brand-cream);
}
.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-media img { transform: scale(1.06); }

.product-card-img-fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-red) 100%);
}

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--brand-ink);
  color: var(--brand-bone);
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-card-badge--out { background: rgba(26, 17, 24, 0.82); }

.product-card-badge--new {
  background: var(--brand-red);
  color: var(--brand-bone);
  box-shadow: 0 4px 10px -2px rgba(200, 36, 47, 0.45);
  animation: newPulse 2s ease-in-out infinite;
}
@keyframes newPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

.product-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--brand-ink);
  margin: 0;
}
.product-card-price {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0;
}
.product-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 2px 0 0;
}
.product-card-tags span {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border: 1px solid rgba(26, 17, 24, 0.18);
  border-radius: 999px;
  color: var(--brand-ink-soft);
}
.product-card-add {
  margin-top: 10px;
  width: 100%;
  justify-content: center;
  background: var(--brand-purple);
  color: var(--brand-cream);
}
.product-card-add:hover { background: var(--brand-purple-deep); }
.product-card-add[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.3);
}

/* ---------- Cart toggle (floating) ---------- */
.cart-toggle {
  position: fixed;
  top: 92px;
  right: 20px;
  z-index: 60;
  width: 52px;
  height: 52px;
  background: var(--brand-purple);
  color: var(--brand-cream);
  border: none;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px -10px rgba(107, 63, 160, 0.6);
  transition: transform 0.2s ease, background 0.2s ease;
}
.cart-toggle:hover { background: var(--brand-purple-deep); transform: scale(1.05); }
.cart-toggle:focus-visible { outline: 2px solid var(--brand-cream); outline-offset: 3px; }

.cart-toggle-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--brand-red);
  color: var(--brand-bone);
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.cart-toggle-count.is-visible { opacity: 1; transform: scale(1); }

@keyframes cartPulse {
  0%   { transform: scale(1); }
  30%  { transform: scale(1.18); }
  60%  { transform: scale(0.96); }
  100% { transform: scale(1); }
}
.cart-toggle--pulse { animation: cartPulse 0.5s ease; }

@media (max-width: 640px) {
  .cart-toggle { top: auto; bottom: 80px; right: 14px; }
}

/* ---------- Cart drawer ---------- */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(26, 17, 24, 0.5);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
body.cart-open .cart-backdrop { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(440px, 92vw);
  background: var(--brand-bone);
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px -20px rgba(0, 0, 0, 0.3);
}
body.cart-open .cart-drawer { transform: translateX(0); }
body.cart-open { overflow: hidden; }

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid rgba(26, 17, 24, 0.1);
}
.cart-drawer-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: var(--brand-ink);
}
.cart-drawer-close {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  border-radius: 999px;
  color: var(--brand-ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-drawer-close:hover { background: rgba(26, 17, 24, 0.08); }

.cart-lines {
  flex: 1;
  overflow-y: auto;
  padding: 4px 22px;
}

.cart-notice {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--brand-red, #b33);
  color: #fff;
  font-size: 0.88rem;
  line-height: 1.35;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 200ms ease, opacity 200ms ease, padding 200ms ease;
  padding-top: 0;
  padding-bottom: 0;
}
.cart-notice.is-visible {
  max-height: 200px;
  opacity: 1;
  padding-top: 10px;
  padding-bottom: 10px;
}

.cart-empty { text-align: center; padding: 44px 10px; color: rgba(26, 17, 24, 0.7); }
.cart-empty-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0 0 6px;
}
.cart-empty-sub { margin: 0; font-size: 0.9rem; }

.cart-line {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 17, 24, 0.08);
}
.cart-line:last-child { border-bottom: none; }

.cart-line-img {
  width: 72px;
  height: 84px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--brand-cream);
}
.cart-line-img--fallback {
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-red) 100%);
}
.cart-line-body { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-line-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  color: var(--brand-ink);
  margin: 0;
  font-size: 0.95rem;
}
.cart-line-variant {
  font-size: 0.8rem;
  color: rgba(26, 17, 24, 0.65);
  margin: 0;
}
.cart-line-price {
  font-family: 'Space Mono', ui-monospace, monospace;
  color: var(--brand-ink);
  margin: 0;
}
.cart-line-qty { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.cart-qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(26, 17, 24, 0.2);
  background: transparent;
  cursor: pointer;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 1rem;
  color: var(--brand-ink);
  line-height: 1;
}
.cart-qty-btn:hover { background: rgba(26, 17, 24, 0.06); }
.cart-qty-num {
  font-family: 'Space Mono', ui-monospace, monospace;
  min-width: 1.4rem;
  text-align: center;
}
.cart-line-remove {
  margin-left: auto;
  background: none;
  border: none;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  text-decoration: underline;
  color: rgba(26, 17, 24, 0.6);
  cursor: pointer;
  padding: 0;
}
.cart-line-remove:hover { color: var(--brand-red); }

.cart-drawer-foot {
  border-top: 1px solid rgba(26, 17, 24, 0.12);
  padding: 18px 22px 22px;
  background: var(--brand-bone);
}
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.cart-subtotal-label {
  font-family: 'Space Mono', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: rgba(26, 17, 24, 0.65);
}
.cart-subtotal-value {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--brand-ink);
}
.cart-checkout {
  width: 100%;
  justify-content: center;
  background: var(--brand-red);
}
.cart-checkout:hover { background: var(--brand-red-hot); }
.cart-checkout[disabled] { opacity: 0.5; cursor: not-allowed; }
.cart-drawer-fine {
  font-size: 0.75rem;
  text-align: center;
  color: rgba(26, 17, 24, 0.55);
  margin: 10px 0 0;
  font-family: 'Space Mono', ui-monospace, monospace;
}

/* ---------- Mascot (monkey on a vine) ---------- */
.mascot {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.mascot.is-visible { opacity: 1; transform: translateY(0); }
.mascot.is-hidden { display: none; }

.mascot-swing {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  animation: mascotSwing 4.4s ease-in-out infinite;
}

.mascot-vine {
  display: none; /* hidden — mascot now sits bottom-left, vine has nothing to hang from */
}

.mascot-body {
  pointer-events: auto;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: -4px;
}

.mascot-face {
  font-size: 48px;
  line-height: 1;
  user-select: none;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.28));
  cursor: grab;
  transition: transform 0.3s ease;
}
.mascot-face:hover { transform: scale(1.08) rotate(-6deg); }
.mascot-face:active { cursor: grabbing; }

.mascot-bubble {
  position: relative;
  background: #fff;
  color: var(--brand-ink);
  padding: 10px 14px;
  border-radius: 14px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  max-width: 200px;
  margin-top: 12px;
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease, color 0.3s ease;
}
.mascot-bubble::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 14px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-right: 10px solid #fff;
  transition: border-right-color 0.3s ease;
}

.mascot-close {
  position: absolute;
  top: 60px;
  left: 60px;
  background: var(--brand-ink);
  color: var(--brand-cream);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mascot:hover .mascot-close,
.mascot.is-konami .mascot-close { opacity: 1; }

/* Konami state: upside-down face + golden bubble */
.mascot.is-konami .mascot-face {
  transform: rotate(180deg);
  animation: konamiFlip 0.6s ease-out;
}
.mascot.is-konami .mascot-bubble {
  background: #FFD34E;
  color: var(--brand-ink);
  font-weight: 700;
}
.mascot.is-konami .mascot-bubble::before { border-right-color: #FFD34E; }

@keyframes mascotSwing {
  0%, 100% { transform: rotate(-7deg); }
  50%      { transform: rotate(7deg); }
}
@keyframes konamiFlip {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(540deg) scale(1.3); }
  100% { transform: rotate(180deg) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .mascot-swing { animation: none; }
  .mascot.is-konami .mascot-face { animation: none; }
}

/* Hide on tablet-down to avoid cart-toggle collision */
@media (max-width: 1024px) {
  .mascot { display: none; }
}

/* =========================================================
   FINDS STRIP — public "Just pulled" row
   Reads from window.PrimeRewindFinds (Phase A mock store)
   ========================================================= */
.finds-strip {
  position: relative;
  padding: 28px 0 34px;
  border-top: 1px solid rgba(26, 17, 24, 0.08);
  border-bottom: 1px solid rgba(26, 17, 24, 0.08);
  background:
    linear-gradient(180deg, rgba(107, 63, 160, 0.045), transparent 30%, transparent 70%, rgba(200, 36, 47, 0.04)),
    var(--brand-bone);
  animation: findsStripIn 0.6s ease-out both;
}
.finds-strip.on-dark {
  background: var(--brand-ink);
  color: var(--brand-cream);
  border-color: rgba(245, 232, 214, 0.08);
}
@keyframes findsStripIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.finds-strip-head {
  max-width: 1200px;
  margin: 0 auto 14px;
  padding: 0 24px;
}
.finds-strip-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.finds-strip-title h3 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
}
.finds-strip-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 0 rgba(200, 36, 47, 0.55);
  animation: findsPulse 1.8s ease-out infinite;
  flex: none;
}
@keyframes findsPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 36, 47, 0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(200, 36, 47, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 36, 47, 0); }
}
.finds-strip-count {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(26, 17, 24, 0.08);
  color: inherit;
  font-weight: 700;
}
.finds-strip-sub {
  font-size: 0.875rem;
  color: rgba(26, 17, 24, 0.6);
  margin: 0;
  max-width: 620px;
}
.finds-strip.on-dark .finds-strip-sub { color: rgba(245, 232, 214, 0.7); }
.finds-strip.on-dark .finds-strip-count { background: rgba(245, 232, 214, 0.1); }

.finds-strip-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 24px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(107, 63, 160, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px)  { .finds-strip-scroll { gap: 18px; padding: 12px 28px 18px; } }
@media (min-width: 1024px) { .finds-strip-scroll { gap: 22px; padding: 14px 40px 22px; } }
.finds-strip-scroll::-webkit-scrollbar { height: 8px; }
.finds-strip-scroll::-webkit-scrollbar-track { background: transparent; }
.finds-strip-scroll::-webkit-scrollbar-thumb {
  background: rgba(107, 63, 160, 0.3);
  border-radius: 999px;
}

.find-card {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 240px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #2a1d2e;
  box-shadow: 0 6px 18px -12px rgba(26, 17, 24, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: findCardIn 0.45s ease-out both;
}
@media (min-width: 768px) {
  .find-card { width: 260px; height: 312px; border-radius: 14px; }
}
@media (min-width: 1024px) {
  .find-card { width: 300px; height: 360px; border-radius: 16px; }
}
.find-card:hover {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow: 0 14px 28px -16px rgba(26, 17, 24, 0.5);
}
.find-card-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.find-card-vibe {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(26, 17, 24, 0.78);
  color: var(--brand-bone);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Space Mono', ui-monospace, monospace;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.find-card-time {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(251, 246, 236, 0.94);
  color: var(--brand-ink);
  font-size: 0.68rem;
  font-weight: 700;
  font-family: 'Space Mono', ui-monospace, monospace;
}
.finds-strip-empty {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px 0;
  color: rgba(26, 17, 24, 0.6);
  font-size: 0.95rem;
}
.finds-strip-empty a {
  color: var(--brand-purple);
  font-weight: 700;
  text-decoration: none;
  font-family: 'Space Mono', ui-monospace, monospace;
}
.finds-strip-empty a:hover { color: var(--brand-red); }
.finds-strip.on-dark .finds-strip-empty { color: rgba(245, 232, 214, 0.65); }
.finds-strip.on-dark .finds-strip-empty a { color: var(--brand-cream); }

.finds-strip-cta {
  max-width: 1200px;
  margin: 4px auto 0;
  padding: 0 24px;
  text-align: right;
  font-size: 0.85rem;
}
.finds-strip-cta a {
  color: var(--brand-purple);
  font-weight: 700;
  text-decoration: none;
  font-family: 'Space Mono', ui-monospace, monospace;
  letter-spacing: 0.03em;
}
.finds-strip-cta a:hover { color: var(--brand-red); }
.finds-strip.on-dark .finds-strip-cta a { color: var(--brand-cream); }
.finds-strip.on-dark .finds-strip-cta a:hover { color: var(--brand-red-hot); }

@keyframes findCardIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .finds-strip, .find-card, .finds-strip-pulse { animation: none !important; }
}

/* =========================================================
   FLOOR ADMIN PWA — staff-only photo posting tool
   Lives at /floor.html, PIN-gated, purpose-built for phones.
   ========================================================= */
.floor-body {
  background: var(--brand-ink);
  color: var(--brand-cream);
  min-height: 100vh;
  min-height: 100dvh;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
.floor-screen {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.floor-screen[hidden] { display: none; }

/* PIN screen */
.floor-pin-wrap {
  max-width: 360px;
  margin: auto;
  width: 100%;
  text-align: center;
}
.floor-brand {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--brand-purple);
  font-weight: 700;
  margin-bottom: 28px;
}
.floor-pin-title {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.floor-pin-sub {
  color: rgba(245, 232, 214, 0.55);
  font-size: 0.95rem;
  margin: 0 0 26px;
}
.floor-pin-display {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.floor-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(245, 232, 214, 0.28);
  transition: background 0.12s ease, border-color 0.12s ease, transform 0.12s ease;
}
.floor-pin-dot.is-filled {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  transform: scale(1.12);
}
.floor-pin-display.is-wrong {
  animation: floorPinShake 0.45s ease-out;
}
.floor-pin-display.is-wrong .floor-pin-dot {
  border-color: var(--brand-red);
  background: var(--brand-red);
}
@keyframes floorPinShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
.floor-pin-error {
  color: var(--brand-red);
  font-size: 0.85rem;
  min-height: 1.2em;
  margin: 0 0 16px;
  font-family: 'Space Mono', ui-monospace, monospace;
}
.floor-pin-keypad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.floor-key {
  min-height: 60px;
  border: none;
  border-radius: 12px;
  background: rgba(245, 232, 214, 0.08);
  color: var(--brand-cream);
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.12s ease, transform 0.08s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.floor-key:hover { background: rgba(245, 232, 214, 0.14); }
.floor-key:active { transform: scale(0.96); background: rgba(107, 63, 160, 0.32); }
.floor-key--muted {
  font-size: 0.9rem;
  color: rgba(245, 232, 214, 0.6);
}
.floor-pin-hint {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  color: rgba(245, 232, 214, 0.32);
  margin: 0;
}

/* Capture screen */
.floor-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  max-width: 520px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.floor-head-tools {
  display: flex;
  gap: 6px;
}
.floor-text-btn {
  background: none;
  border: none;
  color: rgba(245, 232, 214, 0.6);
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.floor-text-btn:hover {
  color: var(--brand-cream);
  background: rgba(245, 232, 214, 0.06);
}
.floor-text-btn[data-action="nuke"]:hover { color: var(--brand-red); }

.floor-main {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.floor-capture-card {
  background: rgba(245, 232, 214, 0.04);
  border: 1px solid rgba(245, 232, 214, 0.08);
  border-radius: 18px;
  padding: 18px;
}

.floor-preview {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 2px dashed rgba(245, 232, 214, 0.15);
  position: relative;
  transition: border-color 0.2s ease, border-style 0.2s ease;
}
.floor-preview.has-photo {
  border-style: solid;
  border-color: var(--brand-purple);
}
.floor-preview-empty {
  color: rgba(245, 232, 214, 0.35);
  text-align: center;
  padding: 16px;
}
.floor-preview-empty p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}
.floor-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.floor-shoot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-purple);
  color: var(--brand-cream);
  border-radius: 12px;
  padding: 16px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s ease, transform 0.08s ease;
  margin-bottom: 16px;
  -webkit-tap-highlight-color: transparent;
  letter-spacing: 0.01em;
}
.floor-shoot:hover { background: var(--brand-purple-deep); }
.floor-shoot:active { transform: scale(0.98); }
.floor-shoot-icon { display: inline-flex; align-items: center; }

.floor-vibe-wrap { margin-bottom: 16px; }
.floor-vibe-label {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 232, 214, 0.55);
  margin: 0 0 8px;
}
.floor-optional {
  color: rgba(245, 232, 214, 0.35);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}
.floor-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.floor-vibe-pill {
  background: rgba(245, 232, 214, 0.06);
  border: 1px solid rgba(245, 232, 214, 0.12);
  color: var(--brand-cream);
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  padding: 7px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.floor-vibe-pill:hover {
  border-color: rgba(245, 232, 214, 0.25);
  background: rgba(245, 232, 214, 0.1);
}
.floor-vibe-pill.is-active {
  background: var(--brand-purple);
  border-color: var(--brand-purple);
  color: var(--brand-cream);
}

.floor-submit {
  width: 100%;
  background: var(--brand-red);
  color: var(--brand-cream);
  border: none;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.08s ease, opacity 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.floor-submit:hover:not(:disabled) { background: var(--brand-red-hot); }
.floor-submit:active:not(:disabled) { transform: scale(0.98); }
.floor-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.floor-status {
  text-align: center;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  color: rgba(245, 232, 214, 0.7);
  margin: 10px 0 0;
  min-height: 1.2em;
}

/* Recent grid */
.floor-recent {
  border-top: 1px solid rgba(245, 232, 214, 0.08);
  padding-top: 18px;
}
.floor-recent-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.floor-recent-head h2 {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.floor-recent-count {
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  color: rgba(245, 232, 214, 0.5);
}
.floor-recent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.floor-recent-empty {
  color: rgba(245, 232, 214, 0.35);
  font-size: 0.875rem;
  text-align: center;
  padding: 26px 0;
  grid-column: 1 / -1;
  font-family: 'Space Mono', ui-monospace, monospace;
}
.floor-recent-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
}
.floor-recent-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.floor-recent-card-meta {
  position: absolute;
  bottom: 4px;
  left: 4px;
  right: 4px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: 'Space Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  color: var(--brand-cream);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  pointer-events: none;
}
.floor-recent-card-vibe {
  background: rgba(107, 63, 160, 0.92);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.floor-recent-card-time { opacity: 0.88; font-weight: 700; }
.floor-recent-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.65);
  color: var(--brand-cream);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s ease, background 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.floor-recent-card:hover .floor-recent-delete,
.floor-recent-card:focus-within .floor-recent-delete { opacity: 1; }
.floor-recent-delete:hover { background: var(--brand-red); }

@media (hover: none) {
  /* on touch, always show delete ghost so staff can find it */
  .floor-recent-delete { opacity: 0.6; }
}

/* =========================================================
   VISIT PAGE — Best Times grid
   ========================================================= */
.times-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .times-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .times-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.time-card {
  background: rgba(245, 232, 214, 0.04);
  border: 1.5px solid rgba(245, 232, 214, 0.12);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
}
.time-card:hover {
  transform: translateY(-3px);
  background: rgba(245, 232, 214, 0.07);
  border-color: rgba(245, 232, 214, 0.22);
}
.time-slot {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-red-hot);
}
.time-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.time-tag::before {
  content: ''; width: 7px; height: 7px; border-radius: 999px; background: currentColor;
}
.time-tag--quiet { background: rgba(107, 63, 160, 0.18); color: #C9A9F0; }
.time-tag--steady { background: rgba(245, 232, 214, 0.1); color: var(--brand-cream); }
.time-tag--busy { background: rgba(224, 51, 63, 0.18); color: #FF8B92; }
.time-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--brand-cream);
  line-height: 1.15;
  margin-top: 0.1rem;
}
.time-body {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(245, 232, 214, 0.78);
}
.times-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 232, 214, 0.62);
}

/* =========================================================
   VISIT PAGE — Getting Here cards
   ========================================================= */
.getting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 640px) { .getting-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .getting-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.getting-card {
  background: var(--brand-cream);
  border: 1.5px solid rgba(26, 17, 24, 0.08);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.getting-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 36, 47, 0.4);
  box-shadow: 0 16px 40px -20px rgba(26, 17, 24, 0.18);
}
.getting-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-ink);
  color: var(--brand-cream);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.getting-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--brand-ink);
  margin-bottom: 0.5rem;
}
.getting-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(26, 17, 24, 0.75);
}
.getting-card strong { color: var(--brand-ink); font-weight: 600; }
.getting-inline-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--brand-red);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s ease;
}
.getting-inline-link:hover { color: var(--brand-red-hot); }

/* =========================================================
   IN-STORE BANNER (homepage + products page)
   ========================================================= */
.in-store-wrap {
  padding: 2.5rem 0;
}
@media (min-width: 768px) { .in-store-wrap { padding: 3.5rem 0 2rem; } }

.in-store-banner {
  background: var(--brand-ink);
  color: var(--brand-cream);
  border-radius: 22px;
  padding: 1.75rem 1.5rem 1.85rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(26, 17, 24, 0.45);
}
.in-store-banner { position: relative; z-index: 1; }
.in-store-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(200, 36, 47, 0.22), transparent 55%),
    radial-gradient(circle at 12% 82%, rgba(107, 63, 160, 0.18), transparent 50%);
  pointer-events: none;
}
.in-store-banner > * { position: relative; }

@media (min-width: 1024px) {
  .in-store-banner {
    grid-template-columns: auto 1fr auto;
    padding: 2rem 2.25rem 2.1rem;
    gap: 2rem;
  }
}

.in-store-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 3px solid var(--brand-red);
  padding-left: 1rem;
}
@media (min-width: 768px) { .in-store-stat { padding-left: 1.25rem; } }

.in-store-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--brand-cream);
  letter-spacing: -0.02em;
}
.in-store-plus {
  color: var(--brand-red-hot);
  margin-left: 0.05em;
}
.in-store-stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 232, 214, 0.65);
  margin-top: 0.45rem;
}

.in-store-body { min-width: 0; }
.in-store-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-red-hot);
  margin-bottom: 0.55rem;
}
.in-store-title {
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  color: var(--brand-cream);
  margin-bottom: 0.5rem;
}
.in-store-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-red-hot);
}
.in-store-sub {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(245, 232, 214, 0.78);
  max-width: 48ch;
}

.in-store-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
@media (min-width: 1024px) { .in-store-cta { align-items: center; gap: 0.75rem; } }

.in-store-link {
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(245, 232, 214, 0.7);
  border-bottom: 1px solid rgba(245, 232, 214, 0.25);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.in-store-link:hover { color: var(--brand-cream); border-color: var(--brand-cream); }

/* Address + map row */
.getting-map-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .getting-map-row { grid-template-columns: 5fr 7fr; gap: 2.5rem; align-items: stretch; } }

.getting-address {
  background: var(--brand-ink);
  color: var(--brand-cream);
  border-radius: 20px;
  padding: 2rem 2rem 2.25rem;
  display: flex; flex-direction: column;
  justify-content: center;
}
.getting-address-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFB3B8;
  margin-bottom: 0.6rem;
}
.getting-address-big {
  display: block;
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.15;
  color: var(--brand-cream);
  text-decoration: none;
  transition: color 0.2s ease;
}
.getting-address-big:hover { color: var(--brand-red-hot); }
.getting-address-sub {
  margin-top: 1.25rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(245, 232, 214, 0.75);
}
.getting-address-sub a {
  color: var(--brand-cream);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(200, 36, 47, 0.55);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.getting-address-sub a:hover { color: var(--brand-red-hot); }
.getting-address-actions {
  margin-top: 1.75rem;
  display: flex; flex-wrap: wrap;
  gap: 0.75rem;
}
.getting-address .btn-ghost {
  background: transparent;
  color: var(--brand-cream);
  border-color: rgba(245, 232, 214, 0.35);
}
.getting-address .btn-ghost:hover {
  background: rgba(245, 232, 214, 0.08);
  border-color: var(--brand-cream);
}

.getting-map {
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(26, 17, 24, 0.08);
  box-shadow: 0 20px 60px -20px rgba(26, 17, 24, 0.25);
}
@media (min-width: 1024px) { .getting-map { height: 100%; min-height: 420px; } }
.getting-map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.04);
}

/* =========================================================
   VISIT PAGE — Bring This checklist
   ========================================================= */
.bring-list {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .bring-list { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }

.bring-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--brand-bone);
  border: 1.5px solid rgba(26, 17, 24, 0.08);
  border-radius: 16px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}
.bring-item:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 36, 47, 0.35);
  box-shadow: 0 14px 32px -18px rgba(26, 17, 24, 0.18);
}
.bring-check {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--brand-red);
  color: var(--brand-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  box-shadow: 0 4px 12px -4px rgba(200, 36, 47, 0.5);
}
.bring-item h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-ink);
  margin-bottom: 0.3rem;
}
.bring-item p {
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(26, 17, 24, 0.72);
}

/* =========================================================
   FLOOR — Devices screen (admin)
   ========================================================= */
.floor-devices-card {
  background: rgba(245, 232, 214, 0.05);
  border: 1.5px solid rgba(245, 232, 214, 0.12);
  border-radius: 18px;
  padding: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
}
.floor-devices-intro {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(245, 232, 214, 0.75);
  margin-bottom: 1.25rem;
}
.floor-devices-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floor-devices-empty {
  font-size: 0.9rem;
  color: rgba(245, 232, 214, 0.55);
  text-align: center;
  padding: 1.5rem 0;
  font-family: 'Space Mono', monospace;
}
.floor-devices-status {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--brand-red-hot);
  text-align: center;
  min-height: 1.2em;
}

.floor-device-card {
  background: rgba(245, 232, 214, 0.04);
  border: 1.5px solid rgba(245, 232, 214, 0.1);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.floor-device-card.is-self {
  border-color: rgba(224, 51, 63, 0.5);
  background: rgba(224, 51, 63, 0.06);
}
.floor-device-card.is-revoked {
  opacity: 0.65;
}

.floor-device-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}
.floor-device-id {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.floor-device-id-text {
  font-family: 'Space Mono', monospace;
  font-size: 0.9rem;
  color: var(--brand-cream);
  letter-spacing: 0.04em;
}
.floor-device-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.floor-device-pill--self {
  background: rgba(224, 51, 63, 0.2);
  color: #FF8B92;
}
.floor-device-pill--revoked {
  background: rgba(245, 232, 214, 0.12);
  color: rgba(245, 232, 214, 0.7);
}

.floor-device-action {
  flex-shrink: 0;
  background: transparent;
  border: 1.5px solid rgba(224, 51, 63, 0.55);
  color: #FF8B92;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.floor-device-action:hover:not(:disabled) {
  background: var(--brand-red);
  color: var(--brand-cream);
  border-color: var(--brand-red);
}
.floor-device-action:disabled { opacity: 0.5; cursor: default; }
.floor-device-action--unrevoke {
  border-color: rgba(245, 232, 214, 0.4);
  color: var(--brand-cream);
}
.floor-device-action--unrevoke:hover:not(:disabled) {
  background: var(--brand-cream);
  color: var(--brand-ink);
  border-color: var(--brand-cream);
}
.floor-device-action-disabled {
  flex-shrink: 0;
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 232, 214, 0.5);
  padding: 0.45rem 0;
}

.floor-device-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 480px) { .floor-device-meta { grid-template-columns: repeat(4, 1fr); } }
.floor-device-meta > div { min-width: 0; }
.floor-device-meta dt {
  font-family: 'Space Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 232, 214, 0.45);
  margin-bottom: 0.15rem;
}
.floor-device-meta dd {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(245, 232, 214, 0.85);
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   HOME — slim Visit section (deep details live on /visit.html)
   ========================================================= */
.visit-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
  padding: 1rem 0;
}
@media (min-width: 768px) {
  .visit-mini {
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
  }
}
.visit-mini-body { min-width: 0; }
.visit-mini-title {
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--brand-cream);
  margin: 0.5rem 0 0.85rem;
  letter-spacing: -0.01em;
}
.visit-mini-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-red-hot);
}
.visit-mini-meta {
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(245, 232, 214, 0.78);
  max-width: 56ch;
}
.visit-mini-meta strong {
  font-family: 'Space Mono', monospace;
  font-size: 0.95rem;
  color: var(--brand-red-hot);
  letter-spacing: 0.04em;
}
.visit-mini-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
}
@media (min-width: 480px) {
  .visit-mini-actions { flex-direction: row; align-items: center; }
}

/* =========================================================
   PRODUCTS — mobile types-filter toggle
   ========================================================= */
.shop-types-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.55rem 1rem;
  background: transparent;
  border: 1.5px solid rgba(26, 17, 24, 0.18);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-ink);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.shop-types-toggle:hover { border-color: var(--brand-red); }
.shop-types-toggle .shop-types-toggle-chev { transition: transform 0.25s var(--ease-out); }
.shop-types-toggle.is-open .shop-types-toggle-chev { transform: rotate(180deg); }

@media (max-width: 767px) {
  .shop-controls-row--secondary {
    display: none;
    margin-top: 0.85rem;
  }
  .shop-controls-row--secondary.is-open { display: block; }
}
@media (min-width: 768px) {
  /* On tablet+ the toggle is irrelevant — kill it regardless of inline-flex base. */
  .shop-types-toggle { display: none !important; }
}

/* =========================================================
   GLOBAL — kill stray horizontal scroll
   The marquee + animated transforms occasionally bleed past the viewport.
   ========================================================= */
html, body { overflow-x: clip; }

/* =========================================================
   MOBILE NAV — hamburger + slide-in overlay
   ========================================================= */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid rgba(26, 17, 24, 0.15);
  border-radius: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-burger:hover { border-color: var(--brand-red); }
.nav-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand-ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s ease;
}
.nav-burger.is-open .nav-burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open .nav-burger-line:nth-child(2) { opacity: 0; }
.nav-burger.is-open .nav-burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) {
  .nav-burger { display: none !important; }
}

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--brand-ink);
  color: var(--brand-cream);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out), visibility 0s linear 0.35s;
  overflow-y: auto;
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.35s var(--ease-out), visibility 0s;
}
body.nav-mobile-open { overflow: hidden; }

.nav-mobile-inner {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 5rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
}
.nav-mobile-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1.5px solid rgba(245, 232, 214, 0.25);
  border-radius: 999px;
  color: var(--brand-cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-mobile-close:hover { border-color: var(--brand-red); background: rgba(200, 36, 47, 0.1); }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
  margin-bottom: auto;
}
.nav-mobile-link {
  display: block;
  padding: 0.85rem 0.25rem;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--brand-cream);
  border-bottom: 1px solid rgba(245, 232, 214, 0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.nav-mobile-link:hover,
.nav-mobile-link:active { color: var(--brand-red-hot); padding-left: 0.65rem; }
.nav-mobile-link[aria-current="page"] {
  color: var(--brand-red-hot);
}
.nav-mobile-link[aria-current="page"]::after {
  content: '·';
  margin-left: 0.5rem;
  opacity: 0.6;
}
.nav-mobile-foot {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nav-mobile-foot-meta {
  margin-top: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: rgba(245, 232, 214, 0.55);
  text-align: center;
  line-height: 1.6;
}
.nav-mobile-foot-meta a { color: var(--brand-cream); border-bottom: 1px solid rgba(245, 232, 214, 0.3); }

/* =========================================================
   PRODUCT CARD — make the whole card clickable for the lightbox
   ========================================================= */
.product-card[data-product-open] { cursor: pointer; }
.product-card[data-product-open]:focus-visible {
  outline: 2px solid var(--brand-red);
  outline-offset: 3px;
}
.product-card-view-hint {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(26, 17, 24, 0.85);
  color: var(--brand-cream);
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s var(--ease-out);
  white-space: nowrap;
}
.product-card[data-product-open]:hover .product-card-view-hint,
.product-card[data-product-open]:focus-visible .product-card-view-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (hover: none) {
  /* On touch devices, no hover hint — tap the card to open. */
  .product-card-view-hint { display: none; }
}

/* =========================================================
   PRODUCT DETAIL LIGHTBOX (PDP modal)
   ========================================================= */
.pdp {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.pdp.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
body.pdp-open { overflow: hidden; }
body.pdp-open .cart-toggle, body.pdp-open .mascot, body.pdp-open .sticky-cta { visibility: hidden; }

.pdp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 24, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pdp-panel {
  position: relative;
  width: min(96vw, 1120px);
  max-height: 92vh;
  max-height: 92dvh;
  background: var(--brand-bone);
  color: var(--brand-ink);
  border-radius: 22px;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.985);
  transition: transform 0.35s var(--ease-out);
}
.pdp.is-open .pdp-panel { transform: translateY(0) scale(1); }

.pdp-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 17, 24, 0.08);
  border: none;
  border-radius: 999px;
  color: var(--brand-ink);
  cursor: pointer;
  z-index: 5;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.pdp-close:hover { background: var(--brand-ink); color: var(--brand-cream); }

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 880px) {
  .pdp-grid {
    grid-template-columns: 1.15fr 1fr;
    overflow: hidden;
  }
}

.pdp-gallery {
  background: #f0e8d8;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 880px) {
  .pdp-gallery { overflow-y: auto; }
}
.pdp-gallery-main {
  position: relative;
  background: #ece2cd;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.2s ease;
}
.pdp-main-img.is-loading { opacity: 0.4; }

.pdp-thumbs {
  display: flex;
  gap: 0.55rem;
  padding: 0.85rem 1rem 1.1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pdp-thumb {
  flex: 0 0 auto;
  width: 60px;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: #e0d6bf;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb:hover { transform: translateY(-2px); }
.pdp-thumb.is-active { border-color: var(--brand-red); }

.pdp-body {
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 880px) {
  .pdp-body {
    padding: 2.5rem 2.25rem;
    overflow-y: auto;
  }
}

.pdp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  min-height: 0.5rem;
}
.pdp-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(26, 17, 24, 0.08);
  color: var(--brand-ink);
}
.pdp-tag--bin { background: rgba(200, 36, 47, 0.12); color: var(--brand-red); }
.pdp-tag--new { background: var(--brand-red); color: var(--brand-cream); }
.pdp-tag--out { background: var(--brand-ink); color: var(--brand-cream); }

.pdp-title {
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.15;
  color: var(--brand-ink);
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}
.pdp-size,
.product-card-size {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26, 17, 24, 0.6);
  margin-bottom: 0.4rem;
}
.pdp-size { font-size: 0.78rem; }
.pdp-size strong,
.product-card-size strong {
  color: var(--brand-ink);
  font-weight: 700;
  margin-left: 0.4rem;
}
.pdp-price {
  font-family: 'Space Mono', monospace;
  font-size: 1.4rem;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.pdp-description {
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(26, 17, 24, 0.78);
  margin-bottom: 2rem;
}
.pdp-description p { margin-bottom: 0.75rem; }
.pdp-description p:last-child { margin-bottom: 0; }
.pdp-description ul { padding-left: 1.25rem; margin-bottom: 0.75rem; }
.pdp-description li { margin-bottom: 0.3rem; }
.pdp-description strong { color: var(--brand-ink); font-weight: 600; }
.pdp-description-empty {
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(26, 17, 24, 0.55);
}

.pdp-actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 17, 24, 0.08);
}
.pdp-add {
  width: 100%;
  justify-content: center;
}
.pdp-add[disabled] { opacity: 0.5; cursor: default; }
.pdp-meta {
  margin-top: 0.85rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  color: rgba(26, 17, 24, 0.6);
  text-align: center;
  line-height: 1.5;
}
.pdp-meta a { color: var(--brand-red); border-bottom: 1px solid currentColor; }
.pdp-meta a:hover { color: var(--brand-red-hot); }
