/* ============================================================
   Computer Universum — terminal theme
   ============================================================ */

:root {
  --bg:        #0c120c;
  --bg-2:      #0e160e;
  --bg-3:      #131c13;
  --panel:     #0a0f0a;
  --line:      #1f3320;
  --line-2:    #2a4a2c;
  --ink:       #d2f3c8;
  --ink-2:     #93b78a;
  --ink-3:     #6c8c64;
  --accent:    #7CFF00;     /* matrix-groen */
  --accent-2:  #43e64c;     /* CRT-groen */
  --warn:      #ffd23f;
  --bad:       #ff5b5b;
  --ff-mono:   "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ff-body:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --side-w:    248px;
  --bar-h:     56px;
  --shadow:    0 6px 30px rgba(124,255,0,.07);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { overflow-x: clip; }

body {
  background:
    radial-gradient(1100px 540px at 110% -10%, rgba(124,255,0,.05), transparent 60%),
    repeating-linear-gradient(0deg, rgba(124,255,0,.025) 0 1px, transparent 1px 3px),
    var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: #b5ff66; text-decoration: underline; text-underline-offset: 2px; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

::selection { background: var(--accent); color: #0a0f0a; }

.cu-skip {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: #0a0f0a; padding: 8px 14px;
  font-family: var(--ff-mono); font-weight: 700; z-index: 1000;
}
.cu-skip:focus { left: 16px; top: 16px; }

/* ===== layout shell: sidebar links + content rechts ===== */
.cu-shell {
  display: grid;
  grid-template-columns: var(--side-w) 1fr;
  min-height: 100vh;
}

.cu-main {
  min-width: 0;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(124,255,0,.025), transparent 200px),
    var(--bg);
}

/* ===== top mobile bar ===== */
.cu-bar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--bar-h);
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.cu-bar__burger {
  width: 36px; height: 36px;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 8px; background: transparent; border: 1px solid var(--line-2); cursor: pointer;
  border-radius: 4px;
}
.cu-bar__burger span { display: block; height: 2px; background: var(--accent); }
.cu-bar__brand {
  display: inline-flex; align-items: center; gap: 10px; flex: 1;
  font-family: var(--ff-mono); color: var(--ink); font-weight: 700;
}
.cu-bar__logo {
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  background: var(--accent); color: #0a0f0a;
  font-family: var(--ff-mono); font-weight: 700;
}
.cu-bar__name i { color: var(--accent); font-style: normal; padding: 0 4px; }
.cu-bar__cart {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-2); padding: 6px 10px;
  color: var(--ink); font-family: var(--ff-mono); font-size: 13px;
}
.cu-bar__count {
  min-width: 20px; padding: 0 4px; height: 20px;
  display: inline-grid; place-items: center;
  background: var(--accent); color: #0a0f0a; font-weight: 700; font-size: 12px;
}

/* ===== sidebar (links, vast) ===== */
.cu-side {
  position: sticky; top: 0;
  height: 100vh;
  width: var(--side-w);
  padding: 24px 18px 18px;
  background: var(--panel);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  overflow-y: auto;
  font-family: var(--ff-mono);
  font-size: 14px;
}
.cu-side::after {
  content: "";
  pointer-events: none;
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(124,255,0,.025) 0 2px, transparent 2px 4px);
  mix-blend-mode: screen;
}
.cu-side__brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink);
}
.cu-side__brand:hover { text-decoration: none; }
.cu-side__mark {
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  background: var(--accent);
  color: #0a0f0a;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(124,255,0,.35);
}
.cu-side__mark-row { display: block; }
.cu-side__name b {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
}
.cu-side__name i {
  display: block;
  margin-top: 4px;
  color: var(--ink-3);
  font-style: normal;
  font-size: 11px;
}
.cu-side__status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: .04em;
}
.cu-led {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  animation: culed 1.6s ease-in-out infinite;
}
@keyframes culed { 50% { opacity: .35; } }
.cu-side__status-pct { color: var(--accent); font-weight: 700; }

.cu-nav { display: flex; flex-direction: column; gap: 2px; }
.cu-nav__title {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: 6px;
  letter-spacing: .08em;
  text-transform: lowercase;
}
.cu-nav__a, .cu-nav__sa {
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--ink-2);
  font-size: 13.5px;
  border-left: 2px solid transparent;
  border-radius: 0 2px 2px 0;
  transition: background .15s, color .15s, border-color .15s;
}
.cu-nav__a:hover, .cu-nav__sa:hover {
  background: var(--bg-2);
  color: var(--ink);
  text-decoration: none;
}
.cu-nav__a.is-active, .cu-nav__sa.is-active {
  background: linear-gradient(90deg, rgba(124,255,0,.10), transparent);
  color: var(--accent);
  border-left-color: var(--accent);
}
.cu-nav__icn {
  font-family: var(--ff-mono);
  color: var(--accent);
  font-weight: 700;
  width: 18px; text-align: center;
}
.cu-nav__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 2px;
}
.cu-nav__a.is-active .cu-nav__num { color: var(--accent); border-color: var(--line-2); }
.cu-nav__sub {
  display: none;
  flex-direction: column;
  gap: 1px;
  padding-left: 8px;
}
.cu-nav__sub.is-open { display: flex; }
.cu-nav__sa {
  grid-template-columns: 1fr auto;
  font-size: 12.5px;
  color: var(--ink-3);
  padding: 5px 10px 5px 14px;
}

.cu-side__cart {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line-2);
}
.cu-cart-link {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-size: 13px;
}
.cu-cart-link:hover { background: var(--bg-3); color: var(--accent); text-decoration: none; }
.cu-cart-link__num {
  min-width: 22px; padding: 0 6px; height: 22px;
  display: inline-grid; place-items: center;
  background: var(--accent); color: #0a0f0a; font-weight: 700;
}
.cu-side__addr {
  display: flex; flex-direction: column;
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.5;
  border-top: 1px dashed var(--line-2);
  padding-top: 12px;
}
.cu-side__addr-lbl { color: var(--ink-3); margin-bottom: 4px; opacity: .7; }
.cu-side__addr-line { color: var(--ink-2); }
.cu-side__legal {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  font-size: 11px;
  padding-top: 8px;
  border-top: 1px dashed var(--line-2);
}
.cu-side__legal a { color: var(--ink-3); }
.cu-side__legal a:hover { color: var(--accent); }

/* ===== topbar (binnen .cu-main) ===== */
.cu-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 14px;
  padding: 12px 28px;
  background: rgba(10,15,10,.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 13px;
}
.cu-topbar__breadcrumbs {
  color: var(--ink-3);
}
.cu-topbar__breadcrumbs a { color: var(--ink-2); }
.cu-topbar__breadcrumbs a:hover { color: var(--accent); }
.cu-topbar__sep { padding: 0 6px; color: var(--ink-3); }
.cu-topbar__time { color: var(--ink-3); }
.cu-search {
  position: relative;
  display: flex; align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  padding: 6px 10px;
  width: 100%;
  max-width: 360px;
}
.cu-search__prompt { color: var(--accent); padding-right: 6px; }
.cu-search input {
  flex: 1; min-width: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 13px;
  outline: none;
}
.cu-search input::placeholder { color: var(--ink-3); }
.cu-topbar__cart {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}
.cu-topbar__cart:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
.cu-topbar__cart .cu-bar__count { background: var(--accent); color: #0a0f0a; }

/* ===== shared section blocks ===== */
.cu-wrap { padding: 0 28px; }
.cu-section { padding: 56px 28px; border-bottom: 1px solid var(--line); }
.cu-section--quiet { background: var(--panel); }

.cu-section__head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-2);
}
.cu-section__head h2 {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cu-section__head h2::before {
  content: "// ";
  color: var(--accent);
}
.cu-section__head p {
  margin: 6px 0 0;
  color: var(--ink-3);
  font-size: 14px;
  max-width: 60ch;
}
.cu-section__head .cu-link {
  font-family: var(--ff-mono);
  color: var(--accent);
  font-size: 13px;
  white-space: nowrap;
}

/* ===== buttons reset ===== */

/* ===== Hero (terminal-boot) ===== */
.cu-hero {
  position: relative;
  padding: 72px 28px 64px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(124,255,0,.07), transparent 70%),
    var(--bg);
}
.cu-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}
.cu-hero__terminal {
  background: var(--panel);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.cu-hero__termbar {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: #0a140a;
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-3);
}
.cu-hero__termbar .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-3); }
.cu-hero__termbar .dot.is-on { background: var(--accent); box-shadow: 0 0 4px var(--accent); }
.cu-hero__termbody {
  padding: 22px 22px 26px;
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--ink-2);
  min-height: 240px;
}
.cu-hero__line { display: block; }
.cu-hero__line .pmt { color: var(--accent); padding-right: 8px; }
.cu-hero__line .out { color: var(--ink); }
.cu-hero__line .num { color: var(--warn); }
.cu-hero__cursor {
  display: inline-block;
  width: 9px; height: 18px;
  background: var(--accent);
  vertical-align: -3px;
  margin-left: 4px;
  animation: cuCursor 1s steps(2) infinite;
}
@keyframes cuCursor { 50% { opacity: 0; } }
.cu-hero__copy h1 {
  margin: 0 0 18px;
  font-family: var(--ff-mono);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}
.cu-hero__copy h1 em {
  color: var(--accent);
  font-style: normal;
  text-shadow: 0 0 12px rgba(124,255,0,.4);
}
.cu-hero__lede {
  margin: 0 0 22px;
  color: var(--ink-2);
  font-size: 16px;
  max-width: 50ch;
}
.cu-hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
}
.cu-hero__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 12px;
}
.cu-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
}
.cu-chip::before {
  content: "▸";
  color: var(--accent);
}

/* ===== file-tree categorieën ===== */
.cu-tree {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cu-tree__item {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 22px 22px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .2s, transform .2s, background .2s;
  overflow: hidden;
}
.cu-tree__item::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
  transform: scaleY(0); transform-origin: top;
  transition: transform .25s;
}
.cu-tree__item:hover {
  border-color: var(--line-2);
  background: var(--bg-3);
  text-decoration: none;
  transform: translateY(-2px);
}
.cu-tree__item:hover::before { transform: scaleY(1); }
.cu-tree__path {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.cu-tree__path b { color: var(--accent); font-weight: 500; }
.cu-tree__item h3 {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cu-tree__item p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.cu-tree__meta {
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.cu-tree__meta b { color: var(--accent); font-weight: 700; font-size: 14px; }
.cu-tree__open {
  font-family: var(--ff-mono);
  color: var(--accent);
  font-size: 12px;
}

/* ===== product cards (grid + lijst) ===== */
.cu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cu-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.cu-card:hover {
  border-color: var(--accent);
  text-decoration: none;
  transform: translateY(-2px);
}
.cu-card__media {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
}
.cu-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.cu-card:hover .cu-card__media img { transform: scale(1.04); }
.cu-card__sale {
  position: absolute; top: 8px; left: 8px;
  background: var(--accent); color: #0a0f0a;
  padding: 3px 8px;
  font-family: var(--ff-mono); font-weight: 700;
  font-size: 11px;
  letter-spacing: .05em;
}
.cu-card__plat {
  position: absolute; top: 8px; right: 8px;
  background: rgba(10,15,10,.85);
  color: var(--ink-2);
  padding: 3px 8px 3px 6px;
  font-family: var(--ff-mono); font-size: 10px;
  border: 1px solid var(--line-2);
  display: inline-flex; align-items: center; gap: 5px;
  letter-spacing: .04em;
}
.cu-card__plat svg { color: var(--accent); flex: 0 0 auto; }
.cu-card__plat span { line-height: 1; }
.cu-card__body {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px 14px 8px;
}
.cu-card__cat {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .05em;
}
.cu-card__title {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cu-card__blurb {
  margin: 0;
  color: var(--ink-3);
  font-size: 12.5px;
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cu-card__foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 10px;
  padding: 10px 14px 14px;
  border-top: 1px dashed var(--line-2);
}
.cu-price {
  font-family: var(--ff-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.cu-price__was {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ===== timeline (platform geschiedenis) ===== */
.cu-tl {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
}
.cu-tl__cell {
  display: flex; flex-direction: column;
  padding: 16px 14px;
  border-right: 1px solid var(--line);
  font-family: var(--ff-mono);
  position: relative;
  min-height: 200px;
  background:
    repeating-linear-gradient(180deg, rgba(124,255,0,.02) 0 1px, transparent 1px 6px);
}
.cu-tl__cell:last-child { border-right: 0; }
.cu-tl__year {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.cu-tl__era {
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cu-tl__list { display: flex; flex-direction: column; gap: 6px; }
.cu-tl__list span {
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.4;
}
.cu-tl__list span::before { content: "▸ "; color: var(--accent); }

/* ===== feature: terminal log ===== */
.cu-log {
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cu-log__col {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}
.cu-log__col:last-child { border-right: 0; }
.cu-log__entry {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-2);
}
.cu-log__entry:last-child { border-bottom: 0; }
.cu-log__time { color: var(--ink-3); font-size: 12px; }
.cu-log__msg b { color: var(--accent); font-weight: 700; }
.cu-log__msg { color: var(--ink-2); }

/* ===== quotes ===== */
.cu-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cu-quote {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--ff-body);
  display: flex; flex-direction: column;
  gap: 14px;
}
.cu-quote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 14px;
  font-family: var(--ff-mono);
  color: var(--accent);
  font-size: 56px;
  line-height: 1;
  background: var(--bg);
  padding: 0 6px;
}
.cu-quote p { margin: 0; color: var(--ink); font-size: 15px; line-height: 1.55; }
.cu-quote__by {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
}
.cu-quote__by b { color: var(--accent); font-weight: 500; }
.cu-quote__stars {
  font-family: var(--ff-mono);
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 14px;
}

/* ===== specs band ===== */
.cu-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
}
.cu-specs__c {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  font-family: var(--ff-mono);
}
.cu-specs__c:last-child { border-right: 0; }
.cu-specs__num {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
  text-shadow: 0 0 10px rgba(124,255,0,.25);
}
.cu-specs__lbl {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .04em;
  text-transform: lowercase;
  display: block;
  margin-top: 4px;
}

/* ===== newsletter / feed ===== */
.cu-feed {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
}
.cu-feed h3 {
  margin: 0 0 6px;
  font-family: var(--ff-mono);
  font-size: 22px;
  color: var(--ink);
}
.cu-feed h3::before { content: "$ "; color: var(--accent); }
.cu-feed p { margin: 0; color: var(--ink-3); font-size: 13.5px; max-width: 56ch; font-family: var(--ff-mono); }
.cu-feed__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: stretch;
  min-width: min(360px, 100%);
}
.cu-feed__form input {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 10px 12px;
  font-family: var(--ff-mono);
  font-size: 13px;
}
.cu-feed__form input:focus { outline: 1px solid var(--accent); border-color: var(--accent); }

/* ===== catalog overview-rows ===== */
.cu-catrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px dashed var(--line-2);
}
.cu-catrow:last-child { border-bottom: 0; }
.cu-catrow--rev .cu-catrow__media { order: 2; }
.cu-catrow__media {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 8px;
}
.cu-catrow__media img {
  aspect-ratio: 4/3;
  width: 100%; height: auto;
  object-fit: cover;
}
.cu-catrow__copy h3 {
  margin: 0 0 6px;
  font-family: var(--ff-mono);
  font-size: 28px;
  color: var(--ink);
}
.cu-catrow__copy h3::before { content: "/"; color: var(--accent); padding-right: 6px; }
.cu-catrow__copy .cu-tree__path { margin-bottom: 14px; }
.cu-catrow__copy p { color: var(--ink-2); margin: 0 0 16px; }
.cu-catrow__copy ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  display: grid; gap: 4px;
}
.cu-catrow__copy ul li::before { content: "▸ "; color: var(--accent); }

/* ===== catalog list page (filters + table) ===== */
.cu-catpage {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 30px 28px 64px;
}
.cu-filter {
  position: sticky; top: calc(var(--bar-h) + 14px);
  align-self: start;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  font-family: var(--ff-mono);
  font-size: 13px;
}
.cu-filter h4 {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cu-filter__group { margin-bottom: 18px; }
.cu-filter__opt {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
  cursor: pointer;
  color: var(--ink-2);
}
.cu-filter__opt:hover { color: var(--accent); }
.cu-filter__opt input { accent-color: var(--accent); }
.cu-filter__opt span:last-child { color: var(--ink-3); font-size: 11px; }

.cu-toolbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 16px;
  font-family: var(--ff-mono);
  font-size: 13px;
}
.cu-toolbar__count { color: var(--ink-3); }
.cu-toolbar__count b { color: var(--accent); }
.cu-toolbar__view {
  display: inline-flex;
  border: 1px solid var(--line-2);
}
.cu-toolbar__view button {
  background: transparent; border: 0;
  color: var(--ink-3);
  padding: 6px 10px;
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 12px;
  border-right: 1px solid var(--line-2);
}
.cu-toolbar__view button:last-child { border-right: 0; }
.cu-toolbar__view button.is-on { background: var(--accent); color: #0a0f0a; }
.cu-toolbar__sort {
  display: inline-flex; gap: 6px; align-items: center;
  color: var(--ink-3);
}
.cu-toolbar__sort select {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line-2);
  padding: 4px 8px;
  font-family: var(--ff-mono);
  font-size: 12px;
}

.cu-list { display: grid; gap: 0; border: 1px solid var(--line); background: var(--panel); }
.cu-list__head, .cu-list__row {
  display: grid;
  grid-template-columns: 64px 2.5fr 1fr 1fr 1fr 140px;
  gap: 12px;
  padding: 10px 14px;
  align-items: center;
  font-family: var(--ff-mono);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}
.cu-list__head {
  background: var(--bg-2);
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cu-list__row { color: var(--ink); }
.cu-list__row:last-child { border-bottom: 0; }
.cu-list__row:hover { background: var(--bg-3); }
.cu-list__thumb {
  width: 56px; height: 42px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.cu-list__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cu-list__name a { color: var(--ink); }
.cu-list__name a:hover { color: var(--accent); }
.cu-list__plat, .cu-list__year, .cu-list__pub { color: var(--ink-3); font-size: 12px; }
.cu-list__price { text-align: right; }
.cu-list__price .cu-price { font-size: 14px; }

/* ===== product detail ===== */
.cu-prod {
  padding: 30px 28px 64px;
}
.cu-prod__top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: start;
}
.cu-prod__media {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 8px;
}
.cu-prod__main {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  overflow: hidden;
}
.cu-prod__main img { width: 100%; height: 100%; object-fit: cover; }
.cu-prod__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.cu-prod__thumb {
  aspect-ratio: 4/3;
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-3);
}
.cu-prod__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cu-prod__thumb.is-on { border-color: var(--accent); }
.cu-prod__copy { display: flex; flex-direction: column; gap: 14px; }
.cu-prod__head { font-family: var(--ff-mono); font-size: 12px; color: var(--ink-3); }
.cu-prod__head b { color: var(--accent); }
.cu-prod__copy h1 {
  margin: 0;
  font-family: var(--ff-mono);
  font-size: 32px;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cu-prod__price-row {
  display: flex; align-items: baseline; gap: 10px;
  padding: 14px 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}
.cu-prod__price-row .cu-price { font-size: 28px; }
.cu-prod__cta { display: flex; gap: 10px; }
.cu-spec-list {
  border: 1px solid var(--line);
  background: var(--panel);
  font-family: var(--ff-mono);
  font-size: 13px;
}
.cu-spec-list__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  padding: 10px 14px;
  border-bottom: 1px dashed var(--line-2);
}
.cu-spec-list__row:last-child { border-bottom: 0; }
.cu-spec-list__row b { color: var(--ink-3); font-weight: 500; }
.cu-spec-list__row span { color: var(--ink); }
.cu-prod__descr {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--ff-body);
  color: var(--ink-2);
  line-height: 1.7;
}
.cu-prod__descr h2 {
  margin: 0 0 12px;
  font-family: var(--ff-mono);
  font-size: 18px;
  color: var(--ink);
}
.cu-prod__descr h2::before { content: "// "; color: var(--accent); }

/* ===== cart / checkout / forms ===== */
.cu-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--line);
  font-family: var(--ff-mono);
  font-size: 13px;
}
.cu-table th, .cu-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.cu-table th {
  background: var(--bg-2);
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
}
.cu-table td { color: var(--ink); }
.cu-cart__thumb {
  width: 56px; height: 42px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  overflow: hidden;
}
.cu-cart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cu-cart__qty {
  display: inline-flex; align-items: center; gap: 4px;
}
.cu-cart__qty button {
  width: 26px; height: 26px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--accent);
  cursor: pointer;
  font-family: var(--ff-mono);
  font-weight: 700;
}
.cu-cart__qty input {
  width: 38px; text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  height: 26px;
  font-family: var(--ff-mono);
}
.cu-cart__remove {
  background: transparent;
  border: 0;
  color: var(--bad);
  cursor: pointer;
  font-family: var(--ff-mono);
  font-size: 12px;
}

.cu-form { display: grid; gap: 14px; }
.cu-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cu-form label { font-family: var(--ff-mono); font-size: 12px; color: var(--ink-3); display: block; margin-bottom: 4px; }
.cu-form input, .cu-form select, .cu-form textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 10px 12px;
  font-family: var(--ff-mono);
  font-size: 13px;
  font-family: inherit;
}
.cu-form input:focus, .cu-form select:focus, .cu-form textarea:focus { outline: 1px solid var(--accent); border-color: var(--accent); }

/* ===== reveal ===== */
.cu-reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.cu-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== cookie banner ===== */
.cu-cookie {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--panel);
  border-top: 1px solid var(--accent);
  z-index: 999;
  padding: 14px 0;
}
.cu-cookie__inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  font-family: var(--ff-mono); font-size: 13px;
}
.cu-cookie p { margin: 0; color: var(--ink-2); flex: 1; }

/* ===== footer ===== */
.cu-foot {
  background: #07090a;
  border-top: 1px solid var(--line);
  padding: 56px 28px 0;
  font-family: var(--ff-body);
}
.cu-foot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px dashed var(--line-2);
}
.cu-foot__col { display: flex; flex-direction: column; gap: 6px; }
.cu-foot__col p { margin: 0; color: var(--ink-3); font-size: 13px; line-height: 1.55; }
.cu-foot__title {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .06em;
  text-transform: lowercase;
  margin-bottom: 8px;
}
.cu-foot__col a {
  color: var(--ink-2);
  font-size: 14px;
  padding: 2px 0;
}
.cu-foot__col a:hover { color: var(--accent); }
.cu-foot__bar { padding: 18px 0 22px; }
.cu-foot__bar-row {
  display: flex; flex-wrap: wrap; gap: 18px;
  justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 12px;
  color: var(--ink-3);
}
.cu-foot__pay {
  display: flex; flex-wrap: wrap; gap: 6px;
  align-items: center;
}
.cu-pay {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 3px;
  padding: 4px 8px;
  display: inline-flex; align-items: center; justify-content: center;
  height: 26px;
  min-width: 44px;
  transition: transform .12s ease, border-color .12s ease;
}
.cu-pay:hover { transform: translateY(-1px); border-color: var(--accent); }
.cu-pay svg { display: block; }
.cu-foot__statusbar {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.cu-foot__statusbar b { color: var(--accent); }
.cu-foot__cursor { color: var(--accent); animation: cuCursor 1s steps(2) infinite; }

/* ===== text helpers ===== */
.cu-prose { font-family: var(--ff-body); color: var(--ink-2); line-height: 1.75; max-width: 70ch; }
.cu-prose h2 { font-family: var(--ff-mono); color: var(--ink); margin-top: 28px; }
.cu-prose h2::before { content: "// "; color: var(--accent); }

/* ===== simple two-col article ===== */
.cu-article {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 32px;
  padding: 30px 28px 64px;
}
.cu-article__aside {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px;
  font-family: var(--ff-mono);
  font-size: 13px;
  position: sticky;
  top: calc(var(--bar-h) + 14px);
  align-self: start;
}
.cu-article__aside h4 {
  margin: 0 0 10px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.cu-article__aside ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.cu-article__aside ul a { color: var(--ink-2); font-size: 13px; }
.cu-article__aside ul a:hover { color: var(--accent); }

/* ===== responsive ===== */
@media (max-width: 1180px) {
  .cu-grid { grid-template-columns: repeat(3, 1fr); }
  .cu-tl { grid-template-columns: repeat(4, 1fr); }
  .cu-tl__cell:nth-child(4n) { border-right: 0; }
  .cu-tl__cell:nth-child(n+5) { border-top: 1px solid var(--line); }
}
@media (max-width: 1000px) {
  :root { --side-w: 0px; }
  .cu-shell { grid-template-columns: 1fr; }
  .cu-bar { display: flex; }
  .cu-side {
    position: fixed; top: var(--bar-h); left: -100%;
    width: 280px;
    height: calc(100vh - var(--bar-h));
    z-index: 80;
    transition: left .25s;
    border-right: 1px solid var(--line);
    box-shadow: 6px 0 30px rgba(0,0,0,.6);
  }
  .cu-side[data-open="1"] { left: 0; }
  .cu-main { border-left: 0; }
  .cu-topbar { padding: 8px 14px; gap: 8px; }
  /* Mobile: hide clock, shrink cart to badge-only to free breadcrumb space */
  .cu-topbar__time { display: none; }
  .cu-topbar__cart { padding: 4px 8px; font-size: 0; gap: 4px; border-color: transparent; }
  .cu-topbar__cart .cu-bar__count { font-size: 12px; }
  .cu-section { padding: 44px 18px; }
  .cu-wrap { padding: 0 18px; }
  .cu-hero { padding: 48px 18px 44px; }
  .cu-hero__grid { grid-template-columns: 1fr; gap: 28px; }
  .cu-tree { grid-template-columns: 1fr; }
  .cu-grid { grid-template-columns: repeat(2, 1fr); }
  .cu-quotes { grid-template-columns: 1fr; }
  .cu-specs { grid-template-columns: repeat(2, 1fr); }
  .cu-specs__c:nth-child(2) { border-right: 0; }
  .cu-specs__c:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cu-log { grid-template-columns: 1fr; }
  .cu-log__col { border-right: 0; border-bottom: 1px solid var(--line); }
  .cu-log__col:last-child { border-bottom: 0; }
  .cu-feed { grid-template-columns: 1fr; }
  .cu-feed__form { min-width: 0; }
  .cu-catrow { grid-template-columns: 1fr; gap: 18px; padding: 22px 0; }
  .cu-catrow--rev .cu-catrow__media { order: 0; }
  .cu-catpage { grid-template-columns: 1fr; padding: 22px 18px 44px; }
  .cu-filter { position: static; }
  .cu-prod { padding: 22px 18px 44px; }
  .cu-prod__top { grid-template-columns: 1fr; gap: 22px; }
  .cu-article { grid-template-columns: 1fr; padding: 22px 18px 44px; }
  .cu-article__aside { position: static; }
  .cu-foot { padding: 44px 18px 0; }
  .cu-foot__grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .cu-tl { grid-template-columns: repeat(2, 1fr); }
  .cu-tl__cell { min-height: 160px; }
  .cu-tl__cell:nth-child(2n) { border-right: 0; }
  .cu-tl__cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .cu-list__head { display: none; }
  .cu-list__row {
    grid-template-columns: 64px 1fr auto;
    grid-template-areas:
      "thumb name price"
      "thumb meta price";
    gap: 4px 12px;
  }
  .cu-list__thumb { grid-area: thumb; }
  .cu-list__name { grid-area: name; }
  .cu-list__price { grid-area: price; }
  .cu-list__plat, .cu-list__year, .cu-list__pub { grid-area: meta; display: inline; }
  .cu-list__year::before { content: " · "; }
  .cu-list__pub::before { content: " · "; }
}
@media (max-width: 600px) {
  .cu-grid { grid-template-columns: 1fr; }
  .cu-foot__grid { grid-template-columns: 1fr; }
  .cu-tl { grid-template-columns: 1fr; }
  .cu-tl__cell { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .cu-tl__cell:last-child { border-bottom: 0; }
  .cu-form__row { grid-template-columns: 1fr; }
  .cu-hero__copy h1 { font-size: 30px; }
  .cu-prod__copy h1 { font-size: 24px; }
  .cu-section__head { flex-direction: column; align-items: start; gap: 8px; }
}

/* skip layout cost van off-screen secties */
.cu-section { content-visibility: auto; contain-intrinsic-size: 1px 600px; }

/* =====================================================================
   Retail overlay — maakt de terminallook vriendelijker voor klanten
   zonder de identiteit op te geven. Alles hierna overruled selectief.
   ===================================================================== */

:root {
  --ff-display: "Manrope", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --accent-soft: #b9ff66;
  --paper-soft: rgba(124,255,0,.06);
  --card-shadow: 0 1px 0 rgba(124,255,0,.05), 0 10px 28px rgba(0,0,0,.28);
  --card-shadow-hover: 0 0 0 1px var(--accent), 0 18px 40px rgba(0,0,0,.45);
}

/* Display font voor echte koppen en product-titels */
.cu-section__head h2,
.cu-hero__copy h1,
.cu-tree__item h3,
.cu-card__title,
.cu-prod__copy h1,
h1, h2, h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: -0.015em;
}

/* Verwijder de "//"-prefix van hoofdsectiekoppen (te codey) */
.cu-section__head h2::before { content: none; }

/* Secties iets soepeler typografisch */
.cu-section__head h2 { font-size: 28px; }
.cu-section__head p { font-size: 15px; color: var(--ink-2); }

/* Productkaart — winkelgevoel */
.cu-card {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--card-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  border-radius: 6px;
  overflow: hidden;
}
.cu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--accent);
  text-decoration: none;
}
.cu-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-3); }
.cu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cu-card:hover .cu-card__media img { transform: scale(1.04); }
.cu-card__title { font-size: 17px; line-height: 1.25; min-height: 0; }
.cu-card__cat { color: var(--ink-3); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.cu-card__sale {
  background: #ff4d3d; color: #fff; letter-spacing: .04em;
  padding: 4px 10px; font-family: var(--ff-display); font-weight: 800; border-radius: 3px;
}
.cu-card__plat { border-radius: 3px; }
.cu-card__foot {
  padding: 10px 14px 14px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(124,255,0,.03));
}
.cu-price {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.cu-price__was {
  font-family: var(--ff-display);
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: line-through;
  margin-left: 8px;
  font-size: 14px;
}

/* Sterrenrij op productkaart */
.cu-stars {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
  font-size: 11.5px;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: .02em;
  margin-top: 4px;
}
.cu-stars__bar { letter-spacing: 1.5px; }
.cu-stars__count { color: var(--ink-3); }

/* Knoppen — minder shout, meer shop */
.cu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  white-space: nowrap;
  color: #0a0f0a;
  box-shadow: 0 1px 0 rgba(0,0,0,.25);
  transition: transform .12s ease, background-color .15s, color .15s, box-shadow .15s;
  background: linear-gradient(180deg, #d4ff8a 0%, var(--accent) 100%);
  border: 1px solid rgba(0,0,0,.15);
}
.cu-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(124,255,0,.22); background: #d4ff8a; color: #0a0f0a; text-decoration: none; }
.cu-btn--mini { height: 28px; padding: 0 12px; font-size: 11px; border-radius: 3px; gap: 4px; color: #0a0f0a; }

/* Toolbar & View Toggles */
.cu-toolbar { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; background: var(--panel); border: 1px solid var(--line); border-bottom: 0; font-family: var(--ff-mono); font-size: 12px; color: var(--ink-2); }
.cu-toolbar__sort select { background: var(--bg-2); border: 1px solid var(--line-2); color: var(--ink); padding: 4px 8px; font-family: var(--ff-mono); font-size: 11px; margin-left: 6px; outline: 0; }
.cu-toolbar__view { display: flex; gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: 3px; overflow: hidden; margin-left: 14px; }
.cu-toolbar__view button { border: 0; background: var(--bg-2); color: var(--ink-3); padding: 4px 10px; font-family: var(--ff-mono); font-size: 11px; cursor: pointer; transition: background .15s, color .15s; text-transform: uppercase; }
.cu-toolbar__view button:hover { background: var(--bg-3); color: var(--ink); }
.cu-toolbar__view button.is-on { background: var(--accent); color: #0a0f0a; }

@media (max-width: 600px) {
  .cu-toolbar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cu-toolbar__view { margin-left: 0; }
}
.cu-btn--ghost { box-shadow: none; background: transparent; border-color: var(--accent); color: var(--accent); }
.cu-btn--ghost:hover { box-shadow: 0 6px 14px rgba(124,255,0,.18); background: var(--accent); color: #0a0f0a; }

/* Topbar breadcrumbs — chevron-stijl, geen URL-paden zichtbaar */
.cu-topbar { font-family: var(--ff-display); font-size: 13.5px; font-weight: 500; }
.cu-topbar__breadcrumbs { color: var(--ink-2); display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.cu-topbar__breadcrumbs a { color: var(--ink-2); }
.cu-topbar__breadcrumbs a:hover { color: var(--accent); }
.cu-topbar__sep { color: var(--line-2); font-size: 0; padding: 0 4px; }
.cu-topbar__sep::before {
  content: "›";
  font-size: 14px;
  color: var(--line-2);
  font-family: var(--ff-display);
  font-weight: 700;
}
.cu-topbar__time { font-family: var(--ff-mono); font-size: 12px; }
.cu-topbar__cart { font-family: var(--ff-display); font-size: 13.5px; font-weight: 600; border-radius: 3px; }

/* ===== USP-strip ===== */
.cu-usp {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
  padding: 0 28px;
}
.cu-usp__item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  color: var(--ink-2);
  font-family: var(--ff-display);
  font-size: 13.5px;
  font-weight: 500;
  border-right: 1px dashed var(--line-2);
}
.cu-usp__item:last-child { border-right: 0; }
.cu-usp__item strong { color: var(--ink); font-weight: 700; }
.cu-usp__glyph {
  display: inline-grid; place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-mono); font-weight: 700;
  border-radius: 3px;
  flex: 0 0 auto;
  background: rgba(124,255,0,.06);
}
@media (max-width: 900px) {
  .cu-usp { grid-template-columns: repeat(2, 1fr); padding: 0 14px; }
  .cu-usp__item { border-bottom: 1px dashed var(--line-2); }
  .cu-usp__item:nth-child(2) { border-right: 0; }
  .cu-usp__item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .cu-usp { grid-template-columns: 1fr; }
  .cu-usp__item { border-right: 0; }
}

/* ===== Hero-CTA strook ===== */
.cu-hero__cta {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
  align-items: center;
}
.cu-hero__cta .cu-btn { padding: 14px 24px; font-size: 15px; }
.cu-hero__trust {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-3); font-size: 12.5px; font-family: var(--ff-display);
  margin-left: 6px;
}
.cu-hero__trust b { color: var(--accent); font-weight: 700; }

/* ===== Shop-style sectiehead: warmer ===== */
.cu-shop-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 0;
}
.cu-shop-head h2 {
  margin: 0; font-family: var(--ff-display); font-weight: 800;
  font-size: 30px; letter-spacing: -0.02em; color: var(--ink);
}
.cu-shop-head p { margin: 6px 0 0; color: var(--ink-2); font-size: 15px; max-width: 62ch; }
.cu-shop-head .cu-link {
  font-family: var(--ff-display); font-weight: 600;
  color: var(--accent); font-size: 14px;
}

/* ===== Trust band (onderaan productlijst) ===== */
.cu-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.cu-trust__cell {
  display: flex; gap: 12px; align-items: flex-start;
}
.cu-trust__cell b {
  display: block;
  font-family: var(--ff-display); font-weight: 700;
  color: var(--ink); font-size: 15px; margin-bottom: 2px;
}
.cu-trust__cell span { color: var(--ink-2); font-size: 13px; line-height: 1.55; }
.cu-trust__num {
  font-family: var(--ff-display); font-weight: 800; font-size: 22px;
  color: var(--accent); line-height: 1; min-width: 34px;
}
@media (max-width: 800px) { .cu-trust { grid-template-columns: 1fr; } }

/* Product-pagina: grotere prijs, prominentere CTA */
.cu-prod__copy h1 { font-size: clamp(26px, 3vw, 36px); }
.cu-prod__price-row { align-items: baseline; }
.cu-prod__price-row .cu-price { font-size: 32px; }
.cu-prod__price-row .cu-price__was { font-size: 18px; }
.cu-prod__cta .cu-btn { padding: 14px 22px; font-size: 15px; }
.cu-spec-list__row b { font-family: var(--ff-display); font-weight: 600; color: var(--ink-2); }
.cu-spec-list__row span { font-family: var(--ff-body); }

/* Beschrijvingstekst lezen, niet code */
.cu-prod__descr h2 { font-size: 22px; color: var(--ink); }
.cu-prod__descr p { font-family: var(--ff-body); color: var(--ink-2); font-size: 15.5px; line-height: 1.75; max-width: 68ch; }

/* ===== Free-shipping progress bar ===== */
.cu-ship {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 24px;
  background: linear-gradient(90deg, rgba(124,255,0,.10), rgba(124,255,0,.03));
  border-bottom: 1px solid var(--line);
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--ink-2);
}
.cu-ship__msg { flex: 1; }
.cu-ship__msg b { color: var(--accent); font-weight: 700; }
.cu-ship__bar {
  flex: 0 0 180px;
  height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  position: relative;
}
.cu-ship__bar::after {
  content: "";
  position: absolute; inset: 0;
  width: var(--p, 0%);
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transition: width .4s ease;
}
@media (max-width: 700px) {
  .cu-ship { padding: 8px 14px; font-size: 12px; }
  .cu-ship__bar { flex-basis: 120px; }
}

/* ===== Testimonial-band ===== */
.cu-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cu-quote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 22px 20px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: transform .18s ease, border-color .18s ease;
}
.cu-quote:hover { transform: translateY(-2px); border-color: var(--line-2); }
.cu-quote::before {
  content: "“";
  position: absolute; top: -14px; left: 18px;
  font-family: Georgia, serif;
  font-size: 60px; line-height: 1;
  color: var(--accent);
}
.cu-quote__stars { color: var(--accent); letter-spacing: 2px; font-size: 14px; }
.cu-quote__text {
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px; line-height: 1.6;
  margin: 0;
}
.cu-quote__who {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-display); font-size: 13px;
}
.cu-quote__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg-3); color: var(--accent);
  border: 1px solid var(--line-2);
  font-family: var(--ff-display); font-weight: 700;
  font-size: 13px;
}
.cu-quote__who b { color: var(--ink); font-weight: 700; }
.cu-quote__who span { color: var(--ink-3); margin-left: 4px; }
@media (max-width: 900px) { .cu-testimonials { grid-template-columns: 1fr; } }

/* ===== Universele eyebrow-tag boven section h2 ===== */
.cu-eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

/* ===== Hoe werkt het — 4 stappen ===== */
.cu-howit__list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: cu-step;
}
.cu-howit__step {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 22px 20px;
  display: flex; flex-direction: column; gap: 10px;
  transition: transform .18s ease, border-color .18s ease;
}
.cu-howit__step:hover { transform: translateY(-2px); border-color: var(--line-2); }
.cu-howit__step::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 6px 6px 0 0;
}
.cu-howit__num {
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .14em;
  color: var(--accent);
  background: rgba(124,255,0,.08);
  padding: 4px 8px;
  border: 1px solid rgba(124,255,0,.3);
  border-radius: 2px;
  width: max-content;
}
.cu-howit__step h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.cu-howit__step p {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.cu-howit__hint {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-3);
}
@media (max-width: 1100px) { .cu-howit__list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .cu-howit__list { grid-template-columns: 1fr; } }

/* ===== Garanties (3 kaarten met SVG-icoon) ===== */
.cu-gar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.cu-gar__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 26px 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .18s ease, border-color .18s ease;
}
.cu-gar__card:hover { transform: translateY(-2px); border-color: var(--accent); }
.cu-gar__icn {
  width: 52px; height: 52px;
  display: inline-grid; place-items: center;
  background: rgba(124,255,0,.08);
  color: var(--accent);
  border: 1px solid rgba(124,255,0,.3);
  border-radius: 6px;
}
.cu-gar__card h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
}
.cu-gar__card p {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.cu-gar__quote {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  font-style: normal;
}
@media (max-width: 900px) { .cu-gar__grid { grid-template-columns: 1fr; } }

/* ===== Photo-based variants — how-it-works + garanties + testimonials ===== */

/* HOW-IT-WORKS · met polaroid-foto bovenin */
.cu-howit__list--photo .cu-howit__step {
  padding: 28px 0 22px 0;
  background: var(--bg-2);
  border: 1px solid var(--line);
}
.cu-howit__photo {
  position: relative;
  margin: 0 auto 18px;
  width: calc(100% - 40px);
  max-width: 280px;
  padding: 10px 10px 36px;
  background: #f4ecd8;
  box-shadow: 0 8px 22px rgba(0,0,0,.5), inset 0 0 0 1px rgba(0,0,0,.05);
  border-radius: 1px;
  transform: rotate(var(--cu-tilt, 0));
  transform-origin: center center;
}
.cu-howit__photo img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05);
  border: 1px solid #0a0c0a;
}
.cu-howit__photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  text-align: center;
  font-family: "Caveat", "Comic Sans MS", cursive;
  font-weight: 600;
  font-size: 14.5px;
  color: #1a1610;
  letter-spacing: .01em;
  padding: 0 10px;
  line-height: 1;
}
.cu-howit__copy {
  display: flex; flex-direction: column; gap: 10px;
  padding: 4px 22px 0;
}
.cu-howit__list--photo .cu-howit__step::before { display: none; }
.cu-howit__list--photo .cu-howit__step .cu-howit__num { margin-bottom: 0; }

/* GARANTIES · met polaroid-foto + stempel */
.cu-gar__card--photo {
  padding: 0;
  overflow: hidden;
  background: var(--panel);
}
.cu-gar__photo {
  margin: 0;
  position: relative;
  padding: 24px 18px 16px;
  background:
    radial-gradient(360px 200px at 50% 0%, rgba(124,255,0,.05), transparent 70%),
    var(--bg-3);
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: center;
  isolation: isolate;
}
.cu-gar__photo img {
  display: block;
  width: 100%; max-width: 280px;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  transform: rotate(var(--cu-tilt, 0));
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
  filter: saturate(.85);
}
.cu-gar__stamp {
  position: absolute;
  top: 14px; right: 16px;
  padding: 4px 9px;
  font-family: var(--ff-mono);
  font-size: 10px; font-weight: 700;
  color: var(--accent);
  background: rgba(10,15,10,.85);
  border: 1px dashed var(--accent);
  letter-spacing: .12em;
  transform: rotate(8deg);
  z-index: 2;
}
.cu-gar__stamp--alt {
  color: #ff9933;
  border-color: #ff9933;
  transform: rotate(-6deg);
  top: auto; right: auto;
  bottom: 22px; left: 16px;
}
.cu-gar__body { padding: 22px 24px 24px; }
.cu-gar__tag {
  display: inline-block;
  font-family: var(--ff-mono); font-size: 10.5px;
  color: var(--ink-3); letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cu-gar__list {
  list-style: none; padding: 14px 0 0; margin: 12px 0 0;
  border-top: 1px dashed var(--line-2);
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--ff-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.cu-gar__list li::before {
  content: "▸ ";
  color: var(--accent);
  margin-right: 4px;
}
.cu-gar__list li b {
  color: var(--ink);
  font-weight: 700;
  font-family: var(--ff-display);
}

/* TESTIMONIALS · echte 'inbox' card-look */
.cu-quote--card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 20px 22px 18px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.cu-quote--card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), transparent);
  border-radius: 6px 0 0 6px;
}
.cu-quote__hd {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-mono); font-size: 11px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.cu-quote__date { color: var(--ink-3); }
.cu-quote--card .cu-quote__text {
  font-family: var(--ff-body);
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}
.cu-quote--card .cu-quote__text s {
  color: var(--ink-3);
  text-decoration-thickness: 1px;
  text-decoration-color: var(--ink-3);
}
.cu-quote__order {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  background: rgba(0,0,0,.25);
  padding: 6px 10px;
  border: 1px dashed var(--line-2);
  border-radius: 3px;
  margin: 0;
}
.cu-quote__order b { color: var(--accent); font-weight: 700; }
.cu-quote--card .cu-quote__who {
  display: flex; align-items: center; gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-2);
  border: none;
  margin-top: 0;
}
.cu-quote__avatar {
  position: relative;
  width: 44px; height: 44px;
  border-radius: 4px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
  color: var(--accent);
  border: 1px solid var(--line-2);
  font-family: var(--ff-display); font-weight: 800;
  font-size: 18px;
  flex: 0 0 44px;
  overflow: visible;
}
.cu-quote__avatar--ds { background: linear-gradient(135deg, #ff8a00, #2b1a00); color: #fff; }
.cu-quote__avatar--ps { background: linear-gradient(135deg, #003087, #000820); color: #fff; }
.cu-quote__avatar--n64 { background: linear-gradient(135deg, #c40016, #6b0010); color: #fff; }
.cu-quote__avatar > span:first-child {
  font-family: var(--ff-display); font-weight: 800; font-size: 18px;
  letter-spacing: -.02em;
}
.cu-quote__avatar-tag {
  position: absolute;
  bottom: -7px; right: -10px;
  background: var(--accent); color: #0a0f0a;
  font-family: var(--ff-mono); font-weight: 700;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 2px;
  letter-spacing: .04em;
  border: 1px solid var(--bg);
}
.cu-quote__meta {
  display: flex; flex-direction: column; gap: 1px;
  font-family: var(--ff-display); font-size: 13.5px;
  margin-left: 0;
}
.cu-quote__meta b { color: var(--ink); font-weight: 700; }
.cu-quote__meta span {
  color: var(--ink-3);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: .02em;
  margin: 0;
}

@media (max-width: 900px) {
  .cu-howit__photo img { height: 140px; }
  .cu-gar__photo { padding: 18px 14px 14px; }
  .cu-gar__photo img { height: 150px; max-width: none; }
  .cu-gar__body { padding: 20px 20px 22px; }
}

/* ===== Product deep-info row (in-the-box + before-you-buy) ===== */
.cu-prod__deeprow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.cu-prod__deepcard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px 26px;
  display: flex; flex-direction: column; gap: 12px;
}
.cu-prod__deepcard h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.cu-prod__contentslist,
.cu-prod__beforelist {
  list-style: none; padding: 0; margin: 4px 0 0;
  display: flex; flex-direction: column; gap: 10px;
}
.cu-prod__contentslist li,
.cu-prod__beforelist li {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
  padding: 8px 0 8px 14px;
  border-left: 2px solid var(--line-2);
}
.cu-prod__contentslist li b {
  display: inline-block;
  min-width: 28px;
  font-family: var(--ff-mono);
  color: var(--accent);
  font-weight: 700;
}
.cu-prod__beforelist {
  counter-reset: cu-bl;
}
.cu-prod__beforelist li {
  position: relative;
  padding-left: 38px;
  border-left: 0;
  counter-increment: cu-bl;
}
.cu-prod__beforelist li::before {
  content: counter(cu-bl, decimal-leading-zero);
  position: absolute; left: 0; top: 6px;
  font-family: var(--ff-mono);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  background: rgba(124,255,0,.08);
  padding: 2px 6px;
  border: 1px solid rgba(124,255,0,.3);
  border-radius: 2px;
}
.cu-prod__beforelist li b {
  color: var(--ink);
  font-family: var(--ff-display);
  font-weight: 700;
}
.cu-prod__beforelist a { color: var(--accent); }
.cu-prod__hint {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .cu-prod__deeprow { grid-template-columns: 1fr; }
}

/* ===== FAQ-accordeon ===== */
.cu-faq__list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  max-width: 920px;
}
.cu-faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .15s ease;
}
.cu-faq__item[open],
.cu-faq__item:hover {
  border-color: var(--line-2);
}
.cu-faq__item[open] {
  background: var(--bg-2);
}
.cu-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
}
.cu-faq__item summary::-webkit-details-marker { display: none; }
.cu-faq__chev {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: inline-grid; place-items: center;
  background: rgba(124,255,0,.08);
  color: var(--accent);
  border: 1px solid rgba(124,255,0,.3);
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 14px; font-weight: 700;
  transition: transform .2s ease;
}
.cu-faq__item[open] .cu-faq__chev { transform: rotate(45deg); }
.cu-faq__a {
  padding: 0 22px 20px 22px;
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 70ch;
}
.cu-faq__a p { margin: 0 0 12px; }
.cu-faq__a p:last-child { margin: 0; }
.cu-faq__a a { color: var(--accent); }
.cu-faq__a ul { margin: 6px 0 12px; padding-left: 20px; }

/* ===== 404 hero + grid + genres + contact-boxes ===== */
.cu-404 {
  position: relative;
  padding: 64px 32px 32px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(800px 360px at 90% 20%, rgba(255,91,91,.06), transparent 60%),
    var(--bg);
}
.cu-404__hero {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 2fr;
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.cu-404__digits {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(110px, 18vw, 220px);
  line-height: 1;
  color: var(--ink);
  user-select: none;
}
.cu-404__digits span {
  display: inline-block;
  text-shadow: 3px 0 0 var(--bad), -3px 0 0 var(--accent);
  animation: cu-404-glitch 4s infinite steps(1);
}
.cu-404__digits span:nth-child(3) { animation-delay: -2s; }
.cu-404__o {
  display: inline-block;
  width: .65em; height: .65em;
  border: 0.13em solid var(--ink);
  border-radius: 50%;
  position: relative;
  margin: 0 .04em;
  animation: cu-404-spin 6s linear infinite;
}
.cu-404__o::before {
  content: "";
  position: absolute; inset: 18%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent), var(--bad), var(--accent));
  opacity: .35;
}
@keyframes cu-404-glitch {
  0%, 88%, 100% { transform: translate(0,0); }
  90% { transform: translate(-3px, 1px); }
  92% { transform: translate(2px, -1px); }
  94% { transform: translate(-1px, 2px); }
  96% { transform: translate(1px, 0); }
}
@keyframes cu-404-spin { to { transform: rotate(360deg); } }

.cu-404__copy h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--ink);
  margin: 8px 0 14px;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.cu-404__copy p {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 0 22px;
}
.cu-404__cta { display: flex; gap: 10px; flex-wrap: wrap; }

/* 3 ingangen-tegels */
.cu-404__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.cu-404__tile {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 26px 26px 22px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease;
}
.cu-404__tile:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  text-decoration: none;
}
.cu-404__tile h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}
.cu-404__tile p {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}
.cu-404__icn {
  width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  background: rgba(124,255,0,.08);
  color: var(--accent);
  border: 1px solid rgba(124,255,0,.3);
  border-radius: 4px;
}
.cu-404__tile-count {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line-2);
  font-family: var(--ff-mono);
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: .03em;
}

/* Genre-grid */
.cu-404__genres {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.cu-404__genre {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 18px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color .15s ease, transform .15s ease;
}
.cu-404__genre:hover {
  border-color: var(--accent);
  transform: translateX(2px);
  text-decoration: none;
}
.cu-404__genre-name {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 15px;
}
.cu-404__genre-sub {
  font-family: var(--ff-mono);
  color: var(--ink-3);
  font-size: 11.5px;
}

/* Contact boxes onderaan 404 */
.cu-404__contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.cu-404__cbox {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 6px;
  text-decoration: none;
  transition: border-color .15s ease;
}
.cu-404__cbox:hover { border-color: var(--accent); text-decoration: none; }
.cu-404__cbox strong {
  font-family: var(--ff-display);
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .cu-404 { padding: 36px 18px 24px; }
  .cu-404__hero { grid-template-columns: 1fr; gap: 16px; }
  .cu-404__digits { font-size: clamp(80px, 24vw, 140px); }
  .cu-404__grid { grid-template-columns: 1fr; }
  .cu-404__contact { grid-template-columns: 1fr; }
}

/* ===== Hacker hero slider ===== */
.cu-hax {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.cu-hax__viewport {
  position: relative;
  width: 100%;
  min-height: 580px;
}
.cu-hax__slide {
  position: absolute; inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  display: grid;
  align-content: end;
  padding: 80px 28px 96px;
}
.cu-hax__slide.is-on { opacity: 1; pointer-events: auto; z-index: 2; }
.cu-hax__slide.is-leaving {
  z-index: 1;
  animation: cu-hax-leave .55s ease forwards;
}
.cu-hax__slide.is-entering {
  z-index: 3;
  animation: cu-hax-enter .55s ease forwards;
}

@keyframes cu-hax-enter {
  0%   { opacity: 0; clip-path: inset(0 100% 0 0); filter: hue-rotate(60deg) saturate(2); }
  35%  { opacity: 1; clip-path: inset(0 0 0 0);    filter: hue-rotate(0deg)  saturate(1.2); }
  45%  { transform: translate3d(-6px,0,0); }
  55%  { transform: translate3d(4px,0,0); }
  65%  { transform: translate3d(0,0,0); }
  100% { opacity: 1; }
}
@keyframes cu-hax-leave {
  0%   { opacity: 1; clip-path: inset(0 0 0 0); }
  100% { opacity: 0; clip-path: inset(0 0 0 100%); }
}

.cu-hax__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.2) contrast(1.05);
  z-index: -3;
  transform: scale(1.06);
  animation: cu-hax-pan 12s ease-in-out infinite alternate;
}
/* LCP image: <img> tag for first slide so browser can preload it */
.cu-hax__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(1.2) contrast(1.05);
  z-index: -3;
  transform: scale(1.06);
  animation: cu-hax-pan 12s ease-in-out infinite alternate;
}
@keyframes cu-hax-pan {
  from { transform: scale(1.06) translate3d(-1.5%, 0, 0); }
  to   { transform: scale(1.10) translate3d(1.5%, -.6%, 0); }
}
.cu-hax__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,12,8,.40) 0%, rgba(7,12,8,.78) 60%, rgba(7,12,8,.95) 100%),
    radial-gradient(circle at 22% 30%, rgba(124,255,0,.18), transparent 60%);
  z-index: -2;
}
.cu-hax__scan {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg, rgba(124,255,0,.045) 0 2px, transparent 2px 4px);
  mix-blend-mode: screen;
  z-index: -1;
  pointer-events: none;
}
.cu-hax__noise {
  position: absolute; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(rgba(124,255,0,.7) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1px 2px;
  animation: cu-hax-noise .25s steps(2) infinite;
}
@keyframes cu-hax-noise {
  0%   { transform: translate3d(0,0,0); }
  50%  { transform: translate3d(-1px,1px,0); }
  100% { transform: translate3d(1px,-1px,0); }
}

.cu-hax__inner {
  position: relative;
  max-width: 760px;
  display: flex; flex-direction: column; gap: 16px;
}
.cu-hax__topline {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  width: max-content;
  padding: 5px 10px;
  border: 1px solid rgba(124,255,0,.45);
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
}
.cu-hax__topline .cu-hax__sep { color: rgba(124,255,0,.5); }
.cu-hax__live { color: var(--accent); }
.cu-hax__live span { display: inline-block; width: 18px; }

.cu-hax__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,.55);
}
.cu-hax__title em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(180deg, transparent 65%, rgba(124,255,0,.18) 65%);
}
.cu-hax__lede {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 16px; line-height: 1.6;
  max-width: 60ch;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.cu-hax__cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 8px;
}
.cu-hax__meta {
  display: inline-flex; gap: 6px;
  font-family: var(--ff-mono);
  font-size: 11.5px; letter-spacing: .08em;
  color: var(--ink-3);
}
.cu-hax__meta span {
  padding: 4px 8px;
  border: 1px dashed var(--line-2);
  border-radius: 2px;
  background: rgba(0,0,0,.3);
}
.cu-hax__meta span:nth-child(odd) { color: var(--accent); border-color: rgba(124,255,0,.4); }

.cu-hax__hud {
  position: absolute;
  top: 22px; right: 28px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .1em;
  color: var(--ink-3);
  z-index: 5;
  padding: 5px 10px;
  background: rgba(0,0,0,.45);
  border: 1px solid var(--line-2);
  border-radius: 2px;
  backdrop-filter: blur(3px);
}
.cu-hax__hud .cu-hax__sep { color: rgba(124,255,0,.5); }
.cu-hax__clock { color: var(--accent); }
.cu-hax__sig2 { color: var(--ink-3); }

.cu-hax__nav {
  position: absolute; left: 28px; right: 28px; bottom: 28px;
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  z-index: 5;
}
.cu-hax__prev,
.cu-hax__next {
  width: 38px; height: 38px;
  background: rgba(0,0,0,.45);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  border-radius: 2px;
  cursor: pointer;
  display: inline-grid; place-items: center;
  font-size: 18px;
  transition: color .15s, border-color .15s, background-color .15s;
  font-family: var(--ff-display);
}
.cu-hax__prev:hover,
.cu-hax__next:hover { color: var(--accent); border-color: var(--accent); }

.cu-hax__dots {
  list-style: none; padding: 0; margin: 0;
  display: inline-flex; gap: 6px;
  justify-content: center;
}
.cu-hax__dot {
  width: 56px; height: 28px;
  display: grid; place-items: center;
  background: rgba(0,0,0,.45);
  border: 1px solid var(--line-2);
  color: var(--ink-3);
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: .12em;
  cursor: pointer;
  border-radius: 2px;
  transition: color .15s, border-color .15s;
}
.cu-hax__dot.is-on {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(124,255,0,.08);
  box-shadow: 0 0 0 1px var(--accent), 0 0 12px rgba(124,255,0,.4);
}
.cu-hax__dot:hover:not(.is-on) { color: var(--ink-2); }

.cu-hax__progress {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: rgba(255,255,255,.06);
  z-index: 5;
}
.cu-hax__progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 14px rgba(124,255,0,.6);
}
.cu-hax.is-paused .cu-hax__progress-bar { background: var(--ink-3); box-shadow: none; }

@media (max-width: 900px) {
  .cu-hax__viewport { min-height: 520px; }
  .cu-hax__slide   { padding: 56px 18px 84px; }
  .cu-hax__hud     { display: none; }
  .cu-hax__nav     { left: 14px; right: 14px; bottom: 16px; }
  .cu-hax__dot     { width: 36px; }
}

/* ===== Photo-driven hero (vervangt terminal-blok) ===== */
.cu-photohero {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  padding: 80px 28px 56px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}
.cu-photohero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(1.05) contrast(1.04);
  z-index: -2;
  transform: scale(1.04);
}
.cu-photohero__shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,12,8,.55) 0%, rgba(7,12,8,.78) 60%, rgba(7,12,8,.95) 100%),
    radial-gradient(circle at 22% 30%, rgba(124,255,0,.12), transparent 60%),
    repeating-linear-gradient(180deg, rgba(124,255,0,.04) 0 2px, transparent 2px 4px);
  z-index: -1;
}
.cu-photohero__inner {
  max-width: 720px;
  display: flex; flex-direction: column; gap: 18px;
}
.cu-photohero__eyebrow {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid var(--accent);
  border-radius: 3px;
  background: rgba(124,255,0,.06);
  width: max-content;
}
.cu-photohero h1 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
  letter-spacing: -.02em;
  text-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.cu-photohero h1 em {
  font-style: normal;
  color: var(--accent);
  background: linear-gradient(180deg, transparent 65%, rgba(124,255,0,.18) 65%);
}
.cu-photohero__lede {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 16px; line-height: 1.65;
  max-width: 60ch;
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,.55);
}
.cu-photohero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.cu-photohero__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 8px;
}
.cu-photohero__inset {
  position: absolute;
  right: 28px; bottom: 28px;
  width: 240px;
  margin: 0;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-3);
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transform: rotate(1.5deg);
}
.cu-photohero__inset img {
  display: block; width: 100%; height: 160px; object-fit: cover;
  filter: saturate(1.1);
}
.cu-photohero__inset figcaption {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--ink-3);
  padding: 6px 10px;
  background: var(--panel);
  border-top: 1px dashed var(--line-2);
}
@media (max-width: 900px) {
  .cu-photohero { min-height: 460px; padding: 56px 18px 44px; }
  .cu-photohero__inset { display: none; }
}

/* ===== Section illustration (smalle banner-strip in section__head) ===== */
.cu-section--illus {
  position: relative;
  isolation: isolate;
}
.cu-section--illus::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 42%; height: 220px;
  background-size: cover; background-position: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 40%, #000 100%);
  opacity: .35;
  z-index: -1;
  pointer-events: none;
  background-image: var(--cu-illus, none);
}
@media (max-width: 800px) {
  .cu-section--illus::before { width: 100%; height: 140px; opacity: .18; }
}

/* ===== Logboek / journal article-card met featured image ===== */
.cu-jcard {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease;
  text-decoration: none;
  color: inherit;
}
.cu-jcard:hover { transform: translateY(-2px); border-color: var(--line-2); text-decoration: none; }
.cu-jcard__media {
  background: var(--bg-3);
  overflow: hidden;
  position: relative;
}
.cu-jcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 160px;
  transition: transform .35s ease;
}
.cu-jcard:hover .cu-jcard__media img { transform: scale(1.04); }
.cu-jcard__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 10px; }
.cu-jcard__date {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: .04em;
}
.cu-jcard__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}
.cu-jcard__lede {
  font-family: var(--ff-body);
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.cu-jcard__more {
  margin-top: auto;
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--accent);
}
@media (max-width: 700px) {
  .cu-jcard { grid-template-columns: 1fr; }
  .cu-jcard__media img { height: 180px; }
}

/* ===== Stock scarcity-badge op kaart ===== */
.cu-card__stock {
  position: absolute;
  left: 8px; bottom: 8px;
  padding: 4px 9px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .02em;
  border-radius: 3px;
  color: #0a0f0a;
  backdrop-filter: blur(4px);
  z-index: 2;
}
.cu-card__stock--low {
  background: #ff8a3d;
  box-shadow: 0 0 0 1px rgba(0,0,0,.3), 0 0 14px rgba(255,138,61,.35);
}
.cu-card__stock--med {
  background: rgba(253,224,71,.92);
}
.cu-card__media { position: relative; }

/* ===== Quick add-button op kaart ===== */
.cu-card__quickadd {
  position: absolute;
  right: 10px; bottom: 10px;
  width: 38px; height: 38px;
  display: inline-grid; place-items: center;
  background: var(--accent); color: #0a0f0a;
  border: 0; border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, background-color .15s;
  box-shadow: 0 6px 14px rgba(0,0,0,.3);
  z-index: 3;
}
.cu-card:hover .cu-card__quickadd,
.cu-card__quickadd:focus-visible { opacity: 1; transform: translateY(0); }
.cu-card__quickadd:hover { background: #a3ff45; }
.cu-card__quickadd.is-added { background: var(--bg-3); color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.cu-card__quickadd svg { pointer-events: none; }

/* ===== Horizontal carousel (populair / related) ===== */
.cu-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 280px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 28px;
  padding: 4px 28px 20px;
  margin: 0 -28px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.cu-rail::-webkit-scrollbar { height: 8px; }
.cu-rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }
.cu-rail::-webkit-scrollbar-track { background: transparent; }
.cu-rail > .cu-card { scroll-snap-align: start; }

.cu-rail-wrap { position: relative; }
.cu-rail-wrap::after {
  content: "";
  position: absolute; right: 0; top: 0; bottom: 20px;
  width: 56px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--bg));
}
.cu-rail-wrap.is-end::after { opacity: 0; }

.cu-rail-nav {
  display: flex; gap: 8px;
}
.cu-rail-nav button {
  width: 36px; height: 36px;
  background: var(--panel);
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  border-radius: 3px;
  cursor: pointer;
  display: inline-grid; place-items: center;
  transition: color .15s, border-color .15s, background-color .15s;
  font-family: var(--ff-display);
  font-size: 16px;
}
.cu-rail-nav button:hover:not([disabled]) {
  color: var(--accent); border-color: var(--accent);
}
.cu-rail-nav button[disabled] { opacity: .35; cursor: not-allowed; }

@media (max-width: 700px) {
  .cu-rail {
    grid-auto-columns: 78%;
    padding-left: 14px; padding-right: 14px;
    margin: 0 -14px;
  }
}

/* ===== Sticky add-to-cart bar (product page) ===== */
.cu-sticky-cart {
  position: fixed;
  left: var(--side-w); right: 0; bottom: 0;
  z-index: 55;
  display: flex; align-items: center; gap: 14px;
  padding: 12px 22px;
  background: rgba(10,15,10,.94);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line-2);
  transform: translateY(110%);
  transition: transform .25s ease;
  box-shadow: 0 -8px 28px rgba(0,0,0,.35);
}
.cu-sticky-cart.is-on { transform: translateY(0); }
.cu-sticky-cart__thumb {
  width: 44px; height: 44px;
  border-radius: 4px; overflow: hidden;
  background: var(--bg-3); flex: 0 0 auto;
}
.cu-sticky-cart__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cu-sticky-cart__info { flex: 1; min-width: 0; }
.cu-sticky-cart__title {
  font-family: var(--ff-display); font-weight: 700;
  color: var(--ink); font-size: 14px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.cu-sticky-cart__meta {
  font-family: var(--ff-body); font-size: 12px;
  color: var(--ink-3);
}
.cu-sticky-cart__price {
  font-family: var(--ff-display); font-weight: 800;
  color: var(--ink); font-size: 18px;
}
.cu-sticky-cart .cu-btn { padding: 10px 18px; font-size: 13.5px; }
@media (max-width: 900px) {
  .cu-sticky-cart { left: 0; padding: 10px 12px; }
  .cu-sticky-cart__thumb { width: 36px; height: 36px; }
  .cu-sticky-cart__meta { display: none; }
}

