/* =========================================================
   TRENDSCHIETERSNL — premium editorial streetwear design
   Monochrome, high-contrast, deep negative space, GSAP-driven
   depth & motion. No drawn/generated product imagery — real
   photography is dropped into /images/ later (see media.js).
   ========================================================= */

:root {
  --bg: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #121212;
  --bg-3: #1a1a1a;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);

  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.58);
  --text-faint: rgba(255, 255, 255, 0.3);

  --invert-bg: #ffffff;
  --invert-text: #000000;

  --font-display: "Archivo Black", "Arial Narrow", sans-serif;
  --font-editorial: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1360px;
  --edge: 24px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 112px;
  --space-9: 160px;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur-base: 360ms;
  --dur-slow: 700ms;

  --z-header: 100;
  --z-overlay: 200;
  --z-drawer: 300;
  --z-toast: 400;
}

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

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--edge);
}

@media (min-width: 900px) {
  :root { --edge: 56px; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ---------- Media slot (image-with-graceful-empty-state) ---------- */
.media-slot {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.media-slot__empty {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.05), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 2px, transparent 2px 14px);
  color: var(--text-faint);
  text-align: center;
  padding: var(--space-4);
}

.media-slot.is-empty .media-slot__empty { display: flex; }
.media-slot.is-empty img { display: none; }

.media-slot__empty svg { width: 30px; height: 30px; opacity: 0.5; }
.media-slot__empty-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.media-slot__empty-path {
  font-size: 10px;
  color: var(--text-faint);
  font-family: "SFMono-Regular", Menlo, monospace;
  opacity: 0.6;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-header);
  padding: var(--space-3) 0;
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease), backdrop-filter var(--dur-base) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  border-color: var(--line);
}

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo__mark {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.logo__tagline {
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 3px;
}

.desktop-nav {
  display: none;
  gap: var(--space-5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .desktop-nav { display: flex; }
}

.desktop-nav a {
  color: var(--text-muted);
  transition: color var(--dur-fast) var(--ease);
}
.desktop-nav a:hover, .desktop-nav a[aria-current="page"] { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: opacity var(--dur-fast) var(--ease);
}
.icon-btn:hover { opacity: 0.6; }
.icon-btn svg { width: 19px; height: 19px; }

.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 15px; height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  min-height: 48px;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.btn:active { transform: scale(0.96); }

.btn--primary { background: #fff; color: #000; }
.btn--primary:hover { background: #d9d9d9; }

.btn--outline { background: transparent; color: #fff; border: 1px solid var(--line-strong); }
.btn--outline:hover { border-color: #fff; }

.btn--block { width: 100%; }

.btn--whatsapp { background: #25d366; color: #06210f; }
.btn--whatsapp:hover { background: #33e277; }

.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

/* ---------- Hero: cinematic scene sequence ---------- */
.hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  perspective: 1800px;
}

.hero__bg-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(60% 50% at 50% 35%, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Per-scene cinematic light treatment — a distinct mood per scene,
   cross-faded by JS in step with the product transition. */
.hero__scene-glow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.scene-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.scene-glow::before {
  content: "";
  position: absolute;
  inset: -15%;
  background-repeat: repeat;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.scene-glow.is-active { opacity: 1; }

.scene-glow--0 {
  background:
    radial-gradient(48% 42% at 50% 38%, rgba(120, 20, 30, 0.55), transparent 72%),
    radial-gradient(70% 60% at 50% 100%, rgba(40, 6, 10, 0.6), transparent 70%),
    #050506;
}

.scene-glow--1 {
  background:
    radial-gradient(50% 44% at 50% 36%, rgba(150, 170, 195, 0.28), transparent 72%),
    radial-gradient(70% 60% at 50% 100%, rgba(20, 24, 30, 0.55), transparent 70%),
    #08090b;
}

.scene-glow--2 {
  background:
    radial-gradient(50% 44% at 50% 36%, rgba(150, 185, 210, 0.32), transparent 72%),
    radial-gradient(65% 55% at 50% 100%, rgba(15, 22, 30, 0.55), transparent 70%),
    #06080a;
}

.scene-glow--3 {
  background:
    radial-gradient(48% 42% at 50% 38%, rgba(70, 55, 85, 0.4), transparent 72%),
    radial-gradient(70% 60% at 50% 100%, rgba(20, 16, 24, 0.6), transparent 70%),
    #08070a;
}

/* Back typography layer — huge, bleeds off the edge, sits behind the product */
.hero__type-back {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__type-back span {
  position: absolute;
  left: -0.03em;
  bottom: -0.12em;
  font-family: var(--font-display);
  font-size: clamp(90px, 19vw, 340px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
  white-space: nowrap;
  will-change: transform;
}

/* Scene stack — one per product image, cross-faded/flown by JS.
   Product floats free: no card, no fill, no border — just the image. */
.hero__scenes {
  position: absolute;
  inset: 0;
  z-index: 2;
  transform-style: preserve-3d;
}

.cine-scene {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.cine-scene__tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Bounded on width AND height so the image is always fully visible —
   a rigid aspect-ratio box can grow taller than the viewport and get
   clipped top/bottom by .hero's overflow:hidden. object-fit:contain
   on the img then does the rest, regardless of the source photo's
   real aspect ratio. */
.cine-scene__stage {
  width: min(60vw, 920px);
  height: min(74vh, 820px);
  max-width: 92vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .media-slot {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  overflow: visible;
}

.hero .media-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 50px 80px rgba(0, 0, 0, 0.55));
}

.hero .media-slot__empty {
  background: radial-gradient(50% 50% at 50% 55%, rgba(255, 255, 255, 0.05), transparent 72%);
}

/* Front typography layer — sits in front of the product, anchored
   opposite the back wordmark for an asymmetric composition. Holds
   the mood/colorway name, a subtle brand tagline and the CTA. */
.hero__type-front {
  position: absolute;
  right: var(--edge);
  bottom: var(--space-6);
  z-index: 3;
  text-align: right;
  max-width: 46vw;
}

.hero__mood {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 40px);
  color: var(--text);
  pointer-events: none;
}

.hero__scene-label {
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
  height: 14px;
  overflow: hidden;
  position: relative;
  pointer-events: none;
}

.hero__scene-label span { display: block; }

.hero__tagline {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 4px;
  pointer-events: none;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--space-3);
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  pointer-events: auto;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.hero__cta:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

/* Scene number — large, foreground, top-left */
.hero__hud {
  position: absolute;
  top: 108px;
  left: var(--edge);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero__counter {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 0.9;
  height: 0.9em;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 8px;
  overflow: hidden;
}

.hero__counter .current { display: block; }
.hero__counter .of-total {
  color: var(--text-faint);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}

.hero__progress {
  display: flex;
  gap: 6px;
}

.hero__progress span {
  width: 22px;
  height: 2px;
  background: var(--line-strong);
  position: relative;
  overflow: hidden;
}

.hero__progress span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
}

.hero__progress span.is-active::after { transform: scaleX(1); }
.hero__progress span.is-done::after { transform: scaleX(1); }

/* Prev/next controls, bottom-left */
.hero__controls {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.hero__controls .hero__ctrl-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;
}

.hero__controls .hero__ctrl-btn:first-child {
  left: var(--edge);
}

.hero__controls .hero__ctrl-btn:last-child {
  right: var(--edge);
}

.hero__ctrl-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.hero__ctrl-btn:hover { background: rgba(255, 255, 255, 0.08); }
.hero__ctrl-btn:active { transform: scale(0.92); }

.hero__scroll-cue {
  position: absolute;
  right: var(--edge);
  bottom: var(--space-6);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero__scroll-cue span.line {
  width: 1px; height: 28px;
  background: linear-gradient(var(--text-faint), transparent);
}

@media (max-width: 760px) {
  .hero__hud { top: 96px; }
  .hero__counter { font-size: clamp(32px, 13vw, 56px); }
  .hero__scroll-cue { bottom: var(--space-4); }
  .hero__type-front { right: var(--space-4); bottom: var(--space-4); max-width: 82vw; }
  .cine-scene__stage { width: 84vw; height: min(56vh, 520px); }
  .hero__type-back span { font-size: clamp(70px, 24vw, 160px); }
}

/* ---------- Section shell ---------- */
.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-7) 0; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.section__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--space-2);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.section__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 3px;
  white-space: nowrap;
}
.section__link:hover { border-color: #fff; }

/* ---------- Horizontal product rail (New Drops / Trending) ---------- */
.rail {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }

.rail__track {
  display: flex;
  gap: var(--space-4);
  padding: 0 var(--edge) var(--space-3);
}

.rail__card {
  flex: 0 0 auto;
  width: min(72vw, 320px);
  scroll-snap-align: start;
}

.rail__card .media-slot { aspect-ratio: 4/5; border-radius: var(--radius-md); margin-bottom: var(--space-3); }

.rail__brand { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-faint); }
.rail__name { font-size: 14px; font-weight: 600; margin: 4px 0; }
.rail__price { font-family: var(--font-display); font-size: 15px; }

/* ---------- Drop showcase (THE DROP / 02 · New Arrivals) ----------
   Asymmetric editorial product presentation — replaces the standard
   rail for this section only. Containers carry no visible chrome;
   the product image is the whole composition. Driven by the same
   window.TS_PRODUCTS data source as every other product listing —
   no product/brand/price is ever hardcoded here. */
.drop-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}

.drop-head__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.01em;
}

.drop-showcase {
  position: relative;
  display: block;
  padding: 80px 0 140px;
}


.drop-item {
  position: relative;
  display: block;
  overflow: visible;
}

.drop-item__frame {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
}

/* Direct img version */
.drop-item__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transform-origin: center center;
  transition:
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.35));
}

/* Voor het geval een media-slot nog ergens gebruikt wordt */
.drop-item__frame .media-slot {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  overflow: visible;
}

.drop-item__frame .media-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition:
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  filter: drop-shadow(0 24px 45px rgba(0, 0, 0, 0.35));
}

.drop-item:hover .drop-item__image,
.drop-item:hover .drop-item__frame .media-slot img {
  transform: scale(1.07) rotate(-1deg);
  filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.48));
}

.drop-item::before {
  content: "";
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.085) 0%,
    rgba(255, 255, 255, 0.025) 38%,
    rgba(255, 255, 255, 0) 72%
  );
  filter: blur(18px);
  pointer-events: none;
  z-index: -1;
}

.drop-item__view {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--dur-base) var(--ease),
    transform var(--dur-base) var(--ease);
  pointer-events: none;
}

.drop-item:hover .drop-item__view,
.drop-item:focus-visible .drop-item__view {
  opacity: 1;
  transform: translateY(0);
}

.drop-item__meta {
  position: absolute;
  z-index: 4;
  margin: 0;
  display: block;
  width: min(290px, 70%);
}

.drop-item__category {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 7px;
}

.drop-item__name {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 30px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.drop-item__price {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 01 — dominant left */
.drop-item--1 {
  width: min(520px, 42vw);
  margin-left: 4%;
  margin-right: auto;
  margin-bottom: 150px;
}

.drop-item--1 .drop-item__frame {
  height: clamp(420px, 53vw, 760px);
}

.drop-item--1 .drop-item__meta {
  left: -2%;
  bottom: 7%;
}

.drop-item--1 .drop-item__view {
  right: 2%;
  bottom: 4%;
}

/* 02 — raised right */
.drop-item--2 {
  width: min(480px, 39vw);
  margin-left: auto;
  margin-right: 5%;
  margin-bottom: 150px;
}


.drop-item--2 .drop-item__frame {
  height: clamp(330px, 39vw, 560px);
}

.drop-item--2 .drop-item__meta {
  right: -2%;
  top: 8%;
  text-align: right;
}

.drop-item--2 .drop-item__view {
  left: 2%;
  bottom: 2%;
}

/* 03 — lower left */
.drop-item--3 {
  width: min(500px, 40vw);
  margin-left: 7%;
  margin-right: auto;
  margin-bottom: 150px;
}

.drop-item--3 .drop-item__frame {
  height: clamp(300px, 36vw, 520px);
}

.drop-item--3 .drop-item__meta {
  left: -5%;
  top: 5%;
}

.drop-item--3 .drop-item__view {
  right: 0;
  bottom: 0;
}

/* 04 — large final right */
.drop-item--4 {
  width: min(500px, 40vw);
  margin-left: auto;
  margin-right: 7%;
  margin-bottom: 120px;
}
.drop-item--4 .drop-item__frame {
  height: clamp(410px, 50vw, 720px);
}

.drop-item--4 .drop-item__meta {
  right: -1%;
  bottom: 9%;
  text-align: right;
}

.drop-item--4 .drop-item__view {
  left: 2%;
  top: 6%;
}

@media (max-width: 900px) {
  .drop-showcase {
    display: block;
    padding-top: 30px;
  }

  .drop-item {
    margin: 0 0 90px !important;
  }

  .drop-item__frame {
    height: min(110vw, 520px) !important;
  }

  .drop-item__meta {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    text-align: left !important;
    margin-top: 14px;
  }

  .drop-item__view {
    right: 16px !important;
    left: auto !important;
    bottom: 16px !important;
    top: auto !important;
  }
}
.drop-showcase__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-9) var(--space-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.drop-showcase__empty-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: var(--space-3);
}

.drop-showcase__empty-text {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 440px;
  margin: 0 auto var(--space-4);
}

@media (max-width: 900px) {
  .drop-showcase { grid-template-columns: 1fr; row-gap: var(--space-6); }
  .drop-item--1, .drop-item--2, .drop-item--3, .drop-item--4 {
    grid-column: 1 / -1;
    margin-top: 0;
    align-self: auto;
  }
  .drop-item--2 .drop-item__frame,
  .drop-item--3 .drop-item__frame,
  .drop-item--4 .drop-item__frame { aspect-ratio: 4 / 5; }
}

/* ---------- Category panels ---------- */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

@media (min-width: 800px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

.category-panel {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

@media (min-width: 800px) {
  .category-panel { aspect-ratio: 4/5; }
}

.category-panel .media-slot { position: absolute; inset: 0; border-radius: var(--radius-lg); border: 1px solid var(--line); }

.category-panel__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 2;
}

.category-panel__label {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-3);
}

.category-panel__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 36px);
  color: #fff;
}

.category-panel__arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.category-panel:hover .category-panel__arrow { background: #fff; color: #000; transform: rotate(45deg); }
.category-panel:hover .media-slot img { transform: scale(1.05); }
.category-panel .media-slot img { transition: transform 900ms var(--ease); }

/* ---------- Marquee / typography moment ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: var(--space-6) 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  will-change: transform;
}

.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 128px);
  padding: 0 var(--space-5);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.35);
}

.marquee__track span:nth-child(odd) {
  color: #fff;
  -webkit-text-stroke: 0;
}

/* ---------- Spotlight ---------- */
.spotlight {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spotlight__image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.spotlight__image-wrap .media-slot { width: 100%; height: 100%; border-radius: 0; border: 0; }

.spotlight__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.85) 100%);
}

.spotlight__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--edge);
}

.spotlight__eyebrow {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(18px, 2.6vw, 28px);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.spotlight__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 120px);
  line-height: 0.9;
  letter-spacing: -0.01em;
}

.spotlight__cta { margin-top: var(--space-5); }

/* ---------- Reviews / editorial blocks reused as brand strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  border-top: 1px solid var(--line);
  padding-top: var(--space-6);
}

@media (min-width: 800px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}

.stat-strip__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
}

.stat-strip__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- CTA closing ---------- */
.cta-final {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .cta-final { grid-template-columns: 1.1fr 0.9fr; }
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 108px);
  line-height: 0.92;
  letter-spacing: -0.01em;
}

.cta-final__title em {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.55em;
  display: block;
  font-weight: 400;
}

.cta-final__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; margin-top: var(--space-5); }

.cta-final__image .media-slot { aspect-ratio: 4/5; border-radius: var(--radius-lg); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: var(--space-7) 0 var(--space-5); }

.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }

@media (min-width: 700px) {
  .site-footer__grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
}

.footer-col h4 { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: var(--space-3); }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: var(--text-muted); padding: 6px 0; }
.footer-col a:hover { color: #fff; }

.site-footer__bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 11px;
  color: var(--text-faint);
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-fab {
  position: fixed;
  right: var(--space-4);
  bottom: var(--space-4);
  z-index: var(--z-drawer);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: #25d366;
  color: #06210f;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  transition: transform var(--dur-fast) var(--ease);
}
.whatsapp-fab:hover { transform: translateY(-2px); }
.whatsapp-fab svg { width: 22px; height: 22px; }

@media (max-width: 480px) {
  .whatsapp-fab span { display: none; }
  .whatsapp-fab { padding: 14px; }
}

/* ---------- Nav overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-6) var(--edge);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), visibility var(--dur-base);
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

.nav-overlay__close { position: absolute; top: 18px; right: var(--edge); }

.nav-overlay__list { list-style: none; max-width: var(--container); margin: 0 auto; width: 100%; }
.nav-overlay__list li { border-bottom: 1px solid var(--line); }

.nav-overlay__list a {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding: 18px 4px;
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 64px);
  color: var(--text);
  transition: color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.nav-overlay__list a:hover { color: var(--text-muted); transform: translateX(8px); }

.nav-overlay__list .num { font-family: var(--font-body); font-size: 14px; color: var(--text-faint); min-width: 24px; }

.nav-overlay__footer {
  max-width: var(--container);
  margin: var(--space-6) auto 0;
  width: 100%;
  color: var(--text-muted);
  font-size: 13px;
  display: flex; align-items: center; gap: var(--space-2);
}
.nav-overlay__footer .dash { width: 24px; height: 1px; background: #fff; display: inline-block; }

/* ---------- Search overlay ---------- */
.search-overlay {
  position: fixed; inset: 0; z-index: var(--z-overlay);
  background: rgba(0, 0, 0, 0.98);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), visibility var(--dur-base);
  padding: var(--space-6) 0;
  overflow-y: auto;
}
.search-overlay.is-open { opacity: 1; visibility: visible; }

.search-overlay__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-4); }
.search-overlay__label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 44px);
  padding: var(--space-3) 0;
}
.search-input:focus { outline: none; border-color: #fff; }
.search-input::placeholder { color: var(--text-faint); }

.search-empty { margin-top: var(--space-6); color: var(--text-muted); font-size: 14px; }

/* ---------- Cart drawer ---------- */
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.65);
  z-index: var(--z-drawer);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), visibility var(--dur-base);
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: #000;
  border-left: 1px solid var(--line);
  z-index: calc(var(--z-drawer) + 1);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: var(--space-4); border-bottom: 1px solid var(--line); }
.cart-drawer__title { font-family: var(--font-display); font-size: 18px; }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: var(--space-4); }

.cart-empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: var(--space-3); color: var(--text-muted); }

.cart-item { display: flex; gap: var(--space-3); padding: var(--space-3) 0; border-bottom: 1px solid var(--line); }
.cart-item__thumb { width: 72px; height: 72px; border-radius: var(--radius-md); flex-shrink: 0; }
.cart-item__thumb .media-slot { width: 100%; height: 100%; border-radius: var(--radius-md); }
.cart-item__thumb .media-slot__empty svg { width: 18px; height: 18px; }
.cart-item__thumb .media-slot__empty-label,
.cart-item__thumb .media-slot__empty-path { display: none; }

.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-weight: 600; font-size: 14px; }
.cart-item__variant { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.cart-item__row { display: flex; align-items: center; justify-content: space-between; margin-top: var(--space-2); }

.qty-stepper { display: flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.qty-stepper button { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.qty-stepper span { min-width: 24px; text-align: center; font-size: 13px; }

.cart-item__remove { font-size: 12px; color: var(--text-faint); text-decoration: underline; }
.cart-item__remove:hover { color: #fff; }

.cart-drawer__foot { padding: var(--space-4); border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: var(--space-3); }
.cart-drawer__subtotal { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 16px; }
.cart-drawer__note { font-size: 12px; color: var(--text-faint); text-align: center; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: var(--space-6);
  transform: translate(-50%, 20px);
  background: #fff; color: #000;
  padding: 14px 20px; border-radius: var(--radius-md);
  font-size: 14px; font-weight: 700;
  z-index: var(--z-toast);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease), visibility var(--dur-base);
}
.toast.is-open { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Shop page ---------- */
.shop-head { padding: 150px 0 var(--space-4); }
.shop-head__eyebrow { color: var(--text-faint); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.shop-head__title { font-family: var(--font-display); font-size: clamp(36px, 7vw, 72px); line-height: 0.98; margin-top: 8px; }

.shop-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-3);
  padding: var(--space-4) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: var(--space-4);
}

.filter-chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.chip {
  padding: 9px 16px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  min-height: 44px; display: inline-flex; align-items: center;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.chip.is-active { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.06); }

.select { background: var(--bg-2); border: 1px solid var(--line); color: var(--text); padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; min-height: 44px; }

.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-4); padding-bottom: var(--space-8); }
@media (min-width: 700px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card { display: block; }
.product-card .media-slot { aspect-ratio: 4/5; border-radius: var(--radius-md); margin-bottom: 12px; }
.product-card__brand { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-faint); }
.product-card__name { font-weight: 600; font-size: 14px; margin: 4px 0; }
.product-card__price { font-family: var(--font-display); font-size: 15px; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--space-8) var(--space-4);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.empty-state svg { width: 48px; height: 48px; margin: 0 auto var(--space-4); color: var(--text-faint); }
.empty-state__title { font-family: var(--font-display); font-size: 24px; margin-bottom: var(--space-2); }
.empty-state__text { color: var(--text-muted); font-size: 14px; max-width: 420px; margin: 0 auto var(--space-4); }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr; gap: var(--space-6); padding: 150px 0 var(--space-8); }
@media (min-width: 900px) { .product-detail { grid-template-columns: 1.1fr 1fr; } }

.breadcrumb { font-size: 12px; color: var(--text-faint); margin-bottom: var(--space-4); text-transform: uppercase; letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--text-muted); }

.product-gallery__main { aspect-ratio: 1; border-radius: var(--radius-lg); }
.product-gallery__main .media-slot { width: 100%; height: 100%; border-radius: var(--radius-lg); }

.product-brand { color: var(--text-faint); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.product-title { font-family: var(--font-display); font-size: clamp(26px, 5vw, 42px); margin: 6px 0 var(--space-3); line-height: 1.02; }
.product-price { font-family: var(--font-display); font-size: 22px; margin-bottom: var(--space-5); }

.size-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: var(--space-5); }
.size-btn { min-height: 44px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-size: 13px; font-weight: 600; }
.size-btn:hover { border-color: var(--text-muted); }
.size-btn.is-selected { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.product-actions { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-5); }
.product-note { font-size: 13px; color: var(--text-muted); padding: 4px 0; }
/* ===== HERO PRODUCT INFO ===== */

.hero-product-brand {
  display: block;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-product-model {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 120px);
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero-product-price {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.hero__scroll-cue {
  display: none !important;
}
.drop-item__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* TEMP FIX — force THE DROP visible */

 
/* THE DROP — product info opposite the image */

.drop-item__meta {
  position: absolute;
  top: 50% !important;
  bottom: auto !important;
  width: 230px;
  transform: translateY(-50%);
}

/* Product 1 & 3 staan links → tekst rechts ervan */
.drop-item--1 .drop-item__meta,
.drop-item--3 .drop-item__meta {
  left: calc(100% + 35px) !important;
  right: auto !important;
  text-align: left !important;
}

/* Product 2 & 4 staan rechts → tekst links ervan */
.drop-item--2 .drop-item__meta,
.drop-item--4 .drop-item__meta {
  right: calc(100% + 35px) !important;
  left: auto !important;
  text-align: right !important;
}
/* THE DROP — keep CTA visible above product image */
.drop-item__view {
  z-index: 20 !important;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.drop-item__frame {
  position: relative;
  overflow: visible;
}

.drop-item__image {
  position: relative;
  z-index: 1;
}

.drop-item__meta {
  z-index: 10;
}
.rail__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

.rail__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
/* THE DROP — CTA always above image */
.drop-item__frame {
  position: relative;
  overflow: visible;
}

.drop-item__image {
  position: relative;
  z-index: 1;
}

.drop-item__view {
  position: absolute;
  z-index: 50 !important;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}
/* THE DROP — CTA altijd onderaan */
.drop-item__view {
  left: var(--space-3) !important;
  right: auto !important;
  top: auto !important;
  bottom: var(--space-3) !important;
  z-index: 50 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* THE DROP — fix CTA only for item 2 and 3 */

.drop-item--2 .drop-item__view {
  left: 16px !important;
  right: auto !important;
  top: auto !important;
  bottom: 16px !important;
  z-index: 100 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.drop-item--3 .drop-item__view {
  left: 16px !important;
  right: auto !important;
  top: auto !important;
  bottom: 16px !important;
  z-index: 100 !important;
  opacity: 1 !important;
  visibility: visible !important;
}
/* THE DROP — fix alleen CTA product 2 + 3 */

.drop-item--2 .drop-item__view,
.drop-item--3 .drop-item__view {
  top: auto !important;
  bottom: -42px !important;
  left: 16px !important;
  right: auto !important;

  z-index: 999 !important;
  opacity: 1 !important;
  visibility: visible !important;

  background: #000 !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.25) !important;
  padding: 10px 16px !important;
  border-radius: 999px !important;
}

.drop-item--2,
.drop-item--3,
.drop-item--2 .drop-item__frame,
.drop-item--3 .drop-item__frame {
  overflow: visible !important;
}
.product-card__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-detail__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.shop-brand-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 24px;
}

.shop-brand-filter__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.shop-brand-select {
  min-width: 210px;
}

.subcategory-chips {
  margin-top: 18px;
  margin-bottom: 6px;
}
/* =========================================
   PREMIUM SHOP PRODUCT CARDS
   ========================================= */

.product-card {
  position: relative;
  display: block;
  overflow: hidden;
  transition:
    transform 280ms var(--ease),
    opacity 280ms var(--ease);
}

.product-card__image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  margin-bottom: 16px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0;
  transition: transform 700ms var(--ease);
}

/* subtiele luxe glow */
.product-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255,255,255,0) 0%,
      rgba(0,0,0,0.025) 100%
    );
}

.product-card__brand {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 5px;
}

.product-card__name {
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
  margin: 0;
  max-width: 92%;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 7px;
}

/* subtiele lijn onder productinfo */
.product-card::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin-top: 15px;
  background: rgba(255,255,255,0.55);
  transition: width 450ms var(--ease);
}

/* desktop hover */
@media (hover: hover) {
  .product-card:hover {
    transform: translateY(-4px);
  }

  .product-card:hover .product-card__image {
    transform: scale(1.055);
  }

  .product-card:hover::after {
    width: 100%;
  }
}

/* grid iets luchtiger */
.product-grid {
  column-gap: 24px;
  row-gap: 54px;
}

/* tablet */
@media (max-width: 1099px) {
  .product-grid {
    row-gap: 42px;
  }
}

/* mobiel */
@media (max-width: 699px) {
  .product-grid {
    gap: 28px 14px;
  }

  .product-card__image {
    padding: 10px;
  }

  .product-card__name {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 12px;
  }
}
/* =========================================
   PREMIUM SHOP FILTERS
   ========================================= */

.shop-toolbar {
  align-items: flex-start;
  gap: 18px;
  padding: 28px 0;
}

.filter-chips {
  gap: 10px;
}

.chip {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.015);
  color: rgba(255,255,255,0.6);
  transition:
    color 220ms var(--ease),
    border-color 220ms var(--ease),
    background 220ms var(--ease),
    transform 220ms var(--ease);
}

.chip:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.chip.is-active {
  background: #fff;
  border-color: #fff;
  color: #000;
}

[data-brand-chips] {
  padding-top: 4px;
  margin-bottom: 34px !important;
}

.subcategory-chips {
  padding-top: 6px;
  margin-bottom: 18px;
}

.select {
  background: #0d0d0d;
  border-color: rgba(255,255,255,0.16);
}

.select:hover {
  border-color: rgba(255,255,255,0.4);
}

@media (max-width: 700px) {
  .chip {
    min-height: 38px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .shop-toolbar {
    padding: 20px 0;
  }
}
/* =========================================
   PREMIUM PRODUCT DETAIL
   ========================================= */

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-top: 145px;
  padding-bottom: 120px;
  align-items: start;
}

/* PRODUCT IMAGE */

.product-gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  overflow: hidden;
  border-radius: 0;
}

.product-detail__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 24px;
  transition: transform 800ms var(--ease);
}

@media (hover: hover) {
  .product-gallery__main:hover .product-detail__image {
    transform: scale(1.035);
  }
}

/* PRODUCT INFO */

.product-detail > div:nth-child(2) {
  padding-top: 12px;
}

.breadcrumb {
  margin-bottom: 28px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.breadcrumb a {
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.product-brand {
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-title {
  max-width: 650px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.product-price {
  margin-top: 24px;
  margin-bottom: 42px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 600;
}

/* SIZE LABEL */

.product-detail .section__eyebrow {
  margin-bottom: 14px !important;
  color: var(--text-muted);
}

/* SIZES */

.size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-bottom: 38px;
}

.size-btn {
  position: relative;
  min-height: 50px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.7);
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.size-btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}

.size-btn.is-selected {
  background: #fff;
  border-color: #fff;
  color: #000;
}

/* ACTIONS */

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 34px;
}

.product-actions .btn {
  border-radius: 0;
  min-height: 58px;
}

.product-actions .btn--primary {
  background: #fff;
  color: #000;
}

.product-actions .btn--primary:hover {
  background: #e5e5e5;
}

.product-actions .btn--whatsapp {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.product-actions .btn--whatsapp:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.5);
}

/* DESCRIPTION */

.product-note {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

/* DESKTOP */

@media (min-width: 900px) {
  .product-detail {
    grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
    gap: clamp(55px, 7vw, 110px);
  }

  .product-detail > div:nth-child(2) {
    position: sticky;
    top: 120px;
    padding-top: 18px;
  }

  .product-gallery__main {
    min-height: 620px;
  }
}

/* MOBILE */

@media (max-width: 899px) {
  .product-detail {
    padding-top: 110px;
    gap: 30px;
  }

  .product-detail__image {
    padding: 12px;
  }

  .product-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .size-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* PRODUCT PAGE — FINAL TITLE / SPACING FIX */

@media (min-width: 900px) {
  .product-detail {
    padding-top: 125px;
  }

  .product-detail > div:nth-child(2) {
    padding-top: 20px;
  }

  .product-title {
    font-size: clamp(36px, 3.7vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.035em;
    max-width: 560px;
  }

  .product-price {
    margin-top: 22px;
    margin-bottom: 42px;
  }
}
/* SHOP BY CATEGORY — transparent product images */

.category-panel {
  background: #0b0b0b;
}

.category-panel .media-slot {
  background: transparent;
  border: 1px solid var(--line);
}

.category-panel .media-slot img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 44px;
  background: transparent !important;
  transform: none;
}

.category-panel:hover .media-slot img {
  transform: scale(1.06);
}

.category-panel__scrim {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 35%,
    rgba(0, 0, 0, 0.72) 100%
  );
}

@media (max-width: 700px) {
  .category-panel .media-slot img {
    padding: 24px;
  }
}
.category-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 44px;
  background: transparent;
  transition: transform 900ms var(--ease);
}

.category-panel:hover .category-panel__image {
  transform: scale(1.06);
}
.category-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 44px;
  background: transparent;
  transition: transform 900ms var(--ease);
}

.category-panel:hover .category-panel__image {
  transform: scale(1.06);
}
/* TRENDING — transparante productbeelden */

[data-product-rail="trending"] .rail__image-wrap {
  background: transparent !important;
}

[data-product-rail="trending"] .rail__image {
  object-fit: contain;
  background: transparent !important;
}
/* =========================================
   FINAL STAY AHEAD CTA
   ========================================= */

.cta-final--split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: 620px;
  border: 1px solid var(--line);
  overflow: hidden;
}

/* LEFT VISUAL */

.cta-final__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
  padding: 70px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255,255,255,0.08),
      transparent 42%
    ),
    #080808;
  border-right: 1px solid var(--line);
}

.cta-final__visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta-final__product-image {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  max-width: 520px;
  max-height: 520px;
  object-fit: contain;
  transition: transform 800ms var(--ease);
}

.cta-final__visual:hover .cta-final__product-image {
  transform: scale(1.05) rotate(-2deg);
}

.cta-final__visual-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
}


/* RIGHT CONTENT */

.cta-final__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 110px);
}

.cta-final__content .cta-final__title {
  margin-top: 18px;
}

.cta-final__text {
  max-width: 470px;
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.75;
  opacity: 0.65;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}


/* MOBILE */

@media (max-width: 800px) {
  .cta-final--split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .cta-final__visual {
    min-height: 420px;
    padding: 45px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .cta-final__visual::before {
    width: 300px;
    height: 300px;
  }

  .cta-final__product-image {
    max-width: 360px;
    max-height: 360px;
  }

  .cta-final__content {
    padding: 50px 28px;
  }

  .cta-final__actions {
    flex-direction: column;
  }

  .cta-final__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.search-result-item {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 180ms ease, transform 180ms ease;
}

.search-result-item:hover {
  opacity: 0.7;
  transform: translateX(6px);
}

.search-result-item__brand {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.search-result-item__name {
  font-size: 16px;
  font-weight: 600;
}
/* =========================================
   MOBILE FIX — THE DROP
   ========================================= */

@media (max-width: 700px) {
  .drop-showcase {
    padding: 20px 0 60px;
  }

  .drop-item {
    width: 100% !important;
    margin: 0 0 64px !important;
  }

  .drop-item__frame {
    height: 360px !important;
  }

  .drop-item__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .drop-item__meta {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 14px !important;
    text-align: left !important;
  }

  .drop-item__name {
    font-size: 22px;
    line-height: 1;
  }

  .drop-item__view {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: inline-flex;
    margin-top: 12px;
    padding: 8px 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
  }
}
@media (max-width: 700px) {
  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    padding: 12px;
    width: 48px;
    height: 48px;
    justify-content: center;
    border-radius: 50%;
  }

  .whatsapp-fab span {
    display: none !important;
  }

  .whatsapp-fab svg {
    width: 22px;
    height: 22px;
  }
}
/* =========================================
   FINAL MOBILE OVERRIDE — THE DROP
   ========================================= */

@media screen and (max-width: 700px) {

  .drop-showcase {
    padding: 30px 0 60px !important;
  }

  .drop-item,
  .drop-item--1,
  .drop-item--2,
  .drop-item--3,
  .drop-item--4 {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 55px 0 !important;
  }

  .drop-item__frame,
  .drop-item--1 .drop-item__frame,
  .drop-item--2 .drop-item__frame,
  .drop-item--3 .drop-item__frame,
  .drop-item--4 .drop-item__frame {
    width: 100% !important;
    height: 260px !important;
  }

  .drop-item__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
  }

  /* BELANGRIJK: desktop tekstpositie volledig uitschakelen */
  .drop-item .drop-item__meta,
  .drop-item--1 .drop-item__meta,
  .drop-item--2 .drop-item__meta,
  .drop-item--3 .drop-item__meta,
  .drop-item--4 .drop-item__meta {
    position: relative !important;

    left: 0 !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: none !important;

    width: 100% !important;
    max-width: 100% !important;

    margin: 12px 0 0 !important;

    text-align: left !important;
  }

  .drop-item__name {
    font-size: 20px !important;
    line-height: 1.05 !important;
  }

  .drop-item__price {
    margin-top: 7px !important;
  }

  .drop-item .drop-item__view,
  .drop-item--1 .drop-item__view,
  .drop-item--2 .drop-item__view,
  .drop-item--3 .drop-item__view,
  .drop-item--4 .drop-item__view {
    position: relative !important;

    left: 0 !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    display: inline-flex !important;

    margin-top: 10px !important;
    padding: 0 !important;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}
/* FINAL — catalogus transparante productbeelden */

.product-card__image-wrap {
  background: transparent !important;
}

.product-card__image {
  background: transparent !important;
}

.product-gallery__main {
  background: transparent !important;
}

.product-detail__image {
  background: transparent !important;
}
/* =========================================
   FAQ
   ========================================= */

.faq-section {
  border-top: 1px solid rgba(255,255,255,.12);
}

.faq-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}

.faq-intro {
  max-width: 470px;
  margin-left: auto;
  color: rgba(255,255,255,.55);
  font-size: 15px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid rgba(255,255,255,.18);
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;

  padding: 26px 0;

  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-plus {
  flex: 0 0 auto;
  font-size: 25px;
  font-weight: 300;
  transition: transform .3s ease;
}

.faq-item[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 720px;
  padding: 0 0 28px;

  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.75;
}

.faq-contact {
  margin-top: 70px;
  padding: 42px 0 0;

  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
}

.faq-contact__eyebrow {
  display: block;
  margin-bottom: 10px;

  font-size: 11px;
  letter-spacing: .16em;
  color: rgba(255,255,255,.45);
}

.faq-contact h3 {
  margin: 0;
  font-size: clamp(32px, 5vw, 64px);
  line-height: .92;
  letter-spacing: -.05em;
}


/* MOBILE */

@media (max-width: 700px) {

  .faq-head {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }

  .faq-intro {
    margin-left: 0;
  }

  .faq-item summary {
    padding: 21px 0;
    font-size: 15px;
  }

  .faq-answer {
    padding-bottom: 22px;
    font-size: 13px;
  }

  .faq-contact {
    margin-top: 50px;
    flex-direction: column;
    align-items: flex-start;
  }
}