/* ── Reallife Remake - cinematic dark blue ── */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  /* Reallife palette (dark theme, neutral-950 base + brand blue accent) */
  --bg: #0a0a0a;
  --bg-2: #171717;
  --bg-3: #262626;
  --ink: #ffffff;
  --ink-2: #e5e5e5;
  --ink-3: #a3a3a3;
  --ink-4: #404040;
  --ink-5: rgba(255,255,255,0.06);
  --accent: #00a9ff;
  --accent-deep: #007cf4;
  --accent-soft: rgba(0, 124, 244, 0.16);
  --accent-line: rgba(0, 169, 255, 0.32);
  --warn: #ffb86b;
  --good: #4ade80;
  --bad:  #f87171;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --shadow-card: 0 18px 60px rgba(0,0,0,0.55);
  --shadow-glow: 0 0 60px rgba(0, 124, 244, 0.22);
}

body {
  font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink-2);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── Globale scrollbar styling ── */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 169, 255,0.3) transparent;
}
/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: rgba(10,13,20,0.4);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 169, 255,0.35), rgba(0, 124, 244,0.5));
  border-radius: 999px;
  border: 2px solid rgba(10,13,20,0.6);
  background-clip: padding-box;
  transition: background 0.2s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(0, 169, 255,0.55), rgba(0, 124, 244,0.7));
  background-clip: padding-box;
}
::-webkit-scrollbar-corner {
  background: transparent;
}

/* Horizontale containers die per ongeluk een scrollbar tonen - verbergen maar swipen blijft werken */
.tabs::-webkit-scrollbar,
.cat-filters::-webkit-scrollbar,
.nav::-webkit-scrollbar {
  display: none;
  height: 0;
}
.tabs, .cat-filters, .nav {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Display / accent typography ── */
.display {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
}
.eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow.accent { color: var(--accent); }

/* Simple bright headline treatment - no more chrome gradient */
.chrome {
  color: var(--ink);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}
.chrome.shift { color: var(--accent); }

/* ── Page background ambient ── */
.bg-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-ambient::before, .bg-ambient::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.bg-ambient::before {
  width: 720px; height: 720px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(0, 169, 255,0.18), transparent 70%);
}
.bg-ambient::after {
  width: 600px; height: 600px;
  bottom: -200px; right: -200px;
  background: radial-gradient(circle, rgba(0, 169, 255,0.12), transparent 70%);
}
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

/* ── Nav (gecentreerde pill, royaler en mooier) ── */
.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  background: rgba(10,13,20,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo img {
  width: 26px; height: 26px;
  filter: drop-shadow(0 0 10px rgba(0, 169, 255,0.5));
}
.nav-logo span {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 14px;
  color: #fff;
}
.nav-links { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.nav-link {
  position: relative;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-2);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
}
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,0.05); }
.nav-link.on {
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 169, 255,0.18), rgba(0, 169, 255,0.10));
  box-shadow: inset 0 0 0 1px rgba(0, 169, 255,0.35), 0 4px 14px rgba(0, 169, 255,0.18);
}

/* Mobile-only top bar (verborgen op desktop) */
.nav-mobile {
  display: none;
}
.nav-mobile-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,13,20,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  cursor: pointer;
}
.nav-mobile-brand img {
  width: 22px; height: 22px;
  filter: drop-shadow(0 0 8px rgba(0, 169, 255,0.5));
}
.nav-mobile-brand span {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav-burger {
  width: 42px; height: 42px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
  background: rgba(10,13,20,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
  cursor: pointer;
  padding: 0;
  transition: all 0.25s;
}
.nav-burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1), opacity 0.2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-burger:hover { border-color: rgba(0, 169, 255,0.4); }

/* Mobile drawer */
.nav-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 198;
  animation: fadeIn 0.2s ease;
}
.nav-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100%; max-width: 340px;
  background: rgba(8,11,18,0.98);
  border-right: 1px solid rgba(255,255,255,0.08);
  z-index: 199;
  display: flex; flex-direction: column;
  box-shadow: 20px 0 60px rgba(0,0,0,0.5);
  animation: slideLeft 0.3s cubic-bezier(.2,.9,.3,1);
}
@keyframes slideLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.nav-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--ink-4);
}
.nav-drawer-head .nav-mobile-brand {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}
.nav-drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-drawer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: none;
  border-radius: 12px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s;
}
.nav-drawer-item span { flex: 1; }
.nav-drawer-item:hover {
  background: rgba(255,255,255,0.04);
  color: #fff;
}
.nav-drawer-item.on {
  background: linear-gradient(180deg, rgba(0, 169, 255,0.15), rgba(0, 169, 255,0.08));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(0, 169, 255,0.25);
}
.nav-drawer-item.primary {
  background: linear-gradient(180deg, #5865F2, #4752c4);
  color: #fff;
  margin-top: 8px;
  justify-content: center;
}
.nav-drawer-item.danger { color: #f87171; }
.nav-drawer-item.danger:hover { background: rgba(248,113,113,0.08); }
.nav-drawer-divider {
  height: 1px;
  background: var(--ink-4);
  margin: 12px 4px;
}
.nav-cta {
  margin-left: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #d8e3f5);
  color: #0a0a0a;
  font-weight: 600;
  font-size: 13px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.15);
}

/* ── Floating nav actions (cart+avatar in eigen ovale pill, rechtsboven) ── */
.nav-float {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 51;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(10,13,20,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
}
.nav-circle {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--ink-2);
  transition: all 0.2s cubic-bezier(.2,.9,.3,1);
  padding: 0;
  overflow: hidden;
}
.nav-circle:hover {
  background: rgba(0, 169, 255,0.1);
  color: #fff;
  transform: none;
  box-shadow: none;
}
.nav-avatar-circle {
  background: linear-gradient(180deg, #007cf4, #0068d6);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.nav-avatar-circle:hover {
  background: linear-gradient(180deg, #007cf4, #0068d6);
  box-shadow: inset 0 0 0 1px rgba(0, 169, 255,0.5), 0 0 0 2px rgba(0, 169, 255,0.22);
}
.nav-avatar-circle img {
  width: 100%; height: 100%; object-fit: cover;
}
.nav-avatar-letter {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: -0.02em;
}
.nav-avatar-circle.open {
  box-shadow: inset 0 0 0 1px rgba(0, 169, 255,0.6), 0 0 0 3px rgba(0, 169, 255,0.32);
}
.nav-login-circle {
  position: relative;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #5865F2, #4752c4);
  border: none;
  border-radius: 50%;
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14);
  transition: all 0.2s cubic-bezier(.2,.9,.3,1);
  padding: 0;
}
.nav-login-circle:hover {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.22), 0 0 0 3px rgba(88,101,242,0.4);
}
.nav-circle .nav-badge {
  top: 0; right: 0;
  min-width: 16px; height: 16px;
  font-size: 9px;
  box-shadow: 0 0 0 2px rgba(10,13,20,0.85);
}
.nav-user-wrap { position: relative; }

/* Legacy actions container - kept for backwards compat */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.nav-icon-btn {
  position: relative;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--ink-2);
  transition: all 0.2s;
}
.nav-icon-btn:hover {
  background: rgba(255,255,255,0.05);
  color: var(--ink);
  border-color: rgba(0, 169, 255,0.3);
}
.nav-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 0 0 2px rgba(10,13,20,0.6);
}
.nav-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #5865F2, #4752c4);
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(88,101,242,0.45);
}
.nav-user-wrap { position: relative; }
.nav-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: box-shadow 0.2s;
}
.nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nav-avatar:hover { box-shadow: 0 0 0 3px rgba(0, 169, 255,0.3); }

/* User dropdown */
.user-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 240px;
  background: rgba(11,13,20,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  z-index: 60;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.user-menu-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 8px;
}
.user-menu-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.user-menu-avatar img { width: 100%; height: 100%; object-fit: cover; }
.user-menu-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.user-menu-sub { font-size: 11px; color: var(--ink-3); font-family: 'Inter', system-ui, sans-serif; letter-spacing: 0.05em; }
.user-menu-divider { height: 1px; background: var(--ink-4); margin: 6px 0; }
.user-menu-item {
  display: flex; align-items: center; gap: 10px;
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: all 0.15s;
}
.user-menu-item:hover { background: rgba(255,255,255,0.05); color: var(--ink); }
.user-menu-item.danger { color: #f87171; }
.user-menu-item.danger:hover { background: rgba(248,113,113,0.08); }

/* ── Login modal ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal {
  position: relative;
  width: 100%; max-width: 420px;
  background: rgba(11,13,20,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px 30px 30px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: modalIn 0.3s cubic-bezier(.2,.9,.3,1);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: rgba(255,255,255,0.1); color: var(--ink); }
.modal-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 14px 40px rgba(88,101,242,0.4);
}
.modal-err {
  margin-bottom: 16px;
  padding: 10px 14px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 10px;
  color: #f87171;
  font-size: 13px;
}

/* ── Cart sidebar ── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 199;
  animation: fadeIn 0.2s ease;
}
.cart-side {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: rgba(11,13,20,0.98);
  border-left: 1px solid rgba(255,255,255,0.08);
  z-index: 200;
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  animation: slideRight 0.3s cubic-bezier(.2,.9,.3,1);
}
@keyframes slideRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
.cart-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--ink-4);
}
.cart-head h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
}
.cart-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-close:hover { background: rgba(255,255,255,0.1); color: var(--ink); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
}
.cart-empty {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 60px 20px;
  color: var(--ink-3);
  text-align: center;
}
.cart-empty p { margin: 14px 0 0; font-size: 14px; }
.cart-items { display: grid; gap: 10px; }
.cart-item {
  display: flex; align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}
.cart-item img {
  width: 48px; height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-var {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(0, 169, 255,0.15);
  color: var(--accent);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Inter', system-ui, sans-serif;
  vertical-align: middle;
}
.cart-item-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  margin-top: 2px;
}
.cart-item-rm {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.2);
  color: #f87171;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.cart-item-rm:hover { background: rgba(248,113,113,0.2); }
.cart-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--ink-4);
  background: rgba(255,255,255,0.02);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cart-err {
  padding: 10px 14px;
  margin-bottom: 12px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 10px;
  color: #f87171;
  font-size: 12px;
}

/* ── Pay toast ── */
.pay-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 250;
  display: flex; align-items: center; gap: 12px;
  width: calc(100vw - 40px); max-width: 480px;
  padding: 14px 18px;
  background: rgba(11,13,20,0.96);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  animation: toastIn 0.4s cubic-bezier(.2,.9,.3,1);
}
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, -16px); } to { opacity: 1; transform: translate(-50%, 0); } }
.pay-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.pay-msg { flex: 1; font-size: 13px; color: var(--ink); line-height: 1.5; }
.pay-close {
  background: transparent; border: none;
  color: var(--ink-3);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color 0.2s;
}
.pay-close:hover { color: var(--ink); }

/* product image overrides - when image is shown, hide the diagonal pattern bg */
.product-img:has(img) { background: rgba(255,255,255,0.02); }
.product-img img { z-index: 1; }
.product-img span { z-index: 2; position: relative; }

/* ── Dashboard typography ── */
.dash-h1 {
  font-size: clamp(48px, 7vw, 84px);
  margin: 16px 0 18px;
  line-height: 0.95;
}
.dash-h1-greet {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 12px;
}
.dash-intro {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 520px;
  margin: 0;
}

/* ── Dashboard purchase cards ── */
.purchase-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(180deg, rgba(0, 169, 255,0.04) 0%, rgba(255,255,255,0.015) 30%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.purchase-card:hover {
  border-color: rgba(0, 169, 255,0.22);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(0, 169, 255,0.1);
  transform: none;
}
.purchase-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.purchase-img {
  width: 80px; height: 80px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0, 169, 255,0.12), rgba(0, 124, 244,0.06));
  border: 1px solid rgba(0, 169, 255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.purchase-img img { width: 100%; height: 100%; object-fit: cover; }
.purchase-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.purchase-tags {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.purchase-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: #fff;
  line-height: 1.1;
}
.purchase-meta {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 14px;
}
.purchase-meta-sep { margin: 0 6px; color: var(--ink-4); }
.purchase-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(0, 169, 255,0.1);
  border: 1px solid rgba(0, 169, 255,0.25);
  border-radius: 999px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.purchase-view:hover {
  background: rgba(0, 169, 255,0.18);
  border-color: rgba(0, 169, 255,0.45);
  color: #fff;
}

/* Dashboard download tiles (per purchase card) */
.dash-dl-section {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 18px;
  display: grid;
  gap: 12px;
}
.dash-dl-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-dl-h > span:first-child {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: #fff;
}
.dash-dl-h-meta {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.dash-dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.dash-dl-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(.2,.9,.3,1);
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.dash-dl-tile:not(:disabled):hover {
  background: rgba(0, 169, 255,0.08);
  border-color: rgba(0, 169, 255,0.32);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 169, 255,0.18);
}
.dash-dl-tile:disabled {
  cursor: not-allowed;
  opacity: 0.85;
}
.dash-dl-tile.cooldown {
  background: rgba(255,184,107,0.06);
  border-color: rgba(255,184,107,0.18);
}
.dash-dl-tile.cooldown .dash-dl-icon { color: var(--warn); background: rgba(255,184,107,0.12); border-color: rgba(255,184,107,0.22); }
/* Update-indicator: alleen text wordt groen, tile-kleur volgt .shared (groen) of blauw (default) */
.dash-dl-tile.shared:not(.cooldown) {
  background: rgba(74,222,128,0.06);
  border-color: rgba(74,222,128,0.22);
}
.dash-dl-tile.shared:not(:disabled):hover {
  background: rgba(74,222,128,0.10);
  border-color: rgba(74,222,128,0.4);
  box-shadow: 0 6px 20px rgba(74,222,128,0.18);
}
.dash-dl-tile.shared .dash-dl-icon {
  color: var(--good);
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.22);
}
.dash-dl-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 169, 255,0.1);
  border: 1px solid rgba(0, 169, 255,0.22);
  color: var(--accent);
  margin-bottom: 4px;
  transition: all 0.2s;
}
.dash-dl-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #fff;
}
.dash-dl-status {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}
.dash-dl-tile.cooldown .dash-dl-status { color: var(--warn); }
.dash-dl-tile.has-update:not(.cooldown) .dash-dl-status { color: var(--good); }
.dash-dl-tile.shared:not(.cooldown) .dash-dl-status { color: var(--good); }

/* ── License (in purchase card) ── */
.purchase-license {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 14px;
  display: grid;
  gap: 8px;
}
.purchase-license .dash-dl-h > span:first-child {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}
.license-status {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}
.license-status.fresh {
  background: rgba(0, 169, 255,0.14);
  border: 1px solid rgba(0, 169, 255,0.3);
  color: var(--accent);
}
.license-status.active {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--good);
}
.license-key-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
}
.license-key {
  flex: 1;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  background: transparent;
  border: none;
  padding: 0;
  overflow-x: auto;
  white-space: nowrap;
}
.license-key::-webkit-scrollbar { display: none; }
.license-copy {
  flex-shrink: 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(0, 169, 255,0.12);
  border: 1px solid rgba(0, 169, 255,0.25);
  color: var(--accent);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.license-copy:hover { background: rgba(0, 169, 255,0.2); }
.license-meta {
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
  padding: 0 2px;
}
.license-meta code {
  background: rgba(255,255,255,0.05);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  color: var(--ink-2);
}
.license-meta strong { color: var(--ink-2); font-family: 'Inter', system-ui, sans-serif; font-size: 11px; }
.license-status.pending {
  background: rgba(255,184,107,0.14);
  border: 1px solid rgba(255,184,107,0.32);
  color: var(--warn);
}

/* IP unlock request - klant kant */
.unlock-btn {
  margin-top: 6px;
  width: 100%;
  padding: 9px 14px;
  background: rgba(255,184,107,0.08);
  border: 1px dashed rgba(255,184,107,0.3);
  border-radius: 10px;
  color: var(--warn);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.unlock-btn:hover {
  background: rgba(255,184,107,0.14);
  border-color: rgba(255,184,107,0.5);
  border-style: solid;
}
.unlock-form {
  margin-top: 10px;
  padding: 14px;
  background: rgba(255,184,107,0.06);
  border: 1px solid rgba(255,184,107,0.22);
  border-radius: 12px;
}
.unlock-form-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.unlock-form-h > span:first-child {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--warn);
}
.unlock-form-foot {
  margin-top: 8px;
  font-size: 10px;
  color: var(--ink-3);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.05em;
}
.unlock-pending {
  margin-top: 8px;
  padding: 12px 14px;
  background: rgba(255,184,107,0.08);
  border: 1px solid rgba(255,184,107,0.25);
  border-radius: 10px;
}
.unlock-pending-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--warn);
}
.unlock-pending-meta {
  margin-top: 4px;
  font-size: 11px;
  color: var(--ink-3);
  line-height: 1.5;
}
.unlock-pending-meta em { color: var(--ink-2); font-style: italic; }
.unlock-pending-foot {
  margin-top: 6px;
  font-size: 10px;
  color: var(--ink-3);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
}

/* Admin pending highlight */
.admin-lic-pending {
  border-color: rgba(255,184,107,0.4) !important;
  box-shadow: 0 10px 30px rgba(255,184,107,0.12);
}
.admin-lic-unlock-block {
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(255,184,107,0.08);
  border-left: 3px solid var(--warn);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.5;
}
.admin-lic-unlock-block strong { color: var(--warn); }
.admin-btn-approve {
  background: rgba(74,222,128,0.12) !important;
  border-color: rgba(74,222,128,0.4) !important;
  color: var(--good) !important;
}
.admin-btn-approve:hover { background: rgba(74,222,128,0.2) !important; }

/* ── Leak lookup ── */
.leak-lookup {
  padding: 18px;
  background: linear-gradient(180deg, rgba(248,113,113,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(248,113,113,0.22);
  border-radius: 14px;
  margin-bottom: 20px;
}
.leak-lookup-h {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}
.leak-lookup-h > span:first-child {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.leak-lookup-sub {
  font-size: 12px;
  color: var(--ink-3);
}
.leak-lookup-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.leak-lookup-err {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: 8px;
  color: #f87171;
  font-size: 12px;
}
.leak-lookup-result {
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.32);
  border-radius: 10px;
}
.leak-lookup-result-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--good);
  margin-bottom: 8px;
}
.leak-lookup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 6px 16px;
  font-size: 12px;
}
.leak-lookup-grid > div { color: var(--ink-2); }
.leak-lookup-grid span { color: var(--ink-3); margin-right: 4px; }
.leak-lookup-grid code {
  background: rgba(255,255,255,0.04);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
}
.leak-lookup-grid strong { color: #fff; font-family: 'Inter', system-ui, sans-serif; letter-spacing: -0.01em; }

/* ── File Browser ── */
.filebrowser { padding-top: 0; }
.fb-header { margin-bottom: 18px; }
.fb-controls {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.fb-tree {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 8px 6px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.5px;
  max-height: 70vh;
  overflow-y: auto;
}
.fb-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.1s;
}
.fb-row:hover { background: rgba(0, 169, 255,0.06); }
.fb-folder { font-weight: 600; }
.fb-expand {
  width: 18px; height: 18px;
  background: transparent;
  border: none;
  color: var(--ink-3);
  cursor: pointer;
  font-size: 11px;
  padding: 0;
  flex-shrink: 0;
}
.fb-expand:hover { color: var(--accent); }
.fb-check {
  width: 14px; height: 14px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.fb-icon {
  flex-shrink: 0;
  font-size: 14px;
  width: 18px;
}
.fb-name {
  flex: 1;
  min-width: 0;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fb-folder .fb-name { color: #fff; }
.fb-size {
  flex-shrink: 0;
  font-size: 10px;
  color: var(--ink-3);
  min-width: 60px;
  text-align: right;
}
.fb-extract {
  flex-shrink: 0;
  padding: 2px 8px;
  background: rgba(0, 169, 255,0.1);
  border: 1px solid rgba(0, 169, 255,0.2);
  border-radius: 4px;
  color: var(--accent);
  font-size: 9px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.15s;
}
.fb-extract:hover { background: rgba(0, 169, 255,0.2); }
.fb-stats {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.fb-stats-warn { color: var(--warn); }

/* ── Bot keys (klaar om in te wisselen) ── */
.bot-keys-block {
  margin-bottom: 18px;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0, 169, 255,0.10), rgba(0, 169, 255,0.03));
  border: 1px solid rgba(0, 169, 255,0.25);
  border-radius: 14px;
}
.bot-keys-h {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.bot-keys-h > span:first-of-type { flex: 1; }
.bot-keys-count {
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0, 169, 255,0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}
.bot-keys-list {
  display: grid;
  gap: 8px;
}
.bot-key-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.bot-key-row:hover {
  border-color: rgba(0, 169, 255,0.32);
  background: rgba(255,255,255,0.05);
}
.bot-key-img {
  width: 44px; height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  background: rgba(0, 169, 255,0.1);
  border: 1px solid rgba(0, 169, 255,0.2);
}
.bot-key-img-fallback {
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.bot-key-info { flex: 1; min-width: 0; }
.bot-key-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.bot-key-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bot-key-fingerprint {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--ink-3);
}
.bot-key-btn {
  padding: 9px 16px !important;
  font-size: 12px !important;
  flex-shrink: 0;
  font-weight: 600 !important;
}

@media (max-width: 720px) {
  .bot-key-row { flex-wrap: wrap; }
  .bot-key-btn { width: 100%; justify-content: center; }
}

/* Legacy dl-section/dl-row classes blijven werken voor andere plekken */
.dl-section {
  border-top: 1px solid var(--ink-4);
  padding-top: 14px;
  display: grid;
  gap: 10px;
}
.dl-section-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.dl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
}
.dl-info { flex: 1; min-width: 0; }
.dl-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.dl-meta {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
}
.dl-btn {
  padding: 8px 14px !important;
  font-size: 12px !important;
  border-radius: 999px !important;
}
.dl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255,255,255,0.05) !important;
  color: var(--ink-3) !important;
  box-shadow: none !important;
  transform: none !important;
}
.dl-empty {
  padding: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  border: 1px dashed var(--ink-4);
  border-radius: 10px;
}

/* ── Review form (op dashboard purchase cards) ── */
.purchase-review {
  border-top: 1px solid var(--ink-4);
  padding-top: 14px;
}
.review-form-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 169, 255,0.08);
  border: 1px solid rgba(0, 169, 255,0.22);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.review-form-toggle:hover {
  background: rgba(0, 169, 255,0.15);
  border-color: rgba(0, 169, 255,0.4);
}
.review-form {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}
.review-form-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.review-form-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.review-form-close {
  background: transparent;
  border: none;
  color: var(--ink-3);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
  transition: color 0.2s;
}
.review-form-close:hover { color: var(--ink); }
.review-stars-input {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}
.review-star {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: rgba(255,255,255,0.18);
  padding: 2px 4px;
  transition: all 0.15s;
}
.review-star.on { color: #ffb86b; transform: scale(1.05); }
.review-star:hover { transform: scale(1.15); }
.review-stars-label {
  margin-left: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.review-textarea {
  resize: vertical;
  min-height: 70px;
  font-size: 13px !important;
  font-family: 'Inter', sans-serif !important;
}
.review-form-meta {
  margin-top: 6px;
  text-align: right;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  color: var(--ink-3);
}
.review-form-msg {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}
.review-form-msg.ok {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--good);
}
.review-form-msg.err {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: var(--bad);
}
.review-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 12px;
}
.review-form-submit {
  padding: 8px 16px !important;
  font-size: 12px !important;
}

/* ── Owned product page ── */
.owned-page { min-height: 100vh; }
.own-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-bottom: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.own-back:hover {
  background: rgba(0, 169, 255,0.1);
  border-color: var(--accent-line);
  color: var(--accent);
}
.own-header {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}
.own-header-img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.own-header-img img { width: 100%; height: 100%; object-fit: cover; }
.own-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 14px;
}
.own-meta {
  font-size: 13px;
  color: var(--ink-3);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.05em;
  margin: 0;
}
.own-section-title {
  font-size: clamp(28px, 3.5vw, 44px) !important;
  margin: 0 !important;
}

.own-dl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.own-dl-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(0, 169, 255,0.06), rgba(0, 169, 255,0.02));
  border: 1px solid rgba(0, 169, 255,0.18);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(.2,.9,.3,1);
}
.own-dl-card:not(.disabled):not(.cooldown):hover {
  border-color: rgba(0, 169, 255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 169, 255,0.18);
}
.own-dl-card.cooldown {
  background: linear-gradient(180deg, rgba(255,184,107,0.06), rgba(255,184,107,0.02));
  border-color: rgba(255,184,107,0.22);
}
.own-dl-card.disabled {
  background: rgba(255,255,255,0.02);
  border-color: var(--ink-4);
  opacity: 0.6;
}
.own-dl-card.shared {
  background: linear-gradient(180deg, rgba(74,222,128,0.08), rgba(74,222,128,0.02));
  border-color: rgba(74,222,128,0.28);
}
.own-dl-card.shared:not(.disabled):not(.cooldown):hover {
  border-color: rgba(74,222,128,0.5);
  box-shadow: 0 14px 40px rgba(74,222,128,0.18);
}
.own-dl-card.shared .own-dl-icon {
  background: rgba(74,222,128,0.15);
  border-color: rgba(74,222,128,0.3);
  color: var(--good);
}
.own-dl-card.shared .own-dl-btn {
  background: linear-gradient(180deg, #22c55e, #16a34a);
  box-shadow: 0 10px 30px rgba(34,197,94,0.35);
}
.own-dl-card.shared .own-dl-btn:hover:not(:disabled) {
  box-shadow: 0 18px 50px rgba(34,197,94,0.45);
}
.own-dl-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(0, 169, 255,0.15);
  border: 1px solid rgba(0, 169, 255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.own-dl-card.cooldown .own-dl-icon {
  background: rgba(255,184,107,0.15);
  border-color: rgba(255,184,107,0.3);
  color: var(--warn);
}
.own-dl-info { flex: 1; min-width: 0; }
.own-dl-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.own-dl-sub {
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'Inter', sans-serif;
}
.own-dl-countdown {
  font-size: 11px;
  color: var(--warn);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.own-dl-countdown strong { font-weight: 700; }
.own-dl-btn {
  flex-shrink: 0;
  padding: 12px 18px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}
.own-dl-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(255,255,255,0.06) !important;
  color: var(--ink-3) !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Install mode toggle (localhost vs server) */
.install-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.install-toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  color: var(--ink-2);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: all 0.2s cubic-bezier(.2,.9,.3,1);
  position: relative;
}
.install-toggle-btn:hover {
  border-color: rgba(0, 169, 255,0.32);
  background: rgba(0, 169, 255,0.06);
  transform: translateY(-1px);
}
.install-toggle-btn.active {
  border-color: rgba(0, 169, 255,0.55);
  background: linear-gradient(180deg, rgba(0, 169, 255,0.14), rgba(0, 169, 255,0.04));
  color: var(--ink);
  box-shadow: 0 8px 28px rgba(0, 169, 255,0.22);
}
.install-toggle-btn.active::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.install-toggle-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 2px;
}
.install-toggle-sub {
  font-size: 12px;
  color: var(--ink-3);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .install-toggle { grid-template-columns: 1fr; }
}

/* Install video placeholder */
.own-video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(60% 70% at 50% 30%, rgba(0, 169, 255,0.18), transparent 70%),
    linear-gradient(180deg, #0d1320, #0a0a0a);
  border: 1px solid rgba(0, 169, 255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.own-video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 169, 255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 169, 255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 70%);
          mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 30%, transparent 70%);
  pointer-events: none;
}
.own-video-inner {
  position: relative;
  z-index: 1;
  max-width: 460px;
}
.own-video-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(0, 169, 255,0.18), rgba(0, 124, 244,0.1));
  border: 1px solid rgba(0, 169, 255,0.35);
  color: var(--accent);
  margin-bottom: 22px;
  box-shadow: 0 14px 40px rgba(0, 169, 255,0.25);
}
.own-video-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.own-video-sub {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .own-dl-grid { grid-template-columns: 1fr; }
  .own-dl-card { padding: 16px; gap: 12px; }
  .own-dl-icon { width: 44px; height: 44px; }
  .own-dl-label { font-size: 18px; }
  .own-header-img { width: 96px; height: 96px; }
  .own-video-placeholder { padding: 30px 20px; aspect-ratio: 4/3; }
  .own-video-icon { width: 72px; height: 72px; }
}

/* ── Admin panel ── */
.admin-page { min-height: 100vh; }
.admin-save-msg {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 6px;
}
.admin-save-msg.ok {
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--good);
}
.admin-save-msg.err {
  background: rgba(248,113,113,0.1);
  border: 1px solid rgba(248,113,113,0.3);
  color: var(--bad);
}

.admin-prod-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
}
.admin-prod-img {
  width: 56px; height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}
.admin-prod-info { flex: 1; min-width: 0; }
.admin-prod-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2px;
}
.admin-prod-meta {
  font-size: 11px;
  color: var(--ink-3);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
}
.admin-prod-actions {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.admin-btn-sm {
  padding: 8px 14px !important;
  font-size: 12px !important;
}
.admin-btn-del {
  background: rgba(248,113,113,0.12) !important;
  border: 1px solid rgba(248,113,113,0.3) !important;
  color: #f87171 !important;
}
.admin-btn-del:hover {
  background: rgba(248,113,113,0.2) !important;
}
.admin-btn-mini {
  padding: 4px 10px;
  font-size: 11px;
  background: transparent;
  border: 1px solid var(--ink-4);
  color: var(--ink-3);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.admin-btn-mini:hover { color: var(--ink); border-color: var(--ink-3); }

/* ── Admin modal (product editor) ── */
.admin-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 220;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.admin-modal {
  width: 100%; max-width: 880px; max-height: 92vh;
  background: rgba(8,11,18,0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  display: flex; flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  animation: modalIn 0.3s cubic-bezier(.2,.9,.3,1);
}
.admin-modal-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--ink-4);
}
.admin-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}
.admin-modal-foot {
  padding: 18px 28px;
  border-top: 1px solid var(--ink-4);
  display: flex; justify-content: flex-end; gap: 10px;
  background: rgba(255,255,255,0.02);
}

.admin-section-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-4);
}
.admin-section-h:first-child { margin-top: 0; }

.admin-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.admin-label {
  display: block;
  font-size: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.admin-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: var(--ink);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s;
}
.admin-input:focus {
  outline: none;
  border-color: var(--accent-line);
  background: rgba(255,255,255,0.04);
}
textarea.admin-input { resize: vertical; line-height: 1.5; min-height: 60px; font-family: 'Inter', sans-serif; }
select.admin-input { cursor: pointer; }

.admin-image-prev {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ink-4);
}
.admin-image-prev.sm { width: 70px; height: 70px; border-radius: 8px; }
.admin-image-prev img { width: 100%; height: 100%; object-fit: cover; }
.admin-image-rm {
  position: absolute; top: 4px; right: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}
.admin-image-add {
  width: 70px; height: 70px;
  border: 2px dashed var(--ink-4);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3);
  font-size: 11px;
  cursor: pointer;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}
.admin-image-add:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.admin-variant {
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--ink-4);
  border-radius: 14px;
  margin-bottom: 14px;
}
.admin-sneakpeek {
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--ink-4);
  border-radius: 12px;
}

@media (max-width: 720px) {
  .admin-grid-2 { grid-template-columns: 1fr; }
  .admin-prod-row { flex-direction: column; align-items: stretch; }
  .admin-prod-actions { justify-content: flex-end; }
  .admin-modal { max-height: 100vh; border-radius: 0; }
}

/* ── Sneak peek accordion (lange rechthoek, duidelijk donker) ── */
.sneak-acc {
  background: #0d1320;
  color: #e5e5e5;
  border: 1px solid rgba(0, 169, 255,0.18);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.sneak-acc:hover {
  border-color: rgba(0, 169, 255,0.4);
  border-left-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.sneak-acc.open {
  border-color: rgba(0, 169, 255,0.55);
  box-shadow: 0 14px 40px rgba(0, 169, 255,0.18), 0 0 0 1px rgba(0, 169, 255,0.18);
}
.sneak-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
  color: inherit;
}
.sneak-acc-head:hover { background: rgba(0, 169, 255,0.04); }
.sneak-acc-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 4px;
}
.sneak-acc-sub {
  font-size: 12px;
  color: rgba(233,236,243,0.55);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
}
.sneak-acc-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.sneak-acc-count {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 169, 255,0.1);
  border: 1px solid rgba(0, 169, 255,0.22);
}
.sneak-acc-chevron {
  font-size: 18px;
  color: var(--accent);
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0, 169, 255,0.1);
  line-height: 1;
}
.sneak-acc-chevron.open { transform: rotate(180deg); }
.sneak-acc-body {
  padding: 6px 24px 24px;
  background: #0a0f1a;
  border-top: 1px solid rgba(0, 169, 255,0.12);
  animation: fadeIn 0.25s ease;
}

/* ── Sneak peeks (op product page, oude styles voor losse blokken) ── */
.sneakpeek-block {
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
}
.sneakpeek-head {
  margin-bottom: 18px;
}
.sneakpeek-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--ink);
}
.sneakpeek-sub {
  font-size: 13px;
  color: var(--ink-3);
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
}
.sneakpeek-grid {
  display: grid;
  gap: 10px;
}
.sneakpeek-grid.count-1 { grid-template-columns: 1fr; }
.sneakpeek-grid.count-2 { grid-template-columns: 1fr 1fr; }
.sneakpeek-grid.count-3 { grid-template-columns: repeat(3, 1fr); }
.sneakpeek-grid.count-4 { grid-template-columns: repeat(2, 1fr); }
.sneakpeek-img {
  display: block;
  aspect-ratio: 16/10;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: zoom-in;
  transition: all 0.3s cubic-bezier(.2,.9,.3,1);
  position: relative;
  overflow: hidden;
}
.sneakpeek-img:hover {
  transform: translateY(-2px);
  border-color: var(--accent-line);
  box-shadow: 0 14px 40px rgba(0, 169, 255,0.18);
}
.sneakpeek-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity 0.3s;
}
.sneakpeek-img:hover::after { opacity: 1; }
@media (max-width: 720px) {
  .sneakpeek-grid.count-3, .sneakpeek-grid.count-4 { grid-template-columns: 1fr; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: transform 0.2s, box-shadow 0.3s, background 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #ffffff, #cfd9ec);
  color: #0a0a0a;
  box-shadow: 0 14px 30px rgba(0, 169, 255,0.18);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(0, 169, 255,0.32); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--ink);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
.btn-blue {
  background: linear-gradient(180deg, rgba(0, 169, 255,0.95), rgba(0, 124, 244,0.95));
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 124, 244,0.32);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(0, 124, 244,0.45); }

/* ── Glass / cards ── */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  transition: transform 0.4s cubic-bezier(.2,.9,.3,1), border-color 0.3s, box-shadow 0.4s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 169, 255,0.32);
  box-shadow: 0 20px 60px rgba(0, 169, 255,0.18), 0 0 0 1px rgba(0, 169, 255,0.12);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-2);
}
.tag.accent { background: var(--accent-soft); border-color: var(--accent-line); color: var(--accent); }
.tag.warn   { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); color: var(--warn); }
.tag.good   { background: rgba(74,222,128,0.10); border-color: rgba(74,222,128,0.28); color: var(--good); }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(.2,.9,.3,1), transform 0.9s cubic-bezier(.2,.9,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }
.reveal.delay-4 { transition-delay: 0.32s; }
.reveal.delay-5 { transition-delay: 0.40s; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 6vw 80px;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 169, 255,0.2);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 169, 255,0.2); }
  50% { box-shadow: 0 0 0 8px rgba(0, 169, 255,0.05); }
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  margin: 0;
  color: var(--ink);
}
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.5;
  margin: 32px 0 0;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.hero-meta-item .v {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.hero-meta-item .l {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}

/* hero logo art */
.hero-art {
  position: absolute;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  width: 720px;
  height: 720px;
  pointer-events: none;
  z-index: 1;
}
.hero-art .glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 169, 255,0.4), transparent 60%);
  filter: blur(40px);
  animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
.hero-art .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 169, 255,0.18);
  animation: spin 60s linear infinite;
}
.hero-art .ring.r2 { inset: 8%; border-color: rgba(0, 169, 255,0.10); animation-duration: 80s; animation-direction: reverse; }
.hero-art .ring.r3 { inset: 16%; border-color: rgba(0, 169, 255,0.06); animation-duration: 100s; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-art img {
  position: absolute;
  inset: 18%;
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter: drop-shadow(0 30px 80px rgba(0, 169, 255,0.55));
}

/* hero scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--ink-3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 30px;
  background: linear-gradient(180deg, var(--ink-3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── Cinematic hero (video + skyline + overlay) ── */
.hero.hero-cinema {
  padding: 160px 6vw 120px;
  align-items: center;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: #050505;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 640px) {
  .hero-video { transform: scale(1.25); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.75) 100%);
}
.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}
.hero.hero-cinema .hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero.hero-cinema .hero-eyebrow { justify-content: center; }
.hero.hero-cinema .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
.hero.hero-cinema .hero-actions { justify-content: center; }
.hero.hero-cinema .hero-meta { justify-content: center; }
/* video blijft ALTIJD tonen - geen reduced-motion cutoff (poster is prima statisch alternatief) */
.hero-video { display: block !important; opacity: 1 !important; mix-blend-mode: normal !important; }
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Section ── */
.section {
  position: relative;
  padding: 120px 6vw;
  z-index: 2;
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
  max-width: 800px;
}
.section-title {
  font-size: clamp(40px, 5.5vw, 84px);
  margin: 0;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  max-width: 560px;
}

/* services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.service-card .num {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.service-card h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.service-card p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.service-card .arrow-icon {
  position: absolute;
  bottom: 22px;
  right: 22px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0, 169, 255,0.10);
  border: 1px solid rgba(0, 169, 255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}
.service-card:hover .arrow-icon {
  background: var(--accent);
  color: #0a0a0a;
  transform: rotate(-45deg);
}

/* featured product */
.featured {
  position: relative;
  padding: 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 169, 255,0.10), rgba(11,13,18,0.96));
  border: 1px solid rgba(0, 169, 255,0.22);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}
.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 169, 255,0.18), transparent 60%);
  pointer-events: none;
}
.featured-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.025) 0 12px, rgba(255,255,255,0.005) 12px 24px);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.featured-art .ph-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.featured-art img {
  width: 60%;
  filter: drop-shadow(0 20px 60px rgba(0, 169, 255,0.4));
}

/* product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}
.product-img {
  aspect-ratio: 4/3;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 8px, rgba(255,255,255,0.005) 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink-3);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(0, 169, 255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.product-card:hover .product-img::after { opacity: 1; }
.product-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin: 0;
}
.product-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}
.product-desc {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

/* stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
}
.stat-v {
  font-size: clamp(40px, 5vw, 68px);
}
.stat-l {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

/* reviews - geen zichtbare scrollbar, swipen werkt nog steeds */
.reviews-row {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;       /* Firefox */
  -ms-overflow-style: none;    /* IE/old Edge */
  -webkit-overflow-scrolling: touch;
  position: relative;
  /* Fade gradient aan de randen zodat je ziet dat er meer is */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
          mask-image: linear-gradient(90deg, transparent, #000 32px, #000 calc(100% - 32px), transparent);
}
.reviews-row::-webkit-scrollbar { display: none; height: 0; width: 0; }
.review-card {
  min-width: 360px;
  padding: 28px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.review-stars { color: var(--warn); letter-spacing: 1px; font-size: 14px; }
.review-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.review-source-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(88,101,242,0.14);
  border: 1px solid rgba(88,101,242,0.3);
  color: #a5b4fc;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.review-text {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  flex: 1;
  margin: 0;
}
.review-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  background: var(--accent-deep);
  border: 1px solid rgba(255,255,255,0.08);
}
.review-avatar-letter {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
}
.review-author {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review-product {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: 1px;
}

/* discord cta */
.discord {
  position: relative;
  padding: 80px 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(88,101,242,0.16), rgba(11,13,18,0.96));
  border: 1px solid rgba(88,101,242,0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  flex-wrap: wrap;
}
.discord::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(88,101,242,0.25), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.discord h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 14px;
  position: relative;
}
.discord p {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
  position: relative;
}

/* footer */
.footer {
  padding: 80px 6vw 40px;
  border-top: 1px solid var(--ink-4);
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand img { width: 40px; filter: drop-shadow(0 0 12px rgba(0, 169, 255,0.4)); }
.footer-brand p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 320px;
  margin-top: 16px;
}
.footer-col h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid var(--ink-4);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

/* ── Category page ── */
.cat-hero {
  padding: 180px 6vw 60px;
}
.cat-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 6vw 20px;
  border-bottom: 1px solid var(--ink-4);
}
.filter-pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: var(--ink-2);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.filter-pill.on,
.filter-pill:hover {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
}

/* ── Product detail ── */
.product-detail {
  padding: 140px 6vw 60px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
}
.gallery-main {
  aspect-ratio: 1.2;
  border-radius: 20px;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 12px, rgba(255,255,255,0.005) 12px 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.gallery-main img {
  width: 50%;
  filter: drop-shadow(0 20px 60px rgba(0, 169, 255,0.4));
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  background: repeating-linear-gradient(-45deg, rgba(255,255,255,0.025) 0 8px, rgba(255,255,255,0.005) 8px 16px);
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: border-color 0.2s;
}
.thumb.on, .thumb:hover { border-color: var(--accent-line); }

.detail-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.tag-bad {
  color: var(--bad) !important;
  border-color: rgba(248,113,113,0.3) !important;
  background: rgba(248,113,113,0.08) !important;
}
.detail-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
}
.detail-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 480px;
}

/* Variant cards */
.variant-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.variant-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s cubic-bezier(.2,.9,.3,1);
}
.variant-card:hover {
  background: rgba(0, 169, 255,0.06);
  border-color: rgba(0, 169, 255,0.3);
  transform: translateY(-1px);
}
.variant-card.active {
  background: linear-gradient(180deg, rgba(0, 169, 255,0.16), rgba(0, 169, 255,0.06));
  border-color: rgba(0, 169, 255,0.55);
  box-shadow: 0 10px 30px rgba(0, 169, 255,0.22), inset 0 0 0 1px rgba(0, 169, 255,0.4);
}
.variant-card-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.variant-card-name {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.variant-card.active .variant-card-name { color: var(--accent); }
.variant-card-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.variant-card-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: #fff;
}

/* Price block */
.price-block {
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(0, 169, 255,0.06), rgba(255,255,255,0.015));
  border: 1px solid rgba(0, 169, 255,0.18);
  border-radius: 16px;
  margin-bottom: 18px;
}
.price-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.price-now {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-was {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  text-decoration: line-through;
  color: var(--ink-3);
}
.price-discount-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(74,222,128,0.14);
  border: 1px solid rgba(74,222,128,0.32);
  color: var(--good);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* CTAs */
.detail-ctas {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-bottom: 22px;
}
.cta-buy {
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 16px 24px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
.cta-buy.added {
  background: linear-gradient(180deg, rgba(74,222,128,0.95), rgba(34,197,94,0.95)) !important;
  box-shadow: 0 14px 30px rgba(74,222,128,0.32) !important;
}
.btn-back-icon {
  width: 52px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--ink-2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.btn-back-icon:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
}

/* Feature pills */
.feature-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.feat-pill svg { color: var(--accent); }

/* tabs */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--ink-4);
  margin: 60px 0 30px;
}
.tab {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink-3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.tab.on { color: var(--ink); border-color: var(--accent); }
.tab:hover { color: var(--ink); }

.specs-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.specs {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
}
.specs-h {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 700;
}
.specs-list {
  display: grid;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.spec-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.spec-item:last-child { border-bottom: none; }
.spec-ic {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 169, 255,0.1);
  border: 1px solid rgba(0, 169, 255,0.18);
  border-radius: 8px;
  color: var(--accent);
}
.spec-k {
  font-family: 'Inter', sans-serif;
  color: var(--ink-2);
  font-weight: 500;
}
.spec-v {
  color: #fff;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: -0.01em;
}
/* Backwards compat - oude .spec-row classes als ze nog ergens gebruikt worden */
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ink-4);
  font-size: 13px;
}
.spec-row:last-child { border-bottom: none; }

/* ── Sneak peek promo CTA in specs sidebar ── */
.sneak-promo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 169, 255,0.14), rgba(0, 124, 244,0.06));
  border: 1px solid rgba(0, 169, 255,0.32);
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: 'Inter', sans-serif;
  transition: all 0.25s cubic-bezier(.2,.9,.3,1);
  position: relative;
  overflow: hidden;
}
.sneak-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(0, 169, 255,0.18), transparent 60%);
  pointer-events: none;
}
.sneak-promo:hover {
  border-color: rgba(0, 169, 255,0.55);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 169, 255,0.25);
}
.sneak-promo-thumbs {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.sneak-promo-thumb {
  width: 44px; height: 44px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 2px solid rgba(11,13,20,0.95);
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.sneak-promo-thumb + .sneak-promo-thumb { margin-left: -14px; }
.sneak-promo-more {
  margin-left: -14px;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(0, 169, 255,0.2);
  border: 2px solid rgba(11,13,20,0.95);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
}
.sneak-promo-info {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.sneak-promo-eyebrow {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.sneak-promo-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2px;
}
.sneak-promo-sub {
  font-size: 12px;
  color: var(--ink-3);
}
.sneak-promo-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s;
}
.sneak-promo:hover .sneak-promo-arrow { transform: translateX(2px) rotate(-15deg); }

/* ── Markdown content (product beschrijvingen) ── */
.md-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Inter', sans-serif;
}
.md-content .md-h1 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 18px 0 6px;
  color: #fff;
}
.md-content .md-h1:first-child { margin-top: 0; }
.md-content .md-h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 14px 0 4px;
  color: #fff;
}
.md-content .md-p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
.md-content .md-p strong { color: #fff; font-weight: 700; }
.md-content .md-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.md-content .md-list li {
  position: relative;
  padding: 8px 14px 8px 32px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 8px;
}
.md-content .md-list li::before {
  content: "";
  position: absolute;
  left: 14px; top: 16px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 169, 255,0.5);
}
.md-content .md-list li strong { color: #fff; font-weight: 700; }
.md-content .md-divider {
  text-align: center;
  color: var(--ink-3);
  font-size: 18px;
  letter-spacing: 0.5em;
  padding: 4px 0;
}

/* refund warning banner */
.refund-warning {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(248,113,113,0.14), rgba(245,158,11,0.08));
  border: 1.5px solid rgba(248,113,113,0.4);
  border-left: 4px solid #f87171;
  border-radius: 14px;
  margin-top: 32px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 14px 40px rgba(248,113,113,0.15);
}
.refund-warning strong { color: #fca5a5; font-weight: 700; }
.refund-warning-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  color: #fca5a5;
}

/* refund mini-notice (cart, product page) */
.refund-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.22);
  border-radius: 8px;
  font-size: 11px;
  color: rgba(252,165,165,0.85);
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 12px;
}
.refund-notice::before {
  content: "⚠";
  color: #f87171;
  font-size: 14px;
  flex-shrink: 0;
}

/* terms-acceptatie checkbox in cart */
.cart-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0, 169, 255,0.05);
  border: 1px solid rgba(0, 169, 255,0.18);
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.4;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
  font-family: 'Inter', sans-serif;
}
.cart-terms input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.cart-terms a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cart-terms a:hover { color: #8ec0ff; }

/* terms */
.terms-page {
  padding: 160px 6vw 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.terms-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  margin-top: 60px;
}
.toc {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toc-link {
  font-size: 13px;
  color: var(--ink-3);
  cursor: pointer;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
  transition: all 0.2s;
}
.toc-link.on, .toc-link:hover {
  color: var(--accent);
  border-left-color: var(--accent);
}
.terms-content h2 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.03em;
  margin: 60px 0 18px;
}
.terms-content h2:first-child { margin-top: 0; }
.terms-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 14px;
}

/* parallax helper layers */
.parallax-layer { will-change: transform; }

/* responsive */
@media (max-width: 1080px) {
  .hero-art { right: -240px; width: 540px; height: 540px; opacity: 0.6; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .featured { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .product-detail { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .terms-grid { grid-template-columns: 1fr; gap: 40px; }
  .toc { position: static; flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 820px) {
  /* Verberg de gecentreerde pill, toon mobile bar */
  .nav { display: none; }
  .nav-mobile {
    display: flex;
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 50;
    align-items: center;
    gap: 10px;
  }
  .nav-float { top: 14px; right: 14px; padding: 5px; }
  .nav-circle, .nav-login-circle { width: 36px; height: 36px; }
}

@media (max-width: 720px) {
  .nav-float { gap: 2px; padding: 4px; }
  .nav-circle, .nav-login-circle { width: 34px; height: 34px; }
  .nav-burger { width: 38px; height: 38px; }
  .nav-mobile-brand { padding: 7px 12px; }
  .nav-mobile-brand img { width: 20px; height: 20px; }
  .nav-mobile-brand span { font-size: 12px; }

  /* Hero compacter op mobile */
  .hero { padding: 100px 5vw 70px; min-height: auto; }
  .hero-title { font-size: clamp(40px, 11vw, 64px) !important; }
  .hero-sub { font-size: 15px; margin-top: 22px; }
  .hero-actions { gap: 10px; margin-top: 30px; }
  .hero-actions .btn { padding: 12px 18px; font-size: 13px; }
  .hero-meta { gap: 18px; margin-top: 40px; }
  .hero-meta-item .v { font-size: 22px; }
  .hero-meta-item .l { font-size: 9px; }
  .hero-art { display: none; }
  .hero-scroll { display: none; }

  /* Sections */
  .section { padding: 60px 5vw; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(32px, 8vw, 48px) !important; }
  .section-sub { font-size: 15px; }

  /* Grids stack */
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 36px 0; }
  .stat-v { font-size: clamp(28px, 8vw, 40px) !important; }
  .stat-l { font-size: 9px; }
  .services-grid, .product-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card { min-height: 180px; padding: 22px; }
  .service-card h3 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; padding-top: 20px; text-align: center; }

  /* Featured card */
  .featured { padding: 28px 22px; gap: 30px; }
  .featured > div:first-child { aspect-ratio: 16/10; }

  /* Discord CTA */
  .discord { padding: 40px 24px; gap: 24px; }
  .discord h2 { font-size: clamp(26px, 7vw, 36px); }

  /* Reviews */
  .review-card { min-width: 280px; padding: 22px; }
  .review-text { font-size: 14px; }

  /* Category page */
  .cat-hero { padding: 130px 5vw 36px; }
  .cat-filters { padding: 0 5vw 16px; gap: 6px; }
  .filter-pill { padding: 7px 12px; font-size: 11px; }

  /* Product detail */
  .product-detail { padding: 110px 5vw 40px; gap: 30px; }
  .gallery-main { aspect-ratio: 1; }
  .detail-side h1 { font-size: clamp(28px, 7vw, 40px); }
  .detail-price .now { font-size: 36px; }
  .tabs { margin: 40px 0 22px; overflow-x: auto; }
  .tab { padding: 12px 14px; font-size: 13px; white-space: nowrap; }
  .product-detail + .section > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 30px !important; }
  .specs { padding: 20px; }

  /* Sneak peek accordion */
  .sneak-acc-head { padding: 14px 16px; gap: 10px; }
  .sneak-acc-title { font-size: 15px; }
  .sneak-acc-sub { font-size: 11px; }
  .sneak-acc-count { display: none; }
  .sneak-acc-body { padding: 0 16px 16px; }

  /* Cart sidebar full-width */
  .cart-side { max-width: 100vw; }

  /* Modal full-screen */
  .modal-overlay { padding: 0; align-items: stretch; }
  .modal { border-radius: 0; max-width: 100vw; padding: 50px 24px 30px; align-self: center; max-height: 100vh; }

  /* Account/Admin pages */
  .account-page .cat-hero, .admin-page .cat-hero { padding: 130px 5vw 30px; }
  .purchase-card { padding: 18px; }
  .dl-row { gap: 8px; padding: 10px; }
  .dl-btn { padding: 7px 10px !important; font-size: 11px !important; }

  /* Terms page */
  .terms-page { padding: 130px 5vw 50px; }
  .terms-content h2 { font-size: 22px; }
  .terms-content p { font-size: 14px; }
  .toc { gap: 6px; }
  .toc-link { font-size: 12px; }

  /* Pay toast */
  .pay-toast { top: 70px; padding: 12px 14px; font-size: 12px; }

  /* User dropdown - voorkomen dat-ie buiten beeld valt */
  .user-menu { width: calc(100vw - 28px); right: -8px; }
}

@media (max-width: 420px) {
  .nav-mobile-brand span { display: none; }
  .nav-mobile { left: 10px; }
  .nav-float { right: 10px; }
  .hero-title { font-size: 38px !important; }
  .hero-sub { font-size: 14px; }
  .section { padding: 50px 5vw; }
  .stats { grid-template-columns: 1fr 1fr; }
}


/* ─────────────────────────────────────────────
 * Reallife Remake - home sections (2026-09)
 * ───────────────────────────────────────────── */

.rl-section-head {
  margin: 0 auto 56px;
  text-align: center;
  align-items: center;
}
.rl-section-head .section-title { max-width: 720px; margin-left: auto; margin-right: auto; }
.rl-section-head .section-sub { max-width: 620px; margin-left: auto; margin-right: auto; margin-top: 14px; }
.rl-products-section, .rl-features-section { padding-left: 6vw; padding-right: 6vw; }

/* ── Products grid ── */
.rl-products-section { padding-top: 96px; padding-bottom: 96px; }
.rl-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 960px) { .rl-products { grid-template-columns: 1fr; padding: 0 16px; } }

.rl-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.rl-product-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.rl-product-card.rl-highlight {
  border-color: rgba(0, 169, 255, 0.45);
  background: linear-gradient(180deg, rgba(0, 124, 244, 0.08), var(--bg-2) 40%);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(0, 169, 255, 0.18);
}
.rl-ribbon {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--accent-deep);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.rl-product-head { padding-bottom: 22px; border-bottom: 1px solid var(--ink-5); }
.rl-product-cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.rl-product-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
  line-height: 1.2;
}
.rl-product-price { display: flex; align-items: baseline; gap: 8px; }
.rl-price-value {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.rl-price-once { font-size: 13px; color: var(--ink-3); }

.rl-product-bullets {
  list-style: none;
  padding: 24px 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rl-product-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
}
.rl-product-bullets li svg { color: var(--accent); flex-shrink: 0; }

.rl-product-actions { display: flex; gap: 8px; margin-top: 8px; }
.rl-product-actions .btn { flex: 1; justify-content: center; }
.rl-product-actions .btn-icon-only {
  flex: 0 0 auto;
  width: 44px;
  padding: 0;
  background: var(--bg-3);
  color: var(--ink);
  border: 1px solid var(--ink-4);
}
.rl-product-actions .btn-icon-only:hover { background: var(--ink-4); }

/* ── Features row ── */
.rl-features-section {
  padding-top: 40px;
  padding-bottom: 96px;
  border-top: 1px solid var(--ink-5);
}
.rl-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1180px;
  margin: 60px auto 0;
  padding: 0 24px;
}
@media (max-width: 900px) { .rl-features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .rl-features { grid-template-columns: 1fr; } }

.rl-feature { text-align: left; }
.rl-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.rl-feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.rl-feature-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
  margin: 0;
}



/* Coming soon variant */
.rl-product-card.rl-soon {
  opacity: 0.75;
  background: var(--bg-2);
  border-color: var(--ink-4);
}
.rl-ribbon-soon { background: var(--ink-4); color: var(--ink); }
.rl-price-soon { color: var(--ink-3); font-size: 28px; letter-spacing: 0.06em; }
.rl-product-card.rl-soon .rl-product-bullets li { color: var(--ink-3); }
.rl-product-card.rl-soon .rl-product-bullets li svg { color: var(--ink-3); }



/* =============================================================
 * MOBILE HARDENING (2026-09-03)
 * Loading state + touch-friendly buttons + safe-area for iPhones
 * ============================================================= */

/* App-loading state - visible until React mounts */
.app-loading {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s ease;
}
.app-loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.app-loading-brand {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--ink-3);
  font-weight: 600;
}
.app-loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--ink-4);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
/* Hide as soon as React mounts (root has children) */
#root:not(:empty) ~ #app-loading,
body:has(#root:not(:empty)) #app-loading {
  opacity: 0;
  pointer-events: none;
}

/* Touch-friendly sizing on mobile */
@media (max-width: 720px) {
  .btn { min-height: 44px; padding-left: 16px; padding-right: 16px; }
  .nav-circle { min-width: 44px; min-height: 44px; }

  /* Hero: tighter padding, smaller title */
  .hero.hero-cinema {
    padding: 100px 20px 80px;
    min-height: 90vh;
  }
  .hero-title {
    font-size: clamp(40px, 12vw, 64px) !important;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 15px !important;
    padding: 0 8px;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1; min-width: 0; justify-content: center; }
  .hero-meta { gap: 24px !important; margin-top: 40px !important; }
  .hero-meta-item .v { font-size: 24px; }

  /* Sections tighter */
  .section { padding: 60px 20px !important; }
  .rl-products-section { padding-top: 60px !important; padding-bottom: 60px !important; }
  .rl-features-section { padding-top: 20px !important; padding-bottom: 60px !important; }
  .rl-section-head { margin-bottom: 32px; }
  .section-title { font-size: clamp(32px, 8vw, 48px) !important; }

  /* Products stack cleanly */
  .rl-products { gap: 16px; padding: 0 !important; }
  .rl-product-card { padding: 24px 20px; }
  .rl-product-title { font-size: 20px; }
  .rl-price-value { font-size: 34px; }
  .rl-ribbon { top: -10px; font-size: 10px; padding: 4px 10px; }

  /* Features tighter */
  .rl-features { gap: 20px; margin-top: 32px !important; padding: 0 !important; }

  /* Discord CTA */
  .discord { padding: 32px 20px !important; gap: 24px; flex-direction: column; text-align: center; align-items: stretch; }

  /* Footer */
  .footer { padding: 40px 20px !important; }
  .footer-grid { gap: 32px; grid-template-columns: 1fr !important; }
}

/* Even smaller phones */
@media (max-width: 380px) {
  .hero.hero-cinema { padding: 88px 16px 64px; }
  .hero-title { font-size: 36px !important; }
  .hero-sub { font-size: 14px !important; }
  .btn { font-size: 14px; }
}

/* Safe-area for iPhone notch / dynamic island */
@supports (padding: env(safe-area-inset-top)) {
  .nav, .nav-mobile { padding-top: max(8px, env(safe-area-inset-top)); }
  .nav-float { top: max(18px, calc(env(safe-area-inset-top) + 8px)); }
  .hero.hero-cinema { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
}

/* No horizontal scroll on any device */
html, body { overflow-x: hidden; max-width: 100vw; }



/* Product visual header - reallife logo tile above the card body */
.rl-product-visual {
  position: relative;
  height: 140px;
  margin: -32px -28px 24px;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 169, 255, 0.25), transparent 60%),
    linear-gradient(135deg, #071a30 0%, #0a0a0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-4);
}
.rl-product-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 169, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 169, 255, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}
.rl-product-logo {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 8px 24px rgba(0, 169, 255, 0.4));
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
  position: relative;
  z-index: 1;
}
.rl-product-card:hover .rl-product-logo { transform: scale(1.08); }
.rl-product-card.rl-soon .rl-product-visual {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}
.rl-product-card.rl-soon .rl-product-visual svg { color: var(--ink-3); opacity: 0.6; }
.rl-product-card.rl-highlight .rl-product-visual {
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 169, 255, 0.4), transparent 60%),
    linear-gradient(135deg, #0a2540 0%, #0a0a0a 100%);
}

@media (max-width: 720px) {
  .rl-product-visual {
    height: 110px;
    margin: -24px -20px 20px;
  }
  .rl-product-logo { width: 56px; height: 56px; }
}



/* ─────────────────────────────────────────────
 * Admin - Leak checker (Watermark) panel
 * ───────────────────────────────────────────── */

.wm-panel {
  background: var(--bg-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-lg);
  padding: 32px;
  margin: 24px 0;
}
.wm-panel-head { margin-bottom: 24px; }
.wm-panel-title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.wm-panel-sub {
  margin: 0;
  color: var(--ink-3);
  font-size: 14px;
  line-height: 1.55;
}
.wm-panel-sub code {
  background: var(--bg-3);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--accent);
}

.wm-dropzone {
  border: 2px dashed var(--ink-4);
  border-radius: var(--r-md);
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  background: var(--bg);
}
.wm-dropzone:hover, .wm-dropzone.on {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.wm-dropzone.has-file {
  border-style: solid;
  border-color: var(--accent);
}
.wm-drop-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 8px;
}
.wm-drop-hint strong { color: var(--ink); font-size: 15px; }
.wm-drop-sub {
  color: var(--ink-3);
  font-size: 12px;
  margin-top: 6px;
}
.wm-file-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 4px;
}
.wm-file-size { color: var(--ink-3); font-size: 12px; }

.wm-actions { display: flex; gap: 10px; margin-top: 16px; }
.wm-err {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.3);
  border-radius: var(--r-sm);
  color: var(--bad);
  font-size: 14px;
}

.wm-result { margin-top: 24px; }
.wm-result-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--ink-3);
}
.wm-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.wm-badge-hit { background: var(--accent); color: #fff; }
.wm-badge-miss { background: var(--ink-4); color: var(--ink-2); }

.wm-empty {
  padding: 20px;
  background: var(--bg-3);
  border-radius: var(--r-sm);
  color: var(--ink-3);
  font-size: 13px;
  line-height: 1.7;
}

.wm-match {
  background: var(--bg);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-md);
  padding: 20px;
  margin-bottom: 12px;
}
.wm-strength-strong { border-color: var(--good); box-shadow: 0 0 0 1px rgba(74,222,128,0.2); }
.wm-strength-weak { border-color: var(--warn); }

.wm-match-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.wm-match-name { font-size: 18px; font-weight: 700; color: var(--ink); }
.wm-match-did { font-size: 12px; color: var(--ink-3); margin-top: 4px; }
.wm-match-did code { color: var(--accent); }

.wm-strength-badge {
  padding: 4px 10px;
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 4px;
}
.wm-strength-badge.wm-strong { background: var(--good); color: #0a0a0a; }
.wm-strength-badge.wm-weak { background: var(--warn); color: #0a0a0a; }

.wm-match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px 20px;
  font-size: 13px;
}
.wm-match-grid > div { display: flex; flex-direction: column; gap: 2px; }
.wm-match-grid span { font-size: 10px; letter-spacing: 0.12em; color: var(--ink-3); text-transform: uppercase; }
.wm-match-grid strong { color: var(--ink-2); font-size: 13px; }
.wm-match-grid code { color: var(--accent); font-size: 12px; }
.wm-marker-chip {
  display: inline-block !important;
  padding: 2px 6px !important;
  margin-right: 4px;
  background: var(--bg-3) !important;
  border-radius: 3px;
  font-size: 10px !important;
  text-transform: uppercase !important;
  color: var(--ink-2) !important;
  letter-spacing: 0.05em !important;
}

.wm-files { margin-top: 12px; }
.wm-files summary {
  cursor: pointer;
  color: var(--ink-3);
  font-size: 13px;
  padding: 6px 0;
}
.wm-files summary:hover { color: var(--accent); }
.wm-files ul { margin: 8px 0 0; padding-left: 20px; }
.wm-files code { font-size: 12px; color: var(--ink-2); }

.wm-history { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--ink-5); }
.wm-history h4 { margin: 0 0 12px; font-size: 14px; color: var(--ink); font-weight: 600; }
.wm-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.wm-table th, .wm-table td { text-align: left; padding: 8px 12px; border-bottom: 1px solid var(--ink-5); }
.wm-table th { color: var(--ink-3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; }
.wm-table td { color: var(--ink-2); }
.wm-table code { color: var(--accent); }



/* ─── Admin: manual grant purchase widget ─── */
.grant-widget {
  background: var(--bg-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-lg);
  padding: 24px;
  margin-bottom: 20px;
}
.grant-widget-head { margin-bottom: 20px; }
.grant-widget-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.grant-widget-sub {
  margin: 0;
  font-size: 13px;
  color: var(--ink-3);
}
.grant-widget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 16px;
  margin-bottom: 16px;
}
.grant-field { display: flex; flex-direction: column; gap: 6px; }
.grant-field span {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  text-transform: uppercase;
  font-weight: 500;
}
.grant-field-wide { grid-column: 1 / -1; }
@media (max-width: 720px) {
  .grant-widget-grid { grid-template-columns: 1fr; }
}
.grant-widget-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.grant-widget-msg {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 13px;
}
.grant-widget-msg.ok {
  background: rgba(74,222,128,0.12);
  border: 1px solid rgba(74,222,128,0.3);
  color: var(--good);
}
.grant-widget-msg.err {
  background: rgba(248,113,113,0.12);
  border: 1px solid rgba(248,113,113,0.3);
  color: var(--bad);
}



/* Grant-widget: product-picker buttons */
.grant-product-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.grant-product-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg);
  border: 2px solid var(--ink-4);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all .18s ease;
  color: var(--ink-2);
  text-align: left;
  font-family: inherit;
}
.grant-product-btn:hover {
  border-color: var(--accent-line);
  background: var(--bg-3);
}
.grant-product-btn.on {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 3px rgba(0, 169, 255, 0.12);
}
.grant-product-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.85;
}
.grant-product-info { flex: 1; min-width: 0; }
.grant-product-title {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.grant-product-price {
  font-size: 12px;
  color: var(--ink-3);
  font-weight: 500;
}
.grant-product-btn.on .grant-product-price { color: var(--accent); }
.grant-product-check {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}



/* ─── Yenzo reseller panel ─── */
.yenzo-page .cat-hero .display { color: var(--ink); }
.yenzo-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.yenzo-stat-card {
  background: var(--bg-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.yenzo-stat-card:hover {
  border-color: var(--accent-line);
  transform: translateY(-2px);
}
.yenzo-stat-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 10px;
}
.yenzo-stat-value {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.yenzo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.yenzo-table th {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--ink-4);
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.yenzo-table td {
  padding: 14px;
  border-bottom: 1px solid var(--ink-5);
  color: var(--ink-2);
  vertical-align: top;
}
.yenzo-table tbody tr:hover td { background: rgba(0, 169, 255, 0.03); }



/* ─── Reallife locaties CTA (alleen yenzo) ─── */
.rl-locaties-section { padding: 40px 6vw 96px; }
.rl-locaties {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 124, 244, 0.08) 0%, var(--bg-2) 60%);
  border: 1px solid var(--accent-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.rl-locaties::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 169, 255, 0.15), transparent 55%);
  pointer-events: none;
}
.rl-locaties-text { position: relative; z-index: 1; }
.rl-locaties-title {
  font-size: clamp(28px, 3.6vw, 42px);
  color: var(--ink);
  margin: 12px 0 12px;
  line-height: 1.1;
}
.rl-locaties-sub {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 16px;
}
.rl-locaties-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rl-locaties-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 500;
}
.rl-locaties-list li svg { color: var(--accent); flex-shrink: 0; }
.rl-locaties-image {
  position: relative;
  z-index: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--ink-4);
  transform: rotate(2deg);
  transition: transform .35s cubic-bezier(.2,.9,.3,1);
}
.rl-locaties-image:hover { transform: rotate(0deg) scale(1.02); }
.rl-locaties-image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .rl-locaties {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 24px;
  }
  .rl-locaties-image { transform: none; }
}

