/* ═══════════════════════════════════════════════════ */
/*  PRODUCT-PAGINA SHARED STYLES                       */
/*  Voor alle /product/[slug].html pagina's            */
/* ═══════════════════════════════════════════════════ */

.product-page { padding: 32px 0 80px; }

/* ── HERO: image left, info right ── */
/* Grid-template-areas layout: header (full) → image (70%) + affiliate (30%) → rest (full) */
.product-hero {
  display: grid;
  grid-template-columns: 6fr 4fr;
  gap: 10px 24px;
  margin-bottom: 36px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px;
  grid-template-areas:
    "brand    badge"
    "title    propick"
    "image    rating"
    "image    short"
    "image    affiliate"
    "specs    specs";
}
@media (max-width: 768px) {
  .product-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
    grid-template-areas:
      "brand"
      "badge"
      "title"
      "propick"
      "image"
      "rating"
      "short"
      "affiliate"
      "specs";
  }
}

/* .product-hero__info wordt unwrapped zodat children direct grid-children worden */
.product-hero__info { display: contents; }

/* Grid-area-assignment per element */
/* Grid handelt spacing via row-gap — reset margins van elementen in grid */
.product-hero__brand    { grid-area: brand; margin: 0; align-self: end; }
.product-hero__category { grid-area: badge; align-self: end; justify-self: start; margin: 0; }
.product-hero__title    { grid-area: title; margin: 0; align-self: end; }
.product-hero__pro-pick { grid-area: propick; margin: 0; align-self: end; justify-self: start; }
.product-hero__image    { grid-area: image; }
.affiliate-block        { grid-area: affiliate; align-self: start; margin: 0; }
.product-hero__rating   { grid-area: rating; align-self: start; margin: 0; }
.product-hero__short    { grid-area: short; align-self: start; line-height: 1.6; margin: 0; }
.quick-specs            { grid-area: specs; margin: 0; }

/* Image spant 3 rijen verticaal (image-row + rating-row + short-row) */
.product-hero__image    { grid-area: image; align-self: stretch; max-height: none; }

/* IMAGE: align-self start zodat image NIET de cell-hoogte forceert. Right-column content bepaalt rij-hoogtes. */
.product-hero__image {
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  width: 100%;
  max-height: 420px;
  align-self: start;
  margin: 0;
  overflow: hidden;
}
.product-hero__image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
}
.product-hero__image img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* ══════════════════════════════════════════════════════════════════
   HERO V2 (opt-in via editorial.heroVariant = "v2")
   Performance-first hierarchy: FPS-headline-card op de plek waar
   rating+short stonden. Gamer-targeting i.p.v. e-commerce.
   ══════════════════════════════════════════════════════════════════ */
.product-hero--v2 {
  grid-template-columns: 6fr 4fr;
  grid-template-areas:
    "brand    badge"
    "title    fps"
    "image    fps"
    "image    ladder"
    "image    strip"
    "image    affiliate"
    "specs    specs";
}
.product-hero--v2 .product-hero__title { grid-area: title; align-self: end; }
.product-hero--v2 .product-hero__category { justify-self: end; align-self: start; }
.product-hero--v2 .hero-fps     { grid-area: fps; align-self: start; }
.product-hero--v2 .hero-ladder  { grid-area: ladder; align-self: start; }
.product-hero--v2 .hero-context-strip { grid-area: strip; align-self: start; display: flex; flex-wrap: wrap; gap: 5px; margin: 4px 0 0; }
.product-hero--v2 .affiliate-block { grid-area: affiliate; }

/* V2 image: vertikaal centreren binnen de 3-rij span (fps + ladder + strip + affiliate hoogte) */
.product-hero--v2 .product-hero__image {
  align-self: center;
  max-height: 480px;
}
.product-hero--v2 .product-hero__image img {
  max-height: 480px;
}

/* V2 chips: compacter zodat 4 chips op 1 rij passen in 364px right-column */
.product-hero--v2 .hero-chip {
  padding: 5px 8px;
  font-size: 10.5px;
  letter-spacing: 0.6px;
}

@media (max-width: 768px) {
  .product-hero--v2 {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "badge"
      "title"
      "image"
      "fps"
      "ladder"
      "strip"
      "affiliate"
      "specs";
  }
}

/* ── FPS hero-card: het visuele anker ── */
.hero-fps {
  background: linear-gradient(135deg, rgba(255,204,0,0.10) 0%, rgba(255,204,0,0.02) 100%);
  border: 1px solid rgba(255,204,0,0.35);
  padding: 18px 22px 16px;
  position: relative;
  overflow: hidden;
}
.hero-fps::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, #ffcc00, rgba(255,204,0,0.2));
}
.hero-fps__headline {
  display: flex; align-items: baseline; gap: 6px;
  line-height: 1;
}
.hero-fps__number {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 7vw, 72px);
  color: #ffcc00;
  letter-spacing: -1px;
  text-shadow: 0 0 24px rgba(255,204,0,0.35);
}
.hero-fps__unit {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(255,204,0,0.85);
  letter-spacing: 2px;
}
.hero-fps__game {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  margin-top: 8px;
  letter-spacing: 1px;
}
.hero-fps__context {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.hero-fps__rating {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.hero-fps__rating strong { color: #ffcc00; font-weight: 700; }

/* ── Ladder: 3 secundaire benchmarks ── */
.hero-ladder {
  display: flex; flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.hero-ladder__row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 8px 12px;
  background: rgba(255,255,255,0.025);
  border-left: 2px solid rgba(255,204,0,0.25);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.hero-ladder__row:hover {
  background: rgba(255,255,255,0.05);
  border-left-color: rgba(255,204,0,0.6);
}
.hero-ladder__label {
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}
.hero-ladder__value {
  color: #fff; font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── Context strip: pro-pick + build-bridge + tech badges ── */
.product-hero--v2 .affiliate-block { position: relative; }
.product-hero--v2 .affiliate-block::before {
  content: attr(data-context);
  /* overridden by JS-rendered strip below */
}

.hero-context-strip-v {
  /* Will inject before affiliate-block via JS-less approach: include in builder above affiliate */
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 10px;
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: all 0.15s ease;
}
.hero-chip--primary {
  border-color: rgba(255,204,0,0.5);
  background: rgba(255,204,0,0.09);
  color: #ffcc00;
}
.hero-chip--build-link {
  border-color: rgba(145,71,255,0.5);
  background: rgba(145,71,255,0.08);
  color: #b58aff;
}
.hero-chip--build-link:hover {
  background: rgba(145,71,255,0.18);
  color: #d4baff;
}
.hero-chip__arrow {
  opacity: 0.6;
  font-size: 12px;
}
.hero-chip--build-link:hover .hero-chip__arrow {
  opacity: 1;
  transform: translateX(2px);
}

/* RRP-label (adviesprijs-framing, geen euro-teken pre-API) */
.rrp-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  vertical-align: 1px;
}
/* Adviesprijs-regel boven de shop-knoppen (richtprijs pre-API; shops tonen "Bekijk prijs") */
.affiliate-rrp {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
}
.affiliate-rrp .rrp-label { margin-right: 4px; }
.affiliate-rrp small {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* ══════════════════════════════════════════════════════════════════
   QVL-SECTIE (op RAM + mobo pages)
   ══════════════════════════════════════════════════════════════════ */
.qvl-section__intro {
  margin: 10px 0 18px;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  line-height: 1.55;
}
.qvl-section__intro strong {
  color: #ffcc00;
  font-weight: 700;
}
.qvl-list {
  display: flex; flex-direction: column;
  gap: 6px;
}
.qvl-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(255,204,0,0.4);
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-family: 'Rajdhani', sans-serif;
  transition: all 0.15s ease;
}
.qvl-row:hover {
  background: rgba(255,204,0,0.06);
  border-left-color: #ffcc00;
  transform: translateX(2px);
}
.qvl-row__platform {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #44ccff;
  padding: 3px 7px;
  background: rgba(68,204,255,0.08);
  border: 1px solid rgba(68,204,255,0.3);
}
.qvl-row__name {
  font-size: 14px; font-weight: 700;
  color: #fff;
}
.qvl-row__tier {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffcc00;
  padding: 3px 8px;
  background: rgba(255,204,0,0.08);
  border: 1px solid rgba(255,204,0,0.3);
  text-transform: uppercase;
  white-space: nowrap;
}
.qvl-row__reason {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.qvl-row__arrow {
  font-size: 18px;
  color: rgba(255,204,0,0.5);
  transition: transform 0.15s ease, color 0.15s ease;
}
.qvl-row:hover .qvl-row__arrow {
  color: #ffcc00;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .qvl-row {
    grid-template-columns: 1fr auto;
    gap: 8px;
  }
  .qvl-row__platform { grid-column: 1; }
  .qvl-row__name { grid-column: 1; }
  .qvl-row__tier { grid-column: 1; justify-self: start; }
  .qvl-row__reason { grid-column: 1; }
  .qvl-row__arrow { grid-column: 2; grid-row: 1 / span 3; align-self: center; }
}

/* ══════════════════════════════════════════════════════════════════
   BENCHMARK INFO-ICON + TOOLTIP
   Voor labels die een herkende benchmark bevatten (CS2, Cinebench, etc.)
   wordt een "?" geïnjecteerd door includes/benchmark-info.js
   ══════════════════════════════════════════════════════════════════ */
.bm-info-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 16px; height: 16px;
  margin-left: 4px;
  padding: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  vertical-align: middle;
  line-height: 1;
}
.bm-info-icon:hover {
  background: rgba(255,204,0,0.15);
  border-color: rgba(255,204,0,0.45);
  color: #ffcc00;
}

.bm-info-tooltip {
  position: absolute;
  z-index: 1000;
  background: rgba(15,15,15,0.98);
  border: 1px solid rgba(255,204,0,0.3);
  padding: 14px 16px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  box-shadow: 0 12px 32px rgba(0,0,0,0.6);
  animation: bmFadeIn 0.15s ease;
}
@keyframes bmFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.bm-info-tooltip__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.bm-info-tooltip__title {
  font-size: 14px;
  font-weight: 700;
  color: #ffcc00;
  letter-spacing: 0.3px;
}
.bm-info-tooltip__close {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px; line-height: 1;
  cursor: pointer; padding: 0 4px;
}
.bm-info-tooltip__close:hover { color: #ffcc00; }
.bm-info-tooltip__row {
  margin: 6px 0;
}
.bm-info-tooltip__label {
  display: inline-block;
  min-width: 64px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,204,0,0.65);
  margin-right: 8px;
  vertical-align: top;
}

/* ── Image-zoom (lightbox) ──
   Image krijgt zoom-in cursor + subtiele hover-scale. Click opent overlay.
   Geen JS-library, vanilla. */
.product-hero__image img {
  cursor: zoom-in;
  transition: transform 0.2s ease;
}
.product-hero__image img:hover {
  transform: scale(1.02);
}
.product-image-placeholder { cursor: default; }

.product-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center; justify-content: center;
  z-index: 9999;
  padding: 40px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.product-lightbox.is-open {
  display: flex;
  opacity: 1;
}
.product-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.product-lightbox__close {
  position: absolute;
  top: 20px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  transition: background 0.15s ease;
}
.product-lightbox__close:hover {
  background: rgba(255,204,0,0.15);
  border-color: rgba(255,204,0,0.4);
  color: #ffcc00;
}
@media (max-width: 768px) {
  .product-lightbox { padding: 20px; }
  .product-lightbox__close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
}

/* Image fallback placeholder (toont wanneer image file nog niet bestaat — wij leveren images zelf aan) */
.product-image-placeholder {
  width: 100%; min-height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,204,0,0.04), rgba(255,204,0,0.01));
  border: 1px dashed rgba(255,204,0,0.2);
  color: rgba(255,204,0,0.55);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; text-align: center;
  padding: 24px; box-sizing: border-box;
}
.product-image-placeholder small {
  display: block; margin-top: 6px;
  font-size: 10px; color: rgba(255,255,255,0.35);
  letter-spacing: 1.5px;
}

/* .product-hero__info display: contents — zie regel 21 hierboven. Hier was eerder display: flex die conflicteerde. */
.product-hero__brand {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
  margin-bottom: 8px;
}
/* Tier-badge: subtiele text-only label (geen background, geen border) — pro-pick blijft prominent. */
.product-hero__category {
  display: inline-block;
  padding: 0;
  background: none;
  border: none;
  color: rgba(255,204,0,0.75);
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0;
}

/* ══ Back-link in breadcrumb-row ══
   "← Terug" link links van de breadcrumb-chain. Smart: gebruikt history.back() als
   bezoeker van een interne pagina komt, anders fallback naar href (categorie-page).
   Specificity-trick: .article-breadcrumb prefix nodig om style.css's `.article-breadcrumb a`
   (color: var(--text-muted)) te overrulen. */
.article-breadcrumb .breadcrumb-back {
  color: #ffcc00;
  font-size: inherit;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding-right: 10px;
  margin-right: 6px;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: color .2s, transform .2s;
}
.article-breadcrumb .breadcrumb-back:hover { color: #fff; transform: translateX(-2px); }
.breadcrumb-back__arrow { display: inline-block; margin-right: 4px; }

/* Tier-color modifiers: alleen text-color (geen background/border). Subtiele kleur-hint per tier.
   S = paars (#9147ff), A = oranje (#ff6a33), B = amber (#ffaa00), C = grijs (#cccccc). */
.product-hero__category--tier-s {
  background: none;
  border: none;
  color: #9147ff;   /* canoniek, gelijk aan de ROG-build configurator */
}
.product-hero__category--tier-a {
  background: none;
  border: none;
  color: #ff4500;   /* canonieke A-tier-kleur, gelijk aan de ROG-build configurator */
}
.product-hero__category--tier-b {
  background: none;
  border: none;
  color: #ffaa00;   /* canoniek, gelijk aan de ROG-build configurator */
}
.product-hero__category--tier-c {
  background: none;
  border: none;
  color: #aaaaaa;   /* canoniek, gelijk aan de ROG-build configurator */
}
.product-hero__title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 800; color: #fff;
  letter-spacing: 1px; line-height: 1.15;
  margin: 0 0 16px;
}
.product-hero__title .accent { color: #ffcc00; }
.product-hero__pro-pick {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(145,71,255,0.15), rgba(255,69,0,0.15));
  border: 1px solid rgba(255,204,0,0.5);
  color: #ffcc00;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  width: fit-content; margin-bottom: 18px;
}
.product-hero__rating {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
  font-family: 'Rajdhani', sans-serif; font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.product-hero__stars { color: #ffcc00; letter-spacing: 1px; font-size: 14px; }
.product-hero__short {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 24px;
}

/* ── Quick-specs tags: 2-kleuren system ──
   Default = neutral grijs/wit voor "gewone" specs (platform/memory/perf).
   --key = accent-geel voor KEY hero-specs (capacity, flagship-feature).
   1 hoofdsignaal per spec-rij ipv regenboog. */
.quick-specs {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 24px;
}
.spec-tag {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.3px;
}
.spec-tag--key {
  border-color: rgba(255,204,0,0.5);
  background: rgba(255,204,0,0.09);
  color: #ffcc00;
}
/* Niet-key tags vallen terug op base-styling (geen rainbow meer) */
.spec-tag--platform,
.spec-tag--memory,
.spec-tag--perf {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
}

/* ── AFFILIATE BUTTONS ── */
.affiliate-block {
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,204,0,0.25);
  padding: 18px 20px;
  margin-top: auto;
}
.affiliate-block__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  color: rgba(255,204,0,0.85); text-transform: uppercase;
  font-weight: 700; margin-bottom: 10px;
}
/* ── Price-history sparkline (boven offers-list) ──
   Mini-chart + "Laagste 30d / Vandaag" label. Hidden tot >=7 datapunten. */
.price-history {
  margin-bottom: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
}
.price-history__row {
  display: flex; align-items: center; gap: 12px;
}
.price-history__chart {
  width: 80px; height: 28px; flex-shrink: 0;
  overflow: visible;
}
.price-history__line {
  fill: none;
  stroke: rgba(255,204,0,0.7);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.price-history__area {
  fill: rgba(255,204,0,0.08);
}
.price-history__lowest {
  fill: #44ccff;
  stroke: rgba(0,0,0,0.6);
  stroke-width: 0.5;
}
.price-history__today {
  fill: #ffcc00;
  stroke: rgba(0,0,0,0.6);
  stroke-width: 0.5;
}
.price-history__stats {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.price-history__stats strong {
  color: #fff;
  font-weight: 700;
}
.price-history__sep { opacity: 0.4; }
.price-history__delta {
  font-weight: 700;
  font-size: 11px;
  padding: 1px 6px;
  margin-left: 2px;
  letter-spacing: 0.3px;
}
.price-history__delta--good    { color: #88ee88; background: rgba(120,220,120,0.1); }
.price-history__delta--neutral { color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.price-history__delta--high    { color: #ff8855; background: rgba(255,100,50,0.1); }

@media (max-width: 480px) {
  .price-history__row { flex-wrap: wrap; }
  .price-history__chart { width: 100%; height: 32px; }
}

.affiliate-list { display: flex; flex-direction: column; gap: 8px; }
.affiliate-btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.affiliate-btn:hover { transform: translateY(-1px); }
.affiliate-btn--primary {
  background: #ffcc00; color: #000;
  border: 1px solid #ffcc00;
}
.affiliate-btn--primary:hover { background: #ffd040; border-color: #ffd040; }
.affiliate-btn--secondary {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.2);
}
.affiliate-btn--secondary:hover { border-color: rgba(255,204,0,0.6); background: rgba(255,204,0,0.05); }
.affiliate-btn--unavailable {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  cursor: not-allowed;
}
.affiliate-btn--unavailable:hover { transform: none; }
.affiliate-btn--unavailable .affiliate-btn__shop { color: rgba(255,255,255,0.5); }
.affiliate-btn--unavailable .affiliate-btn__shop small { color: rgba(255,120,120,0.7); }
.affiliate-btn__shop {
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
}
.affiliate-btn__shop small {
  display: block; font-size: 9px; letter-spacing: 1.5px;
  font-weight: 500; opacity: 0.7; margin-top: 1px;
}
.affiliate-btn__price { font-size: 17px; font-weight: 800; }
.affiliate-btn__arrow { font-size: 14px; margin-left: 6px; }
.affiliate-disclosure {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; line-height: 1.5;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
}
.affiliate-disclosure a { color: rgba(255,204,0,0.7); text-decoration: none; }

/* ── CONTENT SECTIONS ── */
.product-section {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 32px;
  margin-bottom: 18px;
}
@media (max-width: 600px) { .product-section { padding: 20px 22px; } }

.product-section__label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 3px;
  color: #ffcc00; text-transform: uppercase;
  font-weight: 700; margin-bottom: 12px;
}
.product-section__h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; letter-spacing: 1px;
  margin: 0 0 14px;
}
.product-section__p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin: 0 0 14px;
}
.product-section__p:last-child { margin-bottom: 0; }
.product-section__p strong { color: #ffcc00; font-weight: 700; }

/* ── Voor wie / Voor wie niet ── */
.target-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .target-grid { grid-template-columns: 1fr; } }
.target-card {
  padding: 18px 22px;
  border-left: 3px solid;
}
.target-card--for { border-color: #88ee88; background: rgba(120,220,120,0.04); }
.target-card--not { border-color: #ff6b35; background: rgba(255,107,53,0.04); }
.target-card__label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
  margin-bottom: 8px;
}
.target-card--for .target-card__label { color: #88ee88; }
.target-card--not .target-card__label { color: #ff6b35; }
.target-card__text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

/* ── Performance list ── */
.perf-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.perf-list li {
  padding: 14px 18px;
  background: rgba(255,204,0,0.04);
  border-left: 3px solid rgba(255,204,0,0.4);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.perf-list li strong { color: #ffcc00; font-weight: 700; }

/* ── Vs alternatieven tabel ── */
.vs-table {
  width: 100%; border-collapse: collapse;
  font-family: 'Rajdhani', sans-serif; font-size: 13px;
}
.vs-table th {
  text-align: left; padding: 10px 12px;
  background: rgba(255,204,0,0.08);
  color: #ffcc00;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700;
  border-bottom: 2px solid rgba(255,204,0,0.3);
}
.vs-table td {
  padding: 12px;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vs-table tr:last-child td { border-bottom: 0; }
.vs-table td:first-child { font-weight: 700; color: #fff; }
.vs-table td.this-product { color: #ffcc00; font-weight: 800; }

/* ── Pro tip box ── */
.pro-tip-box {
  padding: 18px 22px;
  background: rgba(255,204,0,0.05);
  border-left: 3px solid #ffcc00;
}
.pro-tip-box__label {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  color: #ffcc00; text-transform: uppercase;
  font-weight: 700; margin-bottom: 8px;
}
.pro-tip-box__text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

/* ── Build CTA ── */
.build-cta {
  background: linear-gradient(135deg, rgba(255,69,0,0.1), rgba(255,204,0,0.08));
  border: 1px solid rgba(255,204,0,0.3);
  padding: 24px 28px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
@media (max-width: 600px) { .build-cta { flex-direction: column; align-items: stretch; } }
.build-cta__text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.build-cta__text strong { color: #ffcc00; }
.build-cta__btn {
  background: #ffcc00; color: #000;
  padding: 12px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
  transition: background 0.15s;
}
.build-cta__btn:hover { background: #ffd040; }

/* ── Related products ── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.related-item {
  padding: 16px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  transition: border-color 0.15s, transform 0.15s;
}
.related-item:hover { border-color: rgba(255,204,0,0.4); transform: translateY(-2px); }
.related-item__cat {
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; letter-spacing: 1.5px;
  color: rgba(255,204,0,0.7); text-transform: uppercase;
  margin-bottom: 4px;
}
.related-item__name {
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #fff; line-height: 1.3;
  margin-bottom: 6px;
}
.related-item__price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #ffcc00;
}

/* ── Bronnen ── */
.sources-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.sources-list li {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; line-height: 1.5;
}
.sources-list a {
  color: rgba(255,204,0,0.85);
  text-decoration: none;
}
.sources-list a:hover { color: #ffcc00; text-decoration: underline; }
.sources-intro {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0 0 10px;
}

/* ── Sticky bottom CTA (mobile) ── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(20,20,20,0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,204,0,0.3);
  padding: 12px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px; z-index: 50;
}
@media (max-width: 768px) { .sticky-cta { display: flex; } }
.sticky-cta__info {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.7);
  line-height: 1.3;
}
.sticky-cta__info strong { color: #fff; font-size: 15px; display: block; }
.sticky-cta__btn {
  background: #ffcc00; color: #000;
  padding: 12px 18px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; white-space: nowrap;
}
