/* ── Reset & Vars ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:          #ffffff;
  --bg-alt:      #f8fafc;
  --bg-dark:     #1e293b;
  --text:        #111827;
  --text-muted:  #6b7280;
  --accent:      #d97706;
  --accent-dark: #92400e;
  --bol-blue:    #0070f3;
  --amazon-org:  #ff9900;
  --border:      #e5e7eb;
  --radius:      10px;
  --shadow:      0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10);
  --max-w:       1160px;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 16px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: .9rem 0;
}
.header-inner {
  display: flex; align-items: center; gap: 2rem;
}
.logo {
  font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -.5px;
  flex-shrink: 0;
}
.logo span { color: var(--accent); }
.main-nav { display: flex; gap: 1.5rem; flex: 1; }
.main-nav a { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 500; transition: color .15s; }
.main-nav a:hover { color: #fff; }
.lang-switcher { display: flex; gap: .5rem; margin-left: auto; }
.lang-switcher a {
  font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.5);
  padding: .2rem .5rem; border-radius: 4px; transition: all .15s;
}
.lang-switcher a.active,
.lang-switcher a:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ── Hero ── */
.hero {
  background: var(--bg-dark);
  color: #fff; padding: 5rem 0 4rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700; line-height: 1.2;
  letter-spacing: -.5px; margin-bottom: 1rem;
}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff;
  padding: .75rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  transition: background .15s, transform .1s;
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ── Sections ── */
.section { padding: 4rem 0; }
.section--alt { background: var(--bg-alt); }
.section-title {
  font-size: 1.6rem; font-weight: 700; margin-bottom: 2rem;
  letter-spacing: -.3px;
}

/* ── Category cards ── */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (max-width: 640px) { .category-grid { grid-template-columns: 1fr; } }

.category-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow .2s, transform .2s;
  background: var(--bg);
}
.category-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.category-card__img {
  height: 200px; background-size: cover; background-position: center;
  background-color: var(--bg-alt);
}
.category-card__body { padding: 1.5rem; flex: 1; }
.category-card__icon { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.category-card__body h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; }
.category-card__body p { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.link-arrow { color: var(--accent); font-weight: 600; font-size: .9rem; }

/* ── Review grid ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .review-grid { grid-template-columns: 1fr; } }

.review-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--bg);
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-card__img {
  height: 195px; position: relative;
  background-size: cover; background-position: center;
  background-color: var(--bg-alt);
}
.score-badge {
  position: absolute; top: .75rem; right: .75rem;
  color: #fff; font-weight: 700; font-size: .9rem;
  padding: .3rem .6rem; border-radius: 6px;
  min-width: 2.5rem; text-align: center;
}
.review-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.review-card__cat {
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  color: var(--accent); letter-spacing: .4px; margin-bottom: .4rem; display: block;
}
.review-card__body h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; line-height: 1.35; }
.review-card__body p { color: var(--text-muted); font-size: .875rem; flex: 1; margin-bottom: .9rem; }
.card-meta { display: flex; justify-content: space-between; align-items: center; }
.score-inline { font-size: .85rem; }

/* ── Breadcrumb ── */
.breadcrumb {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: .65rem 0; font-size: .82rem; color: var(--text-muted);
}
.breadcrumb .container { display: flex; gap: .4rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── Category hero ── */
.cat-hero {
  background: var(--bg-dark); color: #fff;
  padding: 3rem 0 2.5rem;
}
.cat-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; margin-bottom: .5rem; }
.cat-hero p  { color: rgba(255,255,255,.65); max-width: 600px; }

/* ── Single review ── */
.review-hero-img {
  height: clamp(260px, 40vw, 420px);
  background-size: cover; background-position: center;
  position: relative;
}
.review-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 40%, rgba(0,0,0,.2));
  display: flex; align-items: flex-end;
  padding-bottom: 2.5rem;
}
.review-hero-overlay .container { color: #fff; }
.review-cat-label {
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .6px; color: var(--accent); display: block; margin-bottom: .4rem;
}
.review-hero-overlay h1 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.2;
}

.review-body { padding: 2.5rem 0 4rem; }
.review-main { max-width: 780px; }

/* Score + buy row */
.review-top {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.5rem; background: var(--bg-alt);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.score-circle {
  width: 80px; height: 80px; border-radius: 50%;
  border: 4px solid var(--score-color, #16a34a);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.score-num  { font-size: 1.5rem; font-weight: 700; line-height: 1; color: var(--score-color, #16a34a); }
.score-label{ font-size: .65rem; color: var(--text-muted); text-transform: uppercase; }

/* Buy buttons */
.buy-buttons { display: flex; gap: .75rem; flex-wrap: wrap; }
.buy-buttons--bottom { margin-top: 2.5rem; }
.btn-bol {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--bol-blue); color: #fff;
  padding: .7rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem;
  transition: filter .15s, transform .1s;
}
.btn-bol:hover { filter: brightness(1.1); transform: translateY(-1px); }
.btn-amazon {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--amazon-org); color: #111;
  padding: .7rem 1.25rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem;
  transition: filter .15s, transform .1s;
}
.btn-amazon:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* Intro */
.review-intro {
  font-size: 1.05rem; line-height: 1.8; color: #374151;
  margin-bottom: 2rem;
}

/* Pros & Cons */
.pros-cons {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .pros-cons { grid-template-columns: 1fr; } }

.pros, .cons {
  padding: 1.25rem 1.5rem; border-radius: var(--radius);
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff7f0; border: 1px solid #fed7aa; }
.pros h3 { color: #15803d; font-size: .9rem; text-transform: uppercase; letter-spacing: .4px; margin-bottom: .75rem; }
.cons h3 { color: #c2410c; font-size: .9rem; text-transform: uppercase; letter-spacing: .4px; margin-bottom: .75rem; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.pros li::before { content: '✓ '; color: #16a34a; font-weight: 700; }
.cons li::before { content: '✗ '; color: #dc2626; font-weight: 700; }
.pros li, .cons li { font-size: .92rem; line-height: 1.5; }

/* Verdict */
.verdict {
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius); padding: 2rem;
  margin-bottom: 2rem;
}
.verdict h2 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); margin-bottom: 1rem; }
.verdict p  { color: rgba(255,255,255,.85); line-height: 1.75; }

/* Specs */
.specs-table { margin-bottom: 2rem; }
.specs-table h2 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.specs-table table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.specs-table th, .specs-table td { padding: .6rem .9rem; border: 1px solid var(--border); text-align: left; }
.specs-table th { width: 40%; background: var(--bg-alt); font-weight: 600; color: var(--text-muted); }
.specs-table tr:nth-child(even) td { background: #fafafa; }

/* Affiliate notice */
.affiliate-notice-inline {
  font-size: .78rem; color: var(--text-muted); font-style: italic;
  margin-top: 1rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg-dark); color: rgba(255,255,255,.6);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo  { font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-nav   { display: flex; gap: 1.5rem; }
.footer-nav a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-nav a:hover { color: #fff; }
.affiliate-notice { font-size: .8rem; max-width: 520px; text-align: center; }
.footer-copy  { font-size: .75rem; }

/* ── Review meta ── */
.review-meta { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: .4rem; }

/* ── Quick Verdict Box ── */
.verdict-box {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: var(--bg); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}
.verdict-box__score {
  flex-shrink: 0; text-align: center;
  background: var(--bg-alt); border-radius: var(--radius);
  padding: 1rem 1.25rem; min-width: 80px;
}
.vb-num  { display: block; font-size: 2.4rem; font-weight: 800; line-height: 1; }
.vb-label{ display: block; font-size: .75rem; color: var(--text-muted); margin-top: .15rem; }
.verdict-box__info { flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.vb-name { font-weight: 700; font-size: 1rem; }
.vb-for  { font-size: .875rem; color: var(--text-muted); }
.vb-prices { display: flex; gap: .6rem; flex-wrap: wrap; }

/* ── Score breakdown + Pros/cons wrapper ── */
.scores-and-proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}
@media (max-width: 700px) { .scores-and-proscons { grid-template-columns: 1fr; } }

/* Score breakdown bars */
.score-breakdown {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
}
.score-breakdown h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: .5px; color: var(--text-muted); margin-bottom: 1rem; }
.sb-row { display: flex; align-items: center; gap: .75rem; margin-bottom: .7rem; }
.sb-label { font-size: .85rem; width: 110px; flex-shrink: 0; color: var(--text); }
.sb-bar { flex: 1; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.sb-fill { height: 100%; border-radius: 4px; transition: width .4s ease; }
.sb-val { font-size: .85rem; font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }
.sb-total {
  display: flex; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: .75rem; margin-top: .5rem;
  font-size: .9rem; font-weight: 600;
}

/* Pros & cons (within scores-and-proscons grid) */
.pros-cons { display: flex; flex-direction: column; gap: .75rem; }
.pros, .cons { padding: 1.1rem 1.25rem; border-radius: var(--radius); }
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff7f0; border: 1px solid #fed7aa; }
.pros h3 { color: #15803d; font-size: .8rem; text-transform: uppercase; letter-spacing: .4px; margin-bottom: .6rem; }
.cons h3 { color: #c2410c; font-size: .8rem; text-transform: uppercase; letter-spacing: .4px; margin-bottom: .6rem; }
.pros ul, .cons ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.pros li::before { content: '✓ '; color: #16a34a; font-weight: 700; }
.cons li::before { content: '✗ '; color: #dc2626; font-weight: 700; }
.pros li, .cons li { font-size: .875rem; line-height: 1.45; }

/* ── Verdict ── */
.verdict {
  background: var(--bg-dark); color: #fff;
  border-radius: var(--radius); padding: 2rem;
  margin-bottom: 2rem;
}
.verdict h2 { font-size: 1rem; text-transform: uppercase; letter-spacing: .5px; color: var(--accent); margin-bottom: 1rem; }
.verdict > p { color: rgba(255,255,255,.85); line-height: 1.75; margin-bottom: 1.25rem; }

.verdict-who { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
@media (max-width: 600px) { .verdict-who { grid-template-columns: 1fr; } }
.verdict-who__yes, .verdict-who__no {
  padding: 1rem; border-radius: 8px; font-size: .875rem;
}
.verdict-who__yes { background: rgba(22,163,74,.15); border: 1px solid rgba(22,163,74,.3); }
.verdict-who__no  { background: rgba(220,38,38,.1);  border: 1px solid rgba(220,38,38,.25); }
.verdict-who strong { display: block; margin-bottom: .35rem; font-size: .8rem; text-transform: uppercase; letter-spacing: .3px; }
.verdict-who__yes strong { color: #4ade80; }
.verdict-who__no  strong { color: #f87171; }
.verdict-who p { color: rgba(255,255,255,.75); line-height: 1.5; margin: 0; }

/* ── FAQ ── */
.faq-section { margin-bottom: 2rem; }
.faq-section h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .5rem; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: var(--bg-alt);
  border: none; cursor: pointer; padding: 1rem 1.25rem;
  font-size: .95rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: background .15s;
}
.faq-q:hover { background: #f1f5f9; }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .2s; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 1rem 1.25rem; background: var(--bg); border-top: 1px solid var(--border); }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: .9rem; color: #374151; line-height: 1.7; margin: 0; }

/* ── Koop sectie ── */
.buy-section { margin-bottom: 2rem; }
.buy-section h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.buy-section__cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.buy-card {
  flex: 1; min-width: 200px;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; text-align: center; background: var(--bg-alt);
}
.buy-card__store { font-weight: 700; font-size: .9rem; margin-bottom: .35rem; }
.buy-card__price { font-size: 1.3rem; font-weight: 800; color: var(--text); margin-bottom: .75rem; }
.buy-card .btn-bol,
.buy-card .btn-amazon { width: 100%; justify-content: center; }

/* ── Affiliate notice ── */
.affiliate-notice-inline { font-size: .78rem; color: var(--text-muted); font-style: italic; margin-top: 1rem; }

/* ── Legal pages ──────────────────────────────────────────────── */
.legal-page { padding: 3rem 0 5rem; }
.legal-page h1 { font-size: 2rem; margin-bottom: .25rem; }
.legal-page h2 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: .5rem; color: var(--text); }
.legal-page p, .legal-page li { color: var(--text-muted); line-height: 1.8; margin-bottom: .75rem; }
.legal-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page a { color: var(--accent); }
.legal-date { color: var(--text-muted); font-size: .875rem; margin-bottom: 2rem; }

/* ── Footer legal nav ─────────────────────────────────────────── */
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: .75rem 0; }
.footer-legal a { color: var(--text-muted); font-size: .8rem; text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }
