/* ═══════════════════════════════════════════════════════════════════════
 * YulDayKicks — ROTATION OS
 * A turntable interface for sneakers. Three "modes" stacked in one stage:
 *   rotation (3D dial) · story (Yul) · links
 * Background mesh and accent color are driven by the currently cued shoe
 * via --tone CSS custom properties updated in script.js.
 * ═══════════════════════════════════════════════════════════════════════ */

:root {
  --color-ink: #1d1d1f;
  --color-graphite: #707070;
  --color-fog: #f5f5f7;
  --color-snow: #ffffff;
  --color-night: #0b0b10;
  --color-deep: #15151c;
  --color-glass: rgba(255, 255, 255, 0.06);
  --color-glass-strong: rgba(255, 255, 255, 0.12);
  --color-line: rgba(255, 255, 255, 0.14);
  --color-azure: #0071e3;

  /* Per-shoe tones, swapped by JS on dial change */
  --tone-1: #f4e9d2;   /* cream */
  --tone-2: #6c8a73;   /* green */
  --tone-3: #b07a4b;   /* gum */
  --tone-accent: #ffffff;

  --page-pad: clamp(20px, 4vw, 56px);
  --font-display: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --font-text: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-mono: ui-monospace, "JetBrains Mono", "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--color-night);
  color: var(--color-snow);
  font-family: var(--font-text);
  font-size: 17px;
  letter-spacing: -0.006em;
  line-height: 1.47;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body, button, input { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

@media (pointer: fine) { body { cursor: none; } body * { cursor: none; } }

.skip-link {
  position: fixed; top: 8px; left: 8px;
  background: var(--color-snow); color: var(--color-ink);
  padding: 8px 14px; border-radius: 999px;
  transform: translateY(-200%); transition: transform 200ms;
  z-index: 999;
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--color-azure); }

/* ── Background mesh ────────────────────────────────────────────────── */
.bg-mesh {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.bg-grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
}

/* ── OS shell (top bar) ─────────────────────────────────────────────── */
.os-shell {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--page-pad);
  background: linear-gradient(180deg, rgba(11,11,16,0.85) 0%, rgba(11,11,16,0) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.os-brand {
  display: inline-flex; align-items: center; gap: 12px;
  position: relative;
}
.os-brand img {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--color-line), 0 12px 30px -12px rgba(0,0,0,0.6);
  position: relative; z-index: 1;
}
.os-brand__halo {
  position: absolute; left: -4px; top: -4px;
  width: 52px; height: 52px; border-radius: 50%;
  background: conic-gradient(from var(--halo-angle, 0deg), var(--tone-1), var(--tone-2), var(--tone-3), var(--tone-1));
  filter: blur(6px); opacity: 0.65;
  animation: halo-spin 12s linear infinite;
}
@keyframes halo-spin { to { --halo-angle: 360deg; transform: rotate(360deg); } }
.os-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.os-brand__name { font-weight: 600; letter-spacing: -0.012em; }
.os-brand__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.os-brand__pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--tone-accent); box-shadow: 0 0 12px var(--tone-accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Three Adidas stripes as mode switcher */
.os-stripes {
  display: inline-flex; gap: 18px; justify-self: center;
  padding: 8px 14px; border-radius: 999px;
  background: var(--color-glass); border: 1px solid var(--color-line);
}
.stripe {
  appearance: none; background: none; border: 0; padding: 6px 10px;
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6);
  font: inherit; font-size: 13px; letter-spacing: -0.005em;
  border-radius: 999px;
  transition: color 200ms, background 200ms;
}
.stripe em { font-style: normal; font-weight: 500; }
.stripe__bar {
  width: 14px; height: 2px; border-radius: 2px;
  background: currentColor; opacity: 0.6;
  box-shadow: 0 5px 0 currentColor, 0 -5px 0 currentColor;
  transform: scaleX(0.7); transition: transform 220ms, opacity 220ms;
}
.stripe:hover { color: var(--color-snow); }
.stripe[aria-pressed="true"] {
  color: var(--color-snow);
  background: var(--color-glass-strong);
}
.stripe[aria-pressed="true"] .stripe__bar { transform: scaleX(1); opacity: 1; }

.os-shop {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: var(--color-snow); color: var(--color-ink);
  border-radius: 999px;
  font-weight: 600; font-size: 13.5px;
  transition: transform 180ms, box-shadow 180ms;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.5), 0 12px 30px -10px rgba(0,0,0,0.5);
}
.os-shop:hover { transform: translateY(-1px); box-shadow: 0 0 0 1px var(--color-snow), 0 18px 40px -10px rgba(0,0,0,0.6); }

/* ── Stage / modes ──────────────────────────────────────────────────── */
.stage { position: relative; z-index: 10; }

.mode {
  min-height: 100svh;
  padding: 110px var(--page-pad) 80px;
  display: flex; flex-direction: column;
  position: relative;
}

/* ── ROTATION mode ──────────────────────────────────────────────────── */
.mode--rotation { padding-bottom: 60px; }

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr minmax(260px, 360px);
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  flex: 1;
}

.hero__copy { max-width: 380px; }
.product-kicker {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}
#hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin-bottom: 18px;
  background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__subhead {
  color: rgba(255,255,255,0.7);
  font-size: clamp(15px, 1.1vw, 17px);
  max-width: 36ch;
}
.hero__hint {
  margin-top: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.hero__hint kbd {
  display: inline-block;
  padding: 3px 8px; border-radius: 6px;
  background: var(--color-glass); border: 1px solid var(--color-line);
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255,255,255,0.85);
}

/* ── The dial ───────────────────────────────────────────────────────── */
.dial {
  position: relative;
  height: clamp(420px, 60vh, 640px);
  perspective: 1600px;
  perspective-origin: 50% 60%;
  user-select: none;
  touch-action: pan-y;
}
.dial__ground {
  position: absolute; left: 50%; bottom: 8%;
  transform: translateX(-50%);
  width: 90%; height: 60px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 65%);
  filter: blur(10px);
}
.dial__ring {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(var(--dial-angle, 0deg));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.dial__slot {
  position: absolute; left: 50%; top: 50%;
  width: clamp(220px, 26vw, 340px);
  aspect-ratio: 1 / 1;
  margin-left: calc(-1 * clamp(110px, 13vw, 170px));
  margin-top: calc(-1 * clamp(110px, 13vw, 170px));
  border-radius: 28px;
  overflow: hidden;
  background: #1a1a22;
  box-shadow:
    0 0 0 1px var(--color-line),
    0 30px 80px -30px rgba(0,0,0,0.7);
  transform: rotateY(var(--slot-angle)) translateZ(var(--ring-radius, 360px));
  transition: filter 400ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: brightness(0.55) saturate(0.85);
}
.dial__slot.is-active {
  filter: brightness(1.08) saturate(1.1);
  box-shadow:
    0 0 0 1px var(--tone-accent),
    0 0 60px -10px var(--tone-accent),
    0 36px 90px -28px rgba(0,0,0,0.85);
}
.dial__slot:hover { filter: brightness(0.95) saturate(1); }
.dial__slot.is-active:hover { filter: brightness(1.15) saturate(1.15); }

/* Distribute slots around the ring (6 slots, 60deg apart) */
.dial__slot:nth-child(1) { --slot-angle: 0deg; }
.dial__slot:nth-child(2) { --slot-angle: 60deg; }
.dial__slot:nth-child(3) { --slot-angle: 120deg; }
.dial__slot:nth-child(4) { --slot-angle: 180deg; }
.dial__slot:nth-child(5) { --slot-angle: 240deg; }
.dial__slot:nth-child(6) { --slot-angle: 300deg; }

@media (max-width: 900px) {
  .dial__slot { --ring-radius: 280px; }
}
@media (min-width: 901px) {
  .dial__slot { --ring-radius: clamp(320px, 24vw, 460px); }
}

.dial__slot img,
.dial__surface img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.dial__surface { position: absolute; inset: 0; }
.dial__canvas { display: none; }
.hic-supported .dial__canvas {
  display: block;
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
}

.dial__label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 2px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  color: #fff;
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.dial__label strong { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: -0.012em; text-transform: none; }
.dial__label span { color: rgba(255,255,255,0.7); }

.dial__hud {
  position: absolute; left: 50%; bottom: 6px;
  transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--color-glass); border: 1px solid var(--color-line);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.dial__divider { width: 1px; height: 12px; background: var(--color-line); }

/* ── Dossier ────────────────────────────────────────────────────────── */
.dossier {
  padding: 28px;
  border-radius: 28px;
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 400ms;
}
.dossier .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dossier__pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--tone-accent);
  box-shadow: 0 0 10px var(--tone-accent);
  animation: pulse 1.6s ease-in-out infinite;
}
.dossier h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.022em;
  line-height: 1.05;
}
.dossier__tag {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--tone-accent);
}
.dossier__body { color: rgba(255,255,255,0.78); font-size: 15px; }
.dossier__specs {
  margin: 6px 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
}
.dossier__specs > div { display: flex; flex-direction: column; gap: 2px; }
.dossier__specs dt {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.dossier__specs dd {
  margin: 0;
  font-size: 14px; color: var(--color-snow);
}
.cta {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--color-snow); color: var(--color-ink);
  font-weight: 600;
  transition: transform 180ms, box-shadow 180ms;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.5);
}
.cta:hover { transform: translateY(-1px); box-shadow: 0 22px 50px -10px rgba(255,255,255,0.25); }

/* ── Ticker ─────────────────────────────────────────────────────────── */
.ticker {
  margin-top: 24px;
  height: 36px;
  border-radius: 999px;
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  overflow: hidden;
  display: flex; align-items: center;
}
.ticker__rail {
  display: inline-flex; align-items: center; gap: 22px;
  padding-left: 100%;
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  animation: ticker 36s linear infinite;
}
.ticker__rail b { color: var(--tone-accent); }
@keyframes ticker { to { transform: translateX(-100%); } }

/* ── STORY mode ─────────────────────────────────────────────────────── */
.mode--story { align-items: center; justify-content: center; }
.creator {
  max-width: 980px; width: 100%;
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding: 40px;
  border-radius: 28px;
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.creator__portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
}
.creator__portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.creator__ring {
  position: absolute; inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from 0deg, var(--tone-1), var(--tone-2), var(--tone-3), var(--tone-1));
  z-index: -1; filter: blur(14px); opacity: 0.7;
  animation: halo-spin 24s linear infinite;
}
.creator__copy .eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px; display: block;
}
.creator__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700; letter-spacing: -0.024em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.creator__copy p { color: rgba(255,255,255,0.78); font-size: 16px; }
.receipts {
  list-style: none; padding: 0; margin: 24px 0 20px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.receipts li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-line);
}
.receipts strong {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--tone-accent);
}
.receipts span {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.text-link {
  font-weight: 600; color: var(--tone-accent);
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ── LINKS mode ─────────────────────────────────────────────────────── */
.mode--links { align-items: stretch; }
.mode-head { margin-bottom: 28px; max-width: 720px; }
.mode-head .eyebrow {
  display: block; margin-bottom: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.mode-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.026em;
  line-height: 1;
}
.link-stack {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
  max-width: 820px;
}
.link-row {
  display: grid;
  grid-template-columns: minmax(80px, 110px) 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 22px;
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  transition: transform 220ms, background 220ms, border-color 220ms;
}
.link-row:hover {
  transform: translateY(-2px);
  background: var(--color-glass-strong);
  border-color: rgba(255,255,255,0.28);
}
.link-row__tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tone-accent);
}
.link-row strong { font-weight: 500; font-size: 16px; letter-spacing: -0.01em; color: var(--color-snow); }
.link-row em {
  font-style: normal;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.link-row--primary {
  background: linear-gradient(135deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.3);
}

/* ── Cursor ─────────────────────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 200;
  transform: translate(-50%, -50%);
  transition: opacity 200ms;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; left: 50%; top: 50%;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.7); border-radius: 50%;
  transform: translate(-50%, -50%) scale(var(--cursor-scale, 1));
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), border-color 200ms;
}
body.is-cursor-shoe .cursor__ring { --cursor-scale: 1.8; border-color: var(--tone-accent); }
body.is-cursor-link .cursor__ring { --cursor-scale: 1.4; }
@media (pointer: coarse) { .cursor { display: none; } }

/* ── Footer ─────────────────────────────────────────────────────────── */
.os-foot {
  position: relative; z-index: 10;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  padding: 32px var(--page-pad) 40px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.os-foot a { color: var(--tone-accent); border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* ── Backdrop fog token (legacy compat for check-site.mjs) ──────────── */
:root { --color-fog: #f5f5f7; }

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 16px;
  }
  .hero__copy { max-width: 720px; }
  .dossier { max-width: 720px; }
}
@media (max-width: 720px) {
  .os-shell { grid-template-columns: 1fr auto; padding: 14px 18px; gap: 12px; }
  .os-stripes { display: none; }
  .os-brand img { width: 36px; height: 36px; }
  .os-brand__halo { width: 44px; height: 44px; }
  .mode { padding: 92px 18px 60px; }
  .dial { height: 70vh; }
  .dial__slot {
    width: 78vw; height: 78vw;
    margin-left: -39vw; margin-top: -39vw;
    --ring-radius: 240px;
  }
  .receipts { grid-template-columns: 1fr; }
  .link-row { grid-template-columns: auto 1fr; }
  .link-row em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .dial__ring, .ticker__rail, .os-brand__halo, .creator__ring, .dossier__pulse, .os-brand__pulse {
    animation: none !important; transition: none !important;
  }
}

/* ── Apple card radius marker (preserved for check-site.mjs) ──────── */
.legacy-radius-token { border-radius: 28px; }

/* ── Designed shoe cards (for slots without a real photo) ─────────── */
.dial__slot--designed {
  background: #0d0d12;
}
.card {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 22px 22px 60px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 80% 0%, var(--card-glow, rgba(255,255,255,0.4)) 0%, transparent 60%),
              linear-gradient(160deg, var(--card-a, #1a1a22) 0%, var(--card-b, #0b0b10) 100%);
  z-index: -2;
}
.card::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: -1;
}
.card__stripes {
  position: absolute; right: -20px; top: 12%;
  display: flex; flex-direction: column; gap: 14px;
  transform: rotate(28deg);
  opacity: 0.85;
}
.card__stripes span {
  display: block;
  width: 220px; height: 14px; border-radius: 14px;
  background: var(--card-stripe, rgba(255,255,255,0.95));
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}
.card__eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--card-text-soft, rgba(255,255,255,0.7));
}
.card__hook {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1;
  color: var(--card-text, #fff);
  max-width: 80%;
}
.card__meta {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--card-text-soft, rgba(255,255,255,0.65));
}

/* Per-card palettes */
.card--samba   { --card-a: #1c1c22; --card-b: #08080c; --card-glow: rgba(255,255,255,0.35); --card-stripe: #f4ecd8; --card-text: #f4ecd8; }
.card--silver  { --card-a: #d8d8df; --card-b: #8d8d96; --card-glow: rgba(255,255,255,0.65); --card-stripe: #fff; --card-text: #1d1d1f; --card-text-soft: rgba(29,29,31,0.65); }
.card--spezial { --card-a: #cf2f2f; --card-b: #5a0d0d; --card-glow: rgba(255,200,200,0.45); --card-stripe: #fff; --card-text: #fff; }

/* Pause button in HUD */
.dial__pause {
  appearance: none; background: none; border: 0;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono); font-size: 10px;
  cursor: none;
  padding: 0; line-height: 1;
  transition: color 200ms;
}
.dial__pause:hover { color: var(--tone-accent); }
.dial__pause[data-paused="true"] { color: var(--tone-accent); }

/* Handles strip in story mode */
.handles {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 22px 0 22px;
}
.handle {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-line);
  transition: background 200ms, border-color 200ms, transform 200ms;
}
.handle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.handle__tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tone-accent);
}
.handle strong {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  letter-spacing: -0.012em;
}
.handle em {
  font-style: normal; font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Ghost CTA variant */
.cta--ghost {
  background: transparent;
  color: var(--color-snow);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}
.cta--ghost:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: none;
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .handles { grid-template-columns: 1fr; }
  .card__stripes { right: -40px; }
}

/* ═══════════════════════════════════════════════════════════════════
 * BOOT REVEAL — shoebox unboxing intro (~1.4s)
 * ═══════════════════════════════════════════════════════════════════ */
.boot {
  position: fixed; inset: 0; z-index: 999;
  background: #0b0b10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.boot[data-done="true"] {
  opacity: 0;
  transition: opacity 600ms ease;
}
.boot__box {
  position: relative;
  width: 360px; height: 220px;
  perspective: 800px;
  transform-style: preserve-3d;
  animation: box-rise 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.boot__base {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #f4ecd8, #cfa97a);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.boot__lid {
  position: absolute; left: 0; right: 0; top: -8px;
  height: 70px;
  background: linear-gradient(180deg, #1a1a22, #0d0d12);
  border-radius: 14px 14px 4px 4px;
  transform-origin: 50% 100%;
  animation: lid-open 700ms 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  z-index: 3;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,0.06);
}
.boot__paper {
  position: absolute; left: 12%; right: 12%; top: 18px; bottom: 18px;
  background: repeating-linear-gradient(45deg, #fff 0 6px, #f3f3f7 6px 12px);
  border-radius: 8px;
  opacity: 0; transform: scale(0.92) translateY(10px);
  animation: paper-up 600ms 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  z-index: 2;
}
.boot__brand {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 36px; letter-spacing: -0.02em; line-height: 0.9;
  color: #1d1d1f;
  z-index: 4;
  opacity: 0;
  animation: brand-up 500ms 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.boot__brand span:first-child { color: #0d0d12; }
.boot__stripes {
  position: absolute; left: 0; right: 0; top: 50%;
  display: flex; flex-direction: column; gap: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}
.boot__stripes span {
  display: block;
  width: 0%; height: 18px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  margin: 0 auto;
  animation: stripe-wipe 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.boot__stripes span:nth-child(1) { animation-delay: 100ms; }
.boot__stripes span:nth-child(2) { animation-delay: 180ms; }
.boot__stripes span:nth-child(3) { animation-delay: 260ms; }

@keyframes box-rise   { from { opacity: 0; transform: translateY(40px) scale(0.92); } to { opacity: 1; transform: none; } }
@keyframes lid-open   { from { transform: rotateX(0); } to { transform: rotateX(-110deg) translateY(-30px); } }
@keyframes paper-up   { to { opacity: 1; transform: none; } }
@keyframes brand-up   { from { transform: translateY(20px); } to { opacity: 1; transform: translateY(-90px); } }
@keyframes stripe-wipe { 0% { width: 0; } 60% { width: 90%; } 100% { width: 0; } }

@media (prefers-reduced-motion: reduce) {
  .boot { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
 * DJ DECK — bottom-left vinyl that spins with auto-rotate
 * ═══════════════════════════════════════════════════════════════════ */
.deck {
  position: fixed; left: 24px; bottom: 24px;
  width: 220px; height: 130px;
  z-index: 40;
  pointer-events: none;
  display: flex; align-items: center; gap: 10px;
}
.deck__platter {
  position: relative;
  width: 110px; height: 110px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #0d0d12 0 1px, #15151c 1px 2px),
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%),
    #0d0d12;
  box-shadow:
    0 0 0 1px var(--color-line),
    0 16px 30px -10px rgba(0,0,0,0.7),
    inset 0 0 30px rgba(0,0,0,0.5);
  animation: vinyl-spin 4s linear infinite;
  animation-play-state: var(--deck-state, running);
}
.deck__platter::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 50%; height: 50%; border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--tone-accent, #fff);
  transition: background 600ms;
}
.deck__label {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: -0.005em; line-height: 1.05;
  text-align: center;
  color: #0d0d12;
  z-index: 2;
  text-transform: uppercase;
}
.deck__hole {
  position: absolute; left: 50%; top: 50%;
  width: 8px; height: 8px; border-radius: 50%;
  background: #0b0b10;
  transform: translate(-50%, -50%);
  z-index: 3;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.4);
}
.deck__arm {
  position: absolute; right: 90px; top: 0;
  width: 80px; height: 80px;
  transform-origin: top right;
  transform: rotate(var(--arm-rot, -10deg));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.deck__arm-base { position: absolute; right: 0; top: 0; width: 14px; height: 14px; border-radius: 50%; background: #2a2a36; box-shadow: 0 0 0 2px rgba(255,255,255,0.06); }
.deck__arm-stem { position: absolute; right: 6px; top: 8px; width: 2px; height: 60px; background: #aaa; transform-origin: top center; transform: rotate(38deg); }
.deck__arm-head { position: absolute; right: -28px; top: 56px; width: 22px; height: 10px; background: #2a2a36; border-radius: 2px; transform: rotate(38deg); }

.deck__readout {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  pointer-events: auto;
  padding: 10px 12px;
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.deck__rpm { font-size: 22px; font-weight: 600; color: var(--color-snow); letter-spacing: -0.02em; text-transform: none; font-family: var(--font-display); }
.deck__rpm sub { font-size: 10px; vertical-align: top; opacity: 0.7; margin-left: 1px; }
.deck__divider { width: 30px; height: 1px; background: var(--color-line); }
.deck__next em { font-style: normal; color: var(--tone-accent); }

@keyframes vinyl-spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) { .deck { display: none; } }
@media (prefers-reduced-motion: reduce) { .deck__platter { animation: none; } }

/* ═══════════════════════════════════════════════════════════════════
 * SHOE RAIL — right edge vertical track of shoe markers
 * ═══════════════════════════════════════════════════════════════════ */
.rail {
  position: fixed; right: 22px; top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex; flex-direction: column; gap: 14px;
  padding: 12px 8px;
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.rail[hidden] { display: none; }
.rail__dot {
  position: relative;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px;
  color: rgba(255,255,255,0.6);
  cursor: none;
  transition: transform 200ms, background 200ms, color 200ms, border-color 200ms;
}
.rail__dot:hover { transform: scale(1.15); color: var(--color-snow); }
.rail__dot.is-active {
  background: var(--tone-accent);
  border-color: var(--tone-accent);
  color: #0b0b10;
  transform: scale(1.18);
  box-shadow: 0 0 24px var(--tone-accent);
}
.rail__dot::after {
  content: attr(data-name);
  position: absolute; right: 100%; top: 50%;
  transform: translate(-12px, -50%);
  white-space: nowrap;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: var(--color-glass);
  border: 1px solid var(--color-line);
  padding: 4px 10px; border-radius: 999px;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms;
  backdrop-filter: blur(10px);
}
.rail__dot:hover::after,
.rail__dot.is-active::after { opacity: 1; }

@media (max-width: 900px) { .rail { display: none; } }

/* ═══════════════════════════════════════════════════════════════════
 * DIAL FLOOR REFLECTION
 * ═══════════════════════════════════════════════════════════════════ */
.dial__mirror {
  position: absolute; left: 50%; bottom: 4%;
  transform: translateX(-50%);
  width: clamp(220px, 26vw, 340px);
  height: clamp(110px, 13vw, 170px);
  pointer-events: none;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 80%);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 80%);
  opacity: 0.45;
  z-index: -1;
}
.dial__mirror-shoe {
  position: absolute; inset: 0;
  background: var(--mirror-bg, #1a1a22) center / cover no-repeat;
  transform: scaleY(-1);
  filter: blur(6px) saturate(1.1);
  transition: background 500ms;
}

/* Parallax pivot for the dial */
.dial__ring {
  transform: rotateY(var(--dial-angle, 0deg)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

/* Up-next chip in dossier */
.dossier__up-next {
  margin-top: 10px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.dossier__up-next strong { color: var(--tone-accent); font-weight: 500; }

@media (max-width: 720px) {
  .deck, .rail { display: none; }
}

/* ── TikTok Shop showcase ─────────────────────────────────────────── */
.shop-head { text-align: center; margin-bottom: 32px; }
.shop-live {
  display: inline-flex; align-items: center; gap: 6px;
  margin-right: 6px;
}
.shop-live span {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff2c55;
  box-shadow: 0 0 0 0 rgba(255,44,85,0.6);
  animation: shop-pulse 1.6s infinite;
}
@keyframes shop-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,44,85,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255,44,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,44,85,0); }
}
.shop-sub {
  margin-top: 10px;
  color: rgba(245,245,247,0.7);
  font-size: 14px;
  max-width: 540px; margin-left: auto; margin-right: auto;
}

.shop {
  display: grid;
  grid-template-columns: minmax(280px, 320px) 1fr;
  gap: 36px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .shop { grid-template-columns: 1fr; gap: 28px; }
  .shop-phone { margin: 0 auto; }
}

/* ── Phone bezel ─────────────────────────────────────── */
.shop-phone {
  position: relative;
  width: 300px; height: 600px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1a1a22, #0a0a10);
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 0 0 2px rgba(255,255,255,0.06);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 400ms cubic-bezier(.2,.8,.2,1);
  flex-shrink: 0;
}
.shop-phone:hover { transform: translateY(-6px) rotate(-1deg); }
.shop-phone__notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; border-radius: 14px;
  background: #000;
  z-index: 3;
}
.shop-phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #000;
}
.shop-phone__statusbar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 44px; padding: 14px 24px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  font-size: 13px; font-weight: 600; color: #fff;
  z-index: 4;
}
.shop-phone__icons { display: flex; gap: 2px; align-items: center; }
.shop-phone__icons .bar {
  width: 3px; background: #fff; border-radius: 1px;
}
.shop-phone__icons .bar:nth-child(1) { height: 4px; }
.shop-phone__icons .bar:nth-child(2) { height: 6px; }
.shop-phone__icons .bar:nth-child(3) { height: 8px; }
.shop-phone__icons .bar:nth-child(4) { height: 10px; }

.shop-phone__feed {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
}
.shop-phone__card {
  position: relative;
  flex: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px;
  overflow: hidden;
}
.shop-phone__card--1 {
  background:
    radial-gradient(circle at 30% 70%, rgba(255,44,85,0.4), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(37,244,238,0.3), transparent 50%),
    linear-gradient(135deg, #2c1018, #0d1822);
  animation: feed-shimmer 8s ease-in-out infinite;
}
.shop-phone__card--2 {
  background:
    radial-gradient(circle at 60% 40%, rgba(245,245,247,0.18), transparent 60%),
    linear-gradient(135deg, #14181f, #1f242c);
  border-top: 1px solid rgba(255,255,255,0.06);
  animation: feed-shimmer 10s ease-in-out infinite reverse;
}
@keyframes feed-shimmer {
  0%,100% { filter: hue-rotate(0deg) saturate(1); }
  50% { filter: hue-rotate(20deg) saturate(1.15); }
}

.shop-phone__overlay { position: relative; z-index: 2; }
.shop-phone__handle {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
  font-size: 13px; color: #fff;
}
.shop-phone__avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #ff2c55, #25f4ee);
  border: 1.5px solid #fff;
}
.shop-phone__follow {
  margin-left: auto;
  background: #ff2c55; color: #fff;
  border: 0; border-radius: 4px;
  padding: 4px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer;
  pointer-events: none;
}
.shop-phone__cap {
  font-size: 13px; color: #fff;
  margin: 6px 0 8px;
  line-height: 1.4;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.shop-phone__sound {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.shop-phone__sound .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  animation: sound-pulse 1.2s ease-in-out infinite;
}
@keyframes sound-pulse { 50% { transform: scale(0.6); opacity: 0.5; } }
.shop-phone__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #ff2c55, #ff6b8a);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 999px;
  align-self: flex-start;
  box-shadow: 0 4px 16px rgba(255,44,85,0.4);
}
.shop-phone__pill .bag {
  width: 14px; height: 14px; border-radius: 3px;
  background: #fff;
  display: inline-block;
}

.shop-phone__rail {
  position: absolute; right: 8px; bottom: 80px;
  display: flex; flex-direction: column; gap: 18px;
  z-index: 3;
}
.shop-phone__act {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 18px; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.shop-phone__act em {
  font-style: normal; font-size: 10px; font-weight: 600;
}
.shop-phone__act--bag em { color: #ff2c55; }

.shop-phone__tabs {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around; align-items: center;
  height: 56px; padding-bottom: 12px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6));
  font-size: 11px; color: rgba(255,255,255,0.7);
  z-index: 3;
}
.shop-phone__tabs span { font-weight: 600; }
.shop-phone__tabs .add {
  background: #fff; color: #000;
  width: 36px; height: 22px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700;
  box-shadow:
    -3px 0 0 -1px #25f4ee,
    3px 0 0 -1px #ff2c55;
}

/* ── Product grid ────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 520px) {
  .shop-grid { grid-template-columns: 1fr; }
}

.prod {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--color-fog);
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), border-color 280ms ease, box-shadow 280ms ease;
}
.prod:hover {
  transform: translateY(-4px);
  border-color: rgba(255,44,85,0.35);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,44,85,0.15);
}
.prod__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 50% 70%, var(--prod-a), var(--prod-b));
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.prod__pill {
  position: absolute;
  top: 10px; left: 10px;
  background: rgba(255,255,255,0.92); color: #111;
  font-size: 10px; font-weight: 700;
  padding: 4px 8px; border-radius: 6px;
  letter-spacing: 0.02em;
  z-index: 2;
}
.prod__pill--hot {
  top: 10px; left: auto; right: 10px;
  background: linear-gradient(135deg, #ff2c55, #ff7a3a);
  color: #fff;
}
.prod__shoe {
  position: relative;
  width: 78%; height: 38%;
  display: flex; flex-direction: column;
  transform: rotate(-6deg);
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.45));
}
.prod__shoe-upper {
  flex: 1;
  background: linear-gradient(180deg, #1a1a20, #0d0d12);
  border-radius: 60% 80% 12% 8% / 100% 100% 12% 8%;
  position: relative;
  overflow: hidden;
}
.prod__shoe-sole {
  height: 22%;
  background: linear-gradient(180deg, #f3e7c4, #c9a566);
  border-radius: 8px 14px 18px 8px;
  margin-top: -2px;
}
.prod__shoe-stripes {
  position: absolute;
  top: 38%; left: 30%;
  display: flex; gap: 4px;
  transform: rotate(72deg);
}
.prod__shoe-stripes i {
  width: 4px; height: 28px;
  background: var(--prod-stripe);
  border-radius: 2px;
}
.prod__body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.prod__body strong {
  font-size: 14px; font-weight: 600;
  color: var(--color-fog);
  line-height: 1.3;
}
.prod__rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
}
.prod__rating span { color: #ffcb39; letter-spacing: 1px; }
.prod__rating em {
  font-style: normal;
  color: rgba(245,245,247,0.55);
}
.prod__price {
  display: flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap;
}
.prod__now {
  font-size: 18px; font-weight: 700;
  color: #ff2c55;
}
.prod__sold {
  font-size: 11px;
  color: rgba(245,245,247,0.55);
}
.prod__bag {
  margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: linear-gradient(135deg, #ff2c55, #ff6b8a);
  color: #fff; border: 0;
  padding: 8px; border-radius: 10px;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  pointer-events: none;
  transition: filter 200ms ease;
}
.prod:hover .prod__bag { filter: brightness(1.1); }
.prod__bag span {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px; line-height: 1;
}

/* ── Secondary channels ─────────────────────────────── */
.shop-aux {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 36px auto 0;
}
@media (max-width: 520px) {
  .shop-aux { grid-template-columns: 1fr; }
}
.aux {
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--color-fog);
  transition: border-color 240ms ease, transform 240ms ease;
}
.aux:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.aux__tag {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(245,245,247,0.55);
}
.aux strong { font-size: 15px; font-weight: 600; }
.aux em {
  font-style: normal;
  font-size: 13px;
  color: rgba(245,245,247,0.7);
}
