/* ==========================================================================
   hetoordeel.nl - gedeelde stylesheet
   Alle pagina's laden dit bestand. Pagina-specifieke CSS staat onderaan
   in de betreffende sectie, niet in de HTML.
   ========================================================================== */

:root {
  --blue: #004DF5;
  --blue-dark: #0038B8;
  --blue-soft: #E8EFFF;
  --navy: #001433;
  --green: #00A860;
  --green-soft: #E3F6ED;
  --red: #E02D2D;
  --red-soft: #FDEAEA;
  --amber: #B26A00;
  --amber-soft: #FFF3E0;
  --ink: #1A2433;
  --muted: #5F6B7A;
  --line: #E4E8EE;
  --bg-soft: #F5F7FA;
  --white: #FFFFFF;

  /* Award-metalen: het vaste rangsysteem van Het Oordeel */
  --gold: #A8811A;
  --gold-soft: #FBF3DB;
  --gold-line: #E7D08A;
  --gold-grad: linear-gradient(135deg, #B8912A 0%, #E8C766 45%, #A8811A 100%);

  --silver: #66707E;
  --silver-soft: #F1F3F6;
  --silver-line: #CDD4DD;
  --silver-grad: linear-gradient(135deg, #7C8794 0%, #C3CBD5 45%, #6B7684 100%);

  --bronze: #99552C;
  --bronze-soft: #FAEEE5;
  --bronze-line: #E3BC9C;
  --bronze-grad: linear-gradient(135deg, #A45E30 0%, #D69463 45%, #8E4E27 100%);

  --radius: 12px;
  --radius-l: 16px;
  --wrap: 1160px;
  --wrap-article: 820px;
  --font: 'Inter', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--ink); background: var(--white);
  font-size: 16.5px; line-height: 1.7; -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-article { max-width: var(--wrap-article); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 16px; padding: 14px 28px; border-radius: 999px;
  transition: background 0.15s, color 0.15s;
}
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-soft); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Header ----------
   Indeling: logo links, daarna alles rechts uitgelijnd (menu, dan zoeken).
   De marge-auto op het logo duwt de rest naar rechts, zodat het menu op elke
   pagina op exact dezelfde plek staat. */
.header { border-bottom: 1px solid var(--line); background: var(--white); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 40px; height: 76px; }

.logo { display: flex; align-items: center; flex-shrink: 0; margin-right: auto; }
.logo img { height: 30px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-weight: 500; font-size: 15.5px; color: var(--ink);
  display: inline-block; padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav a:hover { color: var(--blue); }
.nav a[aria-current="page"] { color: var(--blue); font-weight: 600; border-bottom-color: var(--blue); }

.search {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 18px; color: var(--muted);
  font-size: 14.5px;
  transition: border-color 0.15s, color 0.15s;
}
.search:hover { border-color: var(--blue); color: var(--ink); }

@media (max-width: 1080px) {
  .nav { display: none; }
  .search span { display: none; }
  .search { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .logo img { height: 25px; }
  .header-inner { gap: 16px; }
}

/* ---------- Award-systeem: goud, zilver, brons ---------- */
/* Elke top-lijst op de site gebruikt deze drie plaatsen. Alles daaronder
   krijgt een award-label zonder metaal (klasse .rank-plain). */
.medal {
  display: inline-grid; place-items: center; flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  font-weight: 800; font-size: 14px; color: #fff;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.18);
}
.medal-gold { background: var(--gold-grad); }
.medal-silver { background: var(--silver-grad); }
.medal-bronze { background: var(--bronze-grad); }
.medal-plain { background: var(--navy); font-size: 13px; box-shadow: none; }

.award-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px; border: 1px solid transparent;
}
.award-gold { background: var(--gold-soft); color: var(--gold); border-color: var(--gold-line); }
.award-silver { background: var(--silver-soft); color: var(--silver); border-color: var(--silver-line); }
.award-bronze { background: var(--bronze-soft); color: var(--bronze); border-color: var(--bronze-line); }
.award-plain { background: var(--blue-soft); color: var(--blue); border-color: #CBDBFF; }

/* ---------- Hero met testfoto ---------- */
.hero { background: var(--white); padding: 64px 0 72px; }
.hero-inner { display: grid; grid-template-columns: 1fr 500px; gap: 64px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5vw, 54px); font-weight: 800; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--blue); }
.hero-lead { color: var(--muted); font-size: 18px; margin-bottom: 28px; max-width: 520px; }
.hero-checks { display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.hero-checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
.check-ic {
  width: 24px; height: 24px; flex-shrink: 0; margin-top: 3px;
  background: var(--blue-soft); color: var(--blue); border-radius: 50%;
  display: grid; place-items: center;
}
.hero-cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero-fine { font-size: 14px; color: var(--muted); }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; height: 540px; object-fit: cover; object-position: 55% 30%;
  border-radius: 20px; background: var(--bg-soft);
}
.hero-photo figcaption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(0, 20, 51, 0.82); backdrop-filter: blur(6px);
  color: #fff; font-size: 13.5px; line-height: 1.5;
  padding: 12px 16px; border-radius: 12px;
}
.hero-photo figcaption strong { color: #fff; display: block; font-size: 14px; }
.hero-badge {
  position: absolute; top: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.94); color: var(--navy);
  font-weight: 700; font-size: 13px; padding: 8px 14px; border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0,20,51,0.16);
}
.hero-badge .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 4px rgba(0,168,96,0.18);
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 40px 0 56px; }
  .hero-photo img { height: 380px; }
}

/* ---------- Trust bar ---------- */
.trustbar { background: var(--navy); color: #fff; padding: 22px 0; }
.trustbar-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.trustbar .item { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.trustbar .item svg { color: #6E9BFF; flex-shrink: 0; }
@media (max-width: 760px) { .trustbar-inner { flex-direction: column; gap: 12px; } }

/* ---------- Secties ---------- */
section { padding: 76px 0; }
.sec-soft { background: var(--bg-soft); }
.sec-head { margin-bottom: 40px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; }
.sec-head h2 { font-size: clamp(27px, 3.6vw, 37px); margin-bottom: 8px; }
.sec-head p { color: var(--muted); font-size: 17px; max-width: 620px; }
.sec-link { font-weight: 600; color: var(--blue); white-space: nowrap; font-size: 15.5px; }
.sec-link:hover { text-decoration: underline; }
@media (max-width: 760px) {
  section { padding: 52px 0; }
  .sec-head { flex-direction: column; align-items: flex-start; }
}

/* ---------- Categorietegels ---------- */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 14px 22px; text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.tile:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(0,77,245,0.10); transform: translateY(-2px); }
.tile-ic { width: 58px; height: 58px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; }
.tile-name { font-weight: 600; font-size: 14.5px; color: var(--navy); line-height: 1.25; }
.tile-n { font-size: 12.5px; color: var(--muted); }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .tiles { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Vers geoordeeld ---------- */
.fresh { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fresh-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 24px; transition: border-color 0.15s, box-shadow 0.15s;
  display: flex; flex-direction: column; gap: 14px;
}
.fresh-card:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(0,77,245,0.10); }
.fresh-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.fresh-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); }
.fresh-date { font-size: 13px; color: var(--muted); white-space: nowrap; }
.fresh-title { font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.fresh-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line);
}
.mini-score { font-weight: 800; font-size: 18px; color: var(--navy); background: var(--bg-soft); border-radius: 8px; padding: 4px 10px; }
@media (max-width: 920px) { .fresh { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .fresh { grid-template-columns: 1fr; } }

/* ---------- Stappen / methode ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stepc { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 32px 28px; }
.stepc-num {
  width: 44px; height: 44px; border-radius: 12px; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 20px; margin-bottom: 18px;
}
.stepc h3 { font-size: 20px; margin-bottom: 8px; }
.stepc p { color: var(--muted); font-size: 15.5px; }
@media (max-width: 840px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Testteam ---------- */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.member {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 24px 18px; text-align: center;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.member:hover {
  border-color: var(--blue); box-shadow: 0 8px 24px rgba(0,77,245,0.08);
  transform: translateY(-2px);
}
/* Ronde pasfoto. De bron is een vierkante uitsnede; border-radius maakt hem rond. */
.member-av {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 14px;
  overflow: hidden; background: var(--bg-soft);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--line);
  transition: box-shadow 0.15s;
}
.member-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.member:hover .member-av { box-shadow: 0 0 0 3px var(--white), 0 0 0 4px var(--blue); }
/* Terugval voor teamleden zonder foto: initialen */
.member-av.is-initials {
  display: grid; place-items: center; background: var(--navy); color: #fff;
  font-weight: 700; font-size: 28px; letter-spacing: -0.02em;
}
.member-name { font-weight: 700; font-size: 16px; color: var(--navy); line-height: 1.3; }
.member-role { font-size: 13.5px; color: var(--blue); font-weight: 600; margin-top: 3px; }
.member-meta { font-size: 13px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Bezoekersvoorstellen ---------- */
.suggest-box {
  background: var(--navy); color: #fff; border-radius: 20px;
  padding: 48px 44px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.suggest-box h2 { color: #fff; font-size: clamp(25px, 3.4vw, 33px); margin-bottom: 12px; }
.suggest-box > div > p { color: rgba(255,255,255,0.82); font-size: 16.5px; }
.suggest-form { display: flex; flex-direction: column; gap: 12px; }
.suggest-form input, .suggest-form select {
  width: 100%; border: 1px solid rgba(255,255,255,0.22); background: rgba(255,255,255,0.08);
  color: #fff; font: inherit; font-size: 15.5px; padding: 14px 18px; border-radius: 12px;
  outline: none;
}
.suggest-form input::placeholder { color: rgba(255,255,255,0.55); }
.suggest-form input:focus, .suggest-form select:focus { border-color: #6E9BFF; background: rgba(255,255,255,0.13); }
.suggest-form select option { color: var(--ink); }
.suggest-form .btn { width: 100%; }
.suggest-fine { font-size: 13px; color: rgba(255,255,255,0.6); }

/* Stemlijst: waar bezoekers nu op stemmen */
.votes { display: flex; flex-direction: column; gap: 10px; }
.vote-row {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 18px;
}
.vote-rank { font-weight: 800; font-size: 15px; color: var(--muted); width: 24px; flex-shrink: 0; }
.vote-name { font-weight: 600; color: var(--navy); flex: 1; min-width: 0; }
.vote-bar { flex: 1.4; height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.vote-bar span { display: block; height: 100%; background: var(--blue); border-radius: 999px; }
.vote-n { font-size: 14px; color: var(--muted); width: 92px; text-align: right; flex-shrink: 0; }
.vote-btn {
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
  font-weight: 600; font-size: 13.5px; color: var(--blue); flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}
.vote-btn:hover { background: var(--blue-soft); border-color: var(--blue); }
.vote-btn[disabled] { color: var(--green); border-color: var(--green); background: var(--green-soft); cursor: default; }
@media (max-width: 860px) {
  .suggest-box { grid-template-columns: 1fr; padding: 36px 26px; gap: 28px; }
  .vote-bar, .vote-n { display: none; }
}

/* ---------- Nieuwsbrief ---------- */
.nl-box {
  background: var(--blue); color: #fff; border-radius: 20px; padding: 52px 46px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center;
}
.nl-box h2 { color: #fff; font-size: clamp(25px, 3.4vw, 33px); margin-bottom: 10px; }
.nl-box p { color: rgba(255,255,255,0.85); font-size: 16.5px; }
.nl-form { display: flex; gap: 8px; background: #fff; border-radius: 999px; padding: 6px; }
.nl-form input {
  flex: 1; border: 0; outline: none; padding: 12px 18px;
  font: inherit; font-size: 15px; border-radius: 999px; color: var(--ink); min-width: 0;
}
.nl-form .btn { padding: 12px 24px; font-size: 15px; background: var(--navy); color: #fff; }
.nl-form .btn:hover { background: #00204d; }
.nl-fine { font-size: 13px !important; color: rgba(255,255,255,0.6) !important; margin-top: 12px; }
@media (max-width: 880px) { .nl-box { grid-template-columns: 1fr; padding: 38px 26px; gap: 26px; } }
@media (max-width: 540px) { .nl-form { flex-direction: column; border-radius: 18px; } }

/* ==========================================================================
   ARTIKEL / KOOPGIDS
   ========================================================================== */
.crumbs { padding: 18px 0 0; font-size: 14px; color: var(--muted); }
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { margin: 0 8px; color: #C3CAD4; }

.article-head { padding: 24px 0 8px; }
.article-head h1 { font-size: clamp(30px, 4.4vw, 44px); font-weight: 800; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.chip {
  display: inline-flex; background: var(--blue-soft); color: var(--blue);
  font-weight: 600; font-size: 13px; padding: 5px 14px; border-radius: 999px;
}
.article-byline {
  display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--muted);
  margin-top: 16px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
/* Ronde pasfoto van de tester, in de byline en bij een testerscitaat */
.avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-soft); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 14px; flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--line);
}
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.avatar.is-initials { background: var(--navy); }

/* Twee of meer testers naast elkaar, met lichte overlap */
.byline-avatars { display: flex; align-items: center; flex-shrink: 0; }
.byline-avatars .avatar + .avatar { margin-left: -14px; }
.article-byline a { color: var(--blue); font-weight: 600; }
.article-byline a:hover { text-decoration: underline; }

.article-photo { border-radius: var(--radius-l); overflow: hidden; margin-bottom: 28px; background: var(--bg-soft); }
.article-photo img { width: 100%; height: 400px; object-fit: cover; object-position: 55% 30%; }
.article-photo figcaption { font-size: 13.5px; color: var(--muted); padding: 12px 18px; background: var(--bg-soft); }
@media (max-width: 640px) { .article-photo img { height: 260px; } }

.featured {
  background: linear-gradient(135deg, var(--blue-soft), #F0F5FF);
  border-radius: var(--radius-l); padding: 48px 32px;
  display: grid; place-items: center; margin-bottom: 32px;
}
.featured svg { width: 200px; color: var(--navy); }

.article { padding: 28px 0 0; }
.article p { margin-bottom: 20px; }
.article h2 { font-size: clamp(24px, 3vw, 31px); margin: 48px 0 18px; }
.article h3 { font-size: 21px; margin: 32px 0 12px; }
.article > ul li, .article > ol li { margin-bottom: 8px; }

/* ---------- GEO: extraheerbaar antwoordblok ----------
   Staat hoog op de pagina en beantwoordt de hoofdvraag in 40 tot 60 woorden,
   zodat AI-engines het als losstaand antwoord kunnen citeren. */
.answer-box {
  border: 2px solid var(--navy); border-radius: var(--radius-l);
  padding: 24px 28px; margin: 28px 0; background: var(--white);
}
.answer-box .ab-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue); margin-bottom: 10px;
}
.answer-box p { font-size: 17.5px; line-height: 1.6; margin-bottom: 0; color: var(--ink); }
.answer-box p + p { margin-top: 12px; }
.answer-box strong { color: var(--navy); }

/* Kerncijfers: citeerbare feiten met bron en datum */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 24px 0; }
.fact {
  background: var(--bg-soft); border-radius: var(--radius); padding: 18px 20px;
}
.fact dt { font-size: 27px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; line-height: 1.1; }
.fact dd { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.45; }
@media (max-width: 780px) { .facts { grid-template-columns: 1fr 1fr; } }

.source-note {
  font-size: 13.5px; color: var(--muted); margin: 14px 0 24px;
  padding-left: 14px; border-left: 3px solid var(--line);
}

/* Winnaarsbox met medailles */
.winners-box {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 26px 28px; margin: 28px 0;
}
.winners-box h4 { font-size: 16px; margin-bottom: 16px; }
.winners-box li { display: flex; gap: 14px; align-items: center; padding: 9px 0; font-size: 15.5px; }
.winners-box li + li { border-top: 1px solid var(--line); }
.winners-box .wb-txt strong { color: var(--navy); }
.winners-box .wb-txt a { color: var(--blue); font-weight: 600; }
.winners-box .wb-txt a:hover { text-decoration: underline; }
.winners-box .wb-score { margin-left: auto; font-weight: 800; color: var(--navy); flex-shrink: 0; }

/* Overzichtstabel */
.ov-scroll { overflow-x: auto; margin: 20px 0 8px; }
.ov-table {
  width: 100%; border-collapse: collapse; min-width: 640px;
  border: 1px solid var(--line); border-radius: var(--radius-l); overflow: hidden; font-size: 15px;
}
.ov-table th {
  background: var(--navy); color: #fff; text-align: left; padding: 14px 16px;
  font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap;
}
.ov-table td { padding: 14px 16px; border-top: 1px solid var(--line); vertical-align: middle; }
.ov-table tbody tr:nth-child(even) td { background: var(--bg-soft); }
.ov-table tr.is-gold td { background: var(--gold-soft) !important; }
.ov-table tr.is-silver td { background: var(--silver-soft) !important; }
.ov-table tr.is-bronze td { background: var(--bronze-soft) !important; }
.ov-prod { display: flex; align-items: center; gap: 14px; }
.ov-thumb {
  width: 54px; height: 54px; border-radius: 10px; overflow: hidden;
  flex-shrink: 0; background: var(--white); border: 1px solid var(--line);
}
.ov-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ov-name { font-weight: 600; color: var(--navy); line-height: 1.35; }
@media (max-width: 720px) { .ov-thumb { display: none; } }
.ov-award { font-size: 13.5px; font-weight: 600; color: var(--muted); }
.ov-price { font-weight: 700; color: var(--navy); white-space: nowrap; }
.ov-score {
  display: inline-grid; place-items: center; width: 46px; height: 46px;
  border-radius: 10px; background: var(--blue); color: #fff; font-weight: 800; font-size: 17px;
}
.ov-score.s-gold { background: var(--gold-grad); }
.ov-score.s-silver { background: var(--silver-grad); }
.ov-score.s-bronze { background: var(--bronze-grad); }
.ov-btn {
  display: inline-flex; background: var(--blue); color: #fff; font-weight: 600;
  font-size: 13.5px; padding: 9px 16px; border-radius: 999px; white-space: nowrap;
}
.ov-btn:hover { background: var(--blue-dark); }

/* Productblok */
.prod { border: 1px solid var(--line); border-radius: var(--radius-l); margin: 36px 0; overflow: hidden; }
.prod.is-gold { border-color: var(--gold-line); }
.prod.is-silver { border-color: var(--silver-line); }
.prod.is-bronze { border-color: var(--bronze-line); }
.prod-award {
  background: var(--navy); color: #fff; padding: 13px 26px;
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.prod-award .aw-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.prod-award .sc { font-size: 18px; letter-spacing: 0; white-space: nowrap; }
.prod-award.gold { background: var(--gold-grad); color: #2B2003; }
.prod-award.silver { background: var(--silver-grad); color: #1E2530; }
.prod-award.bronze { background: var(--bronze-grad); color: #2E1706; }
.prod-award .rank-n {
  display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.75); color: var(--navy); font-size: 13px; flex-shrink: 0;
}
.prod-award.gold .rank-n, .prod-award.silver .rank-n, .prod-award.bronze .rank-n { background: rgba(255,255,255,0.85); }

.prod-inner { padding: 26px 28px 28px; }

/* Productbeeld boven de review. Vaste verhouding, zodat de pagina niet
   verspringt en een echte foto later exact dezelfde ruimte inneemt. */
.prod-visual {
  background: var(--bg-soft); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 22px;
}
.prod-visual img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 3; object-fit: cover;
}
.prod-visual figcaption {
  font-size: 12.5px; color: var(--muted); padding: 9px 16px;
  border-top: 1px solid var(--line); background: var(--white);
}
.prod h3 { margin: 0 0 6px; font-size: 24px; }
.prod-sub { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.prod p { margin-bottom: 16px; }

/* Specs-strip onder de titel */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 18px 0 22px; }
.specs div { background: var(--white); padding: 14px 16px; }
.specs dt { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 600; }
.specs dd { font-weight: 700; color: var(--navy); font-size: 15.5px; margin-top: 2px; }
@media (max-width: 700px) { .specs { grid-template-columns: 1fr 1fr; } }

/* Testscores per onderdeel */
.scorelist { margin: 22px 0; display: flex; flex-direction: column; gap: 10px; }
.scoreline { display: flex; align-items: center; gap: 14px; font-size: 14.5px; }
.scoreline .sl-label { width: 168px; flex-shrink: 0; color: var(--muted); }
.scoreline .sl-bar { flex: 1; height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.scoreline .sl-bar span { display: block; height: 100%; background: var(--blue); border-radius: 999px; }
.scoreline .sl-n { width: 34px; text-align: right; font-weight: 700; color: var(--navy); flex-shrink: 0; }
@media (max-width: 560px) { .scoreline .sl-label { width: 110px; } }

.pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.pc { border-radius: var(--radius); padding: 20px 22px; }
.pc.pros { background: var(--green-soft); }
.pc.cons { background: var(--red-soft); }
.pc h4 { font-size: 15px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.pc.pros h4 { color: var(--green); }
.pc.cons h4 { color: var(--red); }
.pc li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; padding: 5px 0; line-height: 1.5; }
.pc li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; margin-top: 8px; }
.pc.pros li::before { background: var(--green); }
.pc.cons li::before { background: var(--red); }
@media (max-width: 660px) { .pc-grid { grid-template-columns: 1fr; } }

.verdict-line {
  background: var(--blue-soft); border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 20px 0;
}
.verdict-line p { margin: 0; }

.tester-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-soft); border-radius: var(--radius); padding: 16px 18px; margin: 20px 0;
  font-size: 15px; color: var(--ink);
}
.tester-note .avatar { width: 40px; height: 40px; font-size: 13px; }
.tester-note .tn-who { font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 3px; }
.tester-note p { margin: 0; font-style: italic; }

.prod-cta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.prod-cta-note { font-size: 13.5px; color: var(--muted); }

/* Koopgids-bullets */
.guide li { padding: 10px 0 10px 30px; position: relative; margin-bottom: 4px; }
.guide li::before { content: ""; position: absolute; left: 0; top: 17px; width: 10px; height: 10px; border-radius: 3px; background: var(--blue); }
.guide li strong { color: var(--navy); }

/* Conclusie */
.conclusion { background: var(--blue-soft); border-radius: var(--radius-l); padding: 26px 30px; margin: 24px 0; }
.conclusion p { margin-bottom: 14px; }
.conclusion p:last-child { margin-bottom: 0; }
.conclusion a { color: var(--blue); font-weight: 600; }
.conclusion a:hover { text-decoration: underline; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 0;
  font-weight: 600; font-size: 17px; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--blue); font-weight: 400; transition: transform 0.2s; flex-shrink: 0; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 0 20px; color: var(--muted); }

/* Transparantie */
.disclosure {
  font-size: 13.5px; color: var(--muted); background: var(--bg-soft);
  border-radius: var(--radius); padding: 14px 18px; margin: 28px 0;
  border-left: 3px solid var(--blue);
}
.disclosure a { color: var(--blue); font-weight: 600; }
.disclosure a:hover { text-decoration: underline; }

/* Gerelateerd */
.related { background: var(--bg-soft); padding: 68px 0; margin-top: 68px; }
.related h2 { font-size: 28px; margin-bottom: 30px; }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rel-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l);
  overflow: hidden; transition: border-color 0.15s, box-shadow 0.15s;
}
.rel-card:hover { border-color: var(--blue); box-shadow: 0 10px 30px rgba(0,77,245,0.10); }
.rel-img { background: var(--blue-soft); height: 130px; display: grid; place-items: center; color: var(--navy); }
.rel-body { padding: 18px 20px 20px; }
.rel-cat { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); margin-bottom: 6px; }
.rel-title { font-size: 17px; font-weight: 700; color: var(--navy); line-height: 1.35; }
.rel-date { font-size: 13px; color: var(--muted); margin-top: 10px; }
@media (max-width: 840px) { .rel-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   TEKSTPAGINA'S (methode, over ons, privacy, disclaimer)
   ========================================================================== */
.page-head { background: var(--bg-soft); border-bottom: 1px solid var(--line); padding: 52px 0; }
.page-head h1 { font-size: clamp(30px, 4.2vw, 42px); font-weight: 800; margin-bottom: 12px; }
.page-head p { color: var(--muted); font-size: 18px; max-width: 680px; }
.prose { padding: 52px 0 72px; }
.prose h2 { font-size: 26px; margin: 44px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p { margin-bottom: 18px; }
.prose ul { margin: 0 0 20px; }
.prose ul li { padding: 6px 0 6px 26px; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 8px; height: 8px; border-radius: 2px; background: var(--blue); }
.prose a { color: var(--blue); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
.prose table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 20px 0 24px; }
.prose th { background: var(--navy); color: #fff; text-align: left; padding: 12px 16px; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.05em; }
.prose td { padding: 12px 16px; border-top: 1px solid var(--line); vertical-align: top; }
.callout { background: var(--blue-soft); border-radius: var(--radius-l); padding: 22px 26px; margin: 24px 0; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--navy); }

/* Weegfactoren */
.weights { display: flex; flex-direction: column; gap: 12px; margin: 22px 0 28px; }
.weight { display: flex; align-items: center; gap: 16px; font-size: 15px; }
.weight .w-label { width: 210px; flex-shrink: 0; font-weight: 600; color: var(--navy); }
.weight .w-bar { flex: 1; height: 10px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.weight .w-bar span { display: block; height: 100%; background: var(--blue); border-radius: 999px; }
.weight .w-n { width: 48px; text-align: right; font-weight: 700; color: var(--navy); }
@media (max-width: 620px) { .weight .w-label { width: 130px; font-size: 14px; } }

/* Award-legenda */
.legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 24px 0 28px; }
.legend-card { border: 1px solid var(--line); border-radius: var(--radius-l); padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; }
.legend-card.l-gold { background: var(--gold-soft); border-color: var(--gold-line); }
.legend-card.l-silver { background: var(--silver-soft); border-color: var(--silver-line); }
.legend-card.l-bronze { background: var(--bronze-soft); border-color: var(--bronze-line); }
.legend-card h4 { font-size: 16px; margin-bottom: 4px; }
.legend-card p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .legend { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.footer { background: var(--bg-soft); border-top: 1px solid var(--line); padding: 60px 0 28px; font-size: 14.5px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--line);
}
.footer .logo { margin-right: 0; }
.footer .logo img { height: 26px; }
.footer-brand p { color: var(--muted); margin-top: 16px; max-width: 300px; }
.footer h5 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer ul a { color: var(--muted); }
.footer ul a:hover { color: var(--blue); }
.footer-rating {
  margin-top: 26px; padding: 18px 24px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; align-items: center; gap: 12px; font-size: 14.5px; color: var(--ink);
}
.footer-rating strong { color: var(--blue); }
.footer-bottom {
  padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--muted); font-size: 13.5px;
}
.footer-bottom a:hover { color: var(--blue); }
@media (max-width: 840px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
