/* ═══════════════════════════════════════════════════════
   Beste Baardolie — Gedeelde blogstijlen
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg:      #fafaf8;
  --bg2:     #f3f2ef;
  --bg3:     #e8e6e2;
  --goud:    #b87010;
  --tekst:   #1c1a18;
  --muted:   #6b6460;
  --rand:    rgba(0,0,0,0.09);
}

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--tekst);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--goud); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: 'Palatino Linotype', Palatino, Georgia, serif;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

img { max-width: 100%; display: block; }
p { margin-bottom: 1rem; }

/* ─── NAV ─── */
.sitenav {
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rand);
  position: sticky; top: 0; z-index: 100;
  padding: 0 1.5rem;
}
.sitenav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
.site-logo {
  font-size: 1.1rem; font-weight: bold; letter-spacing: 0.08em;
  color: var(--tekst); text-decoration: none;
}
.site-logo span { color: var(--goud); }
.sitenav ul { display: flex; gap: 1.8rem; list-style: none; }
.sitenav ul a {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); transition: color 0.3s; text-decoration: none;
}
.sitenav ul a:hover { color: var(--goud); }
.sitenav ul a.active { color: var(--tekst); }

/* ─── LAYOUT ─── */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.page-wrap.full { grid-template-columns: 1fr; max-width: 820px; }

/* ─── ARTICLE ─── */
article.blog-post h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--tekst); margin-bottom: 0.6rem; }
article.blog-post h2 { font-size: 1.45rem; color: var(--tekst); margin: 2rem 0 0.8rem; }
article.blog-post h3 { font-size: 1.15rem; color: #3a3530; margin: 1.5rem 0 0.6rem; }
article.blog-post p  { color: #4a4440; line-height: 1.95; }
article.blog-post strong { color: var(--tekst); }
article.blog-post a  { color: var(--goud); border-bottom: 1px solid rgba(184,112,16,0.25); }
article.blog-post a:hover { border-color: var(--goud); text-decoration: none; }

.post-meta { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 2rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }
.post-meta span::before { content: '· '; }
.post-meta span:first-child::before { content: ''; }

.article-img {
  width: 100%; border-radius: 6px; overflow: hidden; margin: 1.8rem 0;
  aspect-ratio: 16/7; background: var(--bg3);
}
.article-img img { width: 100%; height: 100%; object-fit: cover; }

/* ─── SIDEBAR ─── */
.sidebar { display: flex; flex-direction: column; gap: 2rem; }

.sidebar-box {
  background: var(--bg2); border: 1px solid var(--rand);
  border-radius: 6px; padding: 1.5rem;
}
.sidebar-box h3 { font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--goud); margin-bottom: 1.2rem; }

.top-pick {
  display: flex; gap: 1rem; align-items: center;
  padding: 0.75rem 0; border-bottom: 1px solid var(--rand);
}
.top-pick:last-child { border-bottom: none; padding-bottom: 0; }
.top-pick img { width: 55px; height: 70px; object-fit: contain; border-radius: 4px; background: var(--bg3); padding: 4px; flex-shrink: 0; }
.top-pick-info h4 { font-size: 0.88rem; color: var(--tekst); margin-bottom: 0.2rem; }
.top-pick-info p  { font-size: 0.75rem; color: var(--muted); margin: 0; line-height: 1.4; }
.top-pick-info a  { font-size: 0.75rem; color: var(--goud); }

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  background: rgba(255,255,255,0.05); border: 1px solid var(--rand);
  color: var(--muted); font-size: 0.76rem; padding: 0.25rem 0.7rem; border-radius: 100px;
  text-decoration: none; transition: color 0.3s, border-color 0.3s;
}
.tag:hover { color: var(--goud); border-color: rgba(251,170,40,0.3); text-decoration: none; }

/* ─── PRODUCT KAART (in artikel) ─── */
.product-card {
  background: var(--bg2); border: 1px solid var(--rand);
  border-radius: 8px; overflow: hidden; margin: 2rem 0;
  display: grid; grid-template-columns: 200px 1fr; gap: 0;
}
.product-card-img {
  background: var(--bg3); display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.product-card-img img { width: 100%; max-height: 200px; object-fit: contain; }
.product-card-body { padding: 1.5rem; }
.product-card-body h3 { font-size: 1.1rem; color: var(--tekst); margin: 0 0 0.4rem; }
.product-card-body .score { color: var(--goud); font-size: 0.85rem; margin-bottom: 0.8rem; letter-spacing: 0.05em; }
.product-card-body p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.7; }
.product-card-body .prijs { font-size: 1.1rem; color: var(--goud); font-weight: bold; display: inline-block; margin-right: 1rem; }
.btn-koop, .btn-goud, .btn-p, [class*="btn-"] {
  color: #ffffff !important;
}

.btn-koop {
  display: inline-block; background: var(--goud); color: #ffffff;
  font-size: 0.78rem; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.2rem; border-radius: 2px; transition: opacity 0.3s; text-decoration: none;
}
.btn-koop:hover { opacity: 0.85; text-decoration: none; }

/* ─── QUOTE ─── */
blockquote {
  border-left: 3px solid var(--goud); padding: 1rem 1.5rem;
  margin: 1.5rem 0; background: rgba(184,112,16,0.05); border-radius: 0 4px 4px 0;
}
blockquote p { color: #5a5450; font-style: italic; margin: 0; }

/* ─── COMPARISON TABLE ─── */
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.87rem; margin: 1.5rem 0; }
.comp-table th { text-align: left; padding: 0.7rem 1rem; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--rand); }
.comp-table td { padding: 0.7rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); color: var(--muted); }
.comp-table td:first-child { color: #3a3530; }
.comp-table tr:hover td { background: rgba(255,255,255,0.02); }
.ja  { color: #79c891; }
.nee { color: #c07070; }
.ok  { color: #c8984a; }

/* ─── LABELS ─── */
.label {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--goud); margin-bottom: 0.6rem;
}
.badge {
  display: inline-block; background: rgba(251,170,40,0.12); border: 1px solid rgba(251,170,40,0.3);
  color: var(--goud); font-size: 0.72rem; padding: 0.2rem 0.7rem; border-radius: 100px; margin-bottom: 0.8rem;
}

/* ─── FOOTER ─── */
sitefooter, .sitefooter {
  background: var(--bg2); border-top: 1px solid var(--rand);
  padding: 2.5rem 1.5rem 1.5rem; margin-top: 4rem;
}
.sitefooter-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.sitefooter p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.sitefooter a { color: var(--muted); }
.sitefooter a:hover { color: var(--goud); }
.foot-links { display: flex; gap: 1.5rem; }
.foot-links a { font-size: 0.78rem; color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--goud); }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .page-wrap { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-img { padding: 1rem; max-height: 160px; }
  .sitenav ul { display: none; }
}
@media (max-width: 600px) {
  .page-wrap { padding: 2rem 1rem; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 0.6s ease both; }
