/* =============================================================
   dabbing.nl — Hoofdstijlen
   WordPress thema versie 1.0
   Cannabis Media Groep — cannabismediagroep.nl
   ============================================================= */


/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:         #1a1a1a;
  --bg-raised:  #212121;
  --bg-card:    #242220;
  --bg-hover:   #2a2825;
  --border:     #333230;
  --border-warm:#3d3830;
  --amber:      #c8860a;
  --amber-light:#e8a020;
  --amber-dim:  #7a5206;
  --copper:     #a0622a;
  --text:       #f0ead8;
  --text-sec:   #9a9080;
  --text-muted: #5e5850;
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       'DM Sans', system-ui, sans-serif;
  --radius:     3px;
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 15px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  /* subtle noise */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
}
.label--muted { color: var(--text-muted); }
.divider {
  border: none;
  border-top: 1px solid var(--border-warm);
  margin: 0;
}
.amber-rule {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 10px;
}
.stars { color: var(--amber); font-size: 12px; letter-spacing: 1px; }
.stars .empty { color: var(--text-muted); }

/* ── TOPBAR ──────────────────────────────────────────────── */
.topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 6px 0;
  font-size: 11px;
  color: var(--text-muted);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a:hover { color: var(--amber); }

/* ── HEADER ──────────────────────────────────────────────── */
.site-header {
  border-bottom: 1px solid var(--border-warm);
  background: var(--bg);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}
.logo-wordmark {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.5px;
  color: var(--text);
  line-height: 1;
}
.logo-wordmark span { color: var(--amber); }
.logo-sub {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 3px;
}
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-raised);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  padding: 7px 12px;
  flex: 0 0 220px;
}
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 13px;
  width: 100%;
}
.header-search input::placeholder { color: var(--text-muted); }
.search-icon { color: var(--text-muted); font-size: 14px; }

/* ── NAV ─────────────────────────────────────────────────── */
.main-nav {
  background: var(--bg-raised);
  border-bottom: 2px solid var(--amber);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: stretch;
  gap: 0;
}
.nav-item {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 16px;
  color: var(--text-sec);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.nav-item:hover { color: var(--text); }
.nav-item.active { color: var(--amber); border-bottom-color: var(--amber); }
.nav-spacer { flex: 1; }
.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 16px;
  color: var(--amber);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.nav-cta:hover { color: var(--amber-light); }

/* ── LAYOUT ──────────────────────────────────────────────── */
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  padding: 24px 0 40px;
}
.main-col { min-width: 0; }
.sidebar { min-width: 0; }

/* ── SECTION HEADER ──────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
}
.section-head .see-all {
  margin-left: auto;
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
  cursor: pointer;
}
.section-head .see-all:hover { color: var(--amber-light); }
.section-line {
  flex: 1;
  height: 1px;
  background: var(--border-warm);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  margin-bottom: 28px;
}
.hero-featured {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 320px;
  transition: border-color .2s;
}
.hero-featured:hover { border-color: var(--amber-dim); }
.hero-featured:hover .hero-title { color: var(--amber-light); }
.hero-content {
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-tag {
  display: inline-block;
  background: var(--amber);
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.hero-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: 12px;
  transition: color .2s;
}
.hero-excerpt {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 20px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: var(--text-muted);
}
.hero-meta .author { color: var(--text-sec); font-weight: 500; }
.hero-score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.score-badge {
  background: var(--amber);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: var(--radius);
  font-family: var(--sans);
  line-height: 1;
}
.score-label { font-size: 10px; color: var(--text-muted); }
.hero-image {
  background: var(--bg-raised);
  position: relative;
  overflow: hidden;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a2218 0%, #1e1a12 50%, #242016 100%);
  gap: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-family: var(--sans);
  text-align: center;
  padding: 20px;
}
.hero-img-placeholder svg { opacity: .25; }
/* amber glow accent */
.hero-image::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: radial-gradient(ellipse at 50% 120%, rgba(200,134,10,.15) 0%, transparent 70%);
  pointer-events: none;
}

/* secondary hero row */
.hero-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.hero-sec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.hero-sec-card:hover { border-color: var(--amber-dim); }
.hero-sec-card:hover .hsc-title { color: var(--amber-light); }
.hsc-img {
  height: 100px;
  background: linear-gradient(135deg, #261e12 0%, #1c1a14 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 10px;
  font-family: monospace;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hsc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 130%, rgba(200,134,10,.1) 0%, transparent 70%);
}
.hsc-body { padding: 12px; }
.hsc-cat { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 5px; }
.hsc-title { font-family: var(--serif); font-size: 14px; line-height: 1.3; color: var(--text); transition: color .2s; }
.hsc-meta { font-size: 10px; color: var(--text-muted); margin-top: 7px; }

/* ── REVIEWS ─────────────────────────────────────────────── */
.reviews-section { margin-bottom: 28px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  display: flex;
  gap: 14px;
  transition: border-color .2s, background .2s;
}
.review-card:hover { border-color: var(--amber-dim); background: var(--bg-hover); }
.review-thumb {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a1e0e 0%, #1e1810 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 9px;
  font-family: monospace;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.review-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(200,134,10,.12) 0%, transparent 70%);
}
.review-body { flex: 1; min-width: 0; }
.review-cat { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 4px; }
.review-title { font-family: var(--serif); font-size: 15px; font-weight: 600; line-height: 1.25; color: var(--text); margin-bottom: 6px; }
.review-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.review-score { font-size: 12px; font-weight: 700; color: var(--amber); }
.review-excerpt { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* wide review (full width) */
.review-card.wide { grid-column: 1 / -1; }
.review-card.wide .review-thumb { width: 90px; height: 90px; }
.review-card.wide .review-title { font-size: 17px; }
.review-card.wide .review-excerpt { display: block; }

/* ── NEWS LIST ───────────────────────────────────────────── */
.news-section { margin-bottom: 28px; }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
}
.news-item:last-child { border-bottom: none; }
.news-item:hover .news-title { color: var(--amber-light); }
.news-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--border-warm);
  width: 28px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.news-body { flex: 1; }
.news-cat { font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); font-weight: 600; margin-bottom: 3px; }
.news-title { font-family: var(--serif); font-size: 15px; font-weight: 600; line-height: 1.3; color: var(--text); margin-bottom: 3px; transition: color .2s; }
.news-meta { font-size: 11px; color: var(--text-muted); }
.news-thumb {
  width: 70px;
  height: 52px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #221c10 0%, #1a1810 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--text-muted);
  font-size: 9px;
  font-family: monospace;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── VIDEO SPOTLIGHT ─────────────────────────────────────── */
.video-section { margin-bottom: 28px; }
.video-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s;
}
.video-feature:hover { border-color: var(--amber-dim); }
.video-thumb {
  height: 200px;
  background: linear-gradient(135deg, #1e1a10 0%, #161410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid var(--border-warm);
}
.video-play {
  width: 52px; height: 52px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.video-feature:hover .video-play { transform: scale(1.08); background: var(--amber-light); }
.play-tri { width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 17px solid #1a1a1a; margin-left: 3px; }
.video-dur {
  position: absolute;
  bottom: 10px; right: 12px;
  background: rgba(0,0,0,.75);
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
}
.video-label {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--amber);
  color: #1a1a1a;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 2px;
}
.video-body { padding: 16px; }
.video-title { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.video-meta { font-size: 11px; color: var(--text-muted); display: flex; gap: 12px; }
.video-list { margin-top: 12px; display: flex; flex-direction: column; gap: 0; }
.video-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  cursor: pointer;
  align-items: center;
}
.video-item:hover .vi-title { color: var(--amber-light); }
.vi-thumb {
  width: 80px; height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #221c0e 0%, #1a1610 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.vi-play { font-size: 16px; color: var(--amber); opacity: .8; }
.vi-body { flex: 1; }
.vi-title { font-family: var(--serif); font-size: 13px; font-weight: 600; color: var(--text); transition: color .2s; }
.vi-meta { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

/* ── HOW-TO ──────────────────────────────────────────────── */
.howto-section { margin-bottom: 28px; }
.howto-feature {
  background: var(--bg-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 220px;
  cursor: pointer;
  transition: border-color .2s;
}
.howto-feature:hover { border-color: var(--amber-dim); }
.howto-feature:hover .howto-title { color: var(--amber-light); }
.howto-content { padding: 22px 24px; }
.howto-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200,134,10,.12);
  border: 1px solid rgba(200,134,10,.25);
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.howto-title { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 10px; transition: color .2s; }
.howto-steps { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.howto-step {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-sec);
}
.step-num {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--amber-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--amber-light);
  margin-top: 1px;
}
.howto-image {
  background: linear-gradient(135deg, #241c0e 0%, #1a1810 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 10px; font-family: monospace; text-align: center;
  border-left: 1px solid var(--border-warm);
  position: relative;
  overflow: hidden;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
}
.howto-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(200,134,10,.08) 0%, transparent 70%);
}

/* ── SIDEBAR ─────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sidebar-head {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-warm);
  background: var(--bg-raised);
}
.sidebar-head h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-sec);
}
.sidebar-head::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 12px;
  background: var(--amber);
  border-radius: 1px;
  margin-right: 8px;
  flex-shrink: 0;
}

/* ad slots */
.ad-slot {
  width: 300px;
  height: 250px;
  background: linear-gradient(135deg, #222018 0%, #1e1c16 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-family: monospace;
  border: 1px dashed var(--border-warm);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .2s;
}
.ad-slot:hover { border-color: var(--amber-dim); }
.ad-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
.ad-size { font-size: 18px; font-family: var(--serif); color: var(--border-warm); }

/* brands grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.brand-item {
  background: var(--bg-card);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background .2s;
}
.brand-item:hover { background: var(--bg-hover); }
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a2010 0%, #201c10 100%);
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  color: var(--amber);
}
.brand-name { font-size: 10px; color: var(--text-sec); text-align: center; font-weight: 500; }
.brand-count { font-size: 9px; color: var(--text-muted); }

/* popular reviews */
.pop-list { display: flex; flex-direction: column; }
.pop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .2s;
}
.pop-item:last-child { border-bottom: none; }
.pop-item:hover { background: var(--bg-hover); }
.pop-rank {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--border-warm);
  width: 20px;
  flex-shrink: 0;
}
.pop-rank.gold { color: var(--amber); }
.pop-thumb {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2a1e0e 0%, #201810 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border-warm);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--text-muted); font-family: monospace;
}
.pop-body { flex: 1; min-width: 0; }
.pop-title { font-size: 12px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pop-meta { font-size: 10px; color: var(--text-muted); margin-top: 1px; }
.pop-score { font-size: 13px; font-weight: 700; color: var(--amber); flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border-warm);
  background: var(--bg-raised);
  padding: 28px 0 20px;
  margin-top: 12px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-brand .logo-wordmark { font-size: 22px; margin-bottom: 8px; }
.footer-brand p { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-sec);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col li a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color .15s;
}
.footer-col li a:hover { color: var(--amber); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a:hover { color: var(--amber); }
.age-warning {
  background: rgba(200,134,10,.08);
  border: 1px solid rgba(200,134,10,.2);
  color: var(--amber);
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: .05em;
}


/* ══ STEAMPUNK DECORATIEVE ELEMENTEN ══════════════════════════ */

/* Animated pressure gauge in hero */
.steam-gauge {
  position: absolute;
  top: 16px; right: 16px;
  width: 72px; height: 72px;
  z-index: 2;
}
.gauge-ring {
  animation: gauge-glow 3s ease-in-out infinite alternate;
}
@keyframes gauge-glow {
  from { filter: drop-shadow(0 0 2px rgba(200,134,10,.3)); }
  to   { filter: drop-shadow(0 0 8px rgba(200,134,10,.7)); }
}
.gauge-needle {
  transform-origin: 36px 36px;
  animation: needle-tick 4s ease-in-out infinite;
}
@keyframes needle-tick {
  0%   { transform: rotate(-60deg); }
  40%  { transform: rotate(45deg); }
  60%  { transform: rotate(40deg); }
  80%  { transform: rotate(50deg); }
  100% { transform: rotate(-60deg); }
}

/* Steampunk rivet row — decoratieve scheidingslijn */
.rivet-divider {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 20px 0 18px;
  position: relative;
}
.rivet-divider::before,
.rivet-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-warm), transparent);
}
.rivet-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}
.rivet {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--copper), #5a3010);
  border: 1px solid var(--border-warm);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.1), 0 1px 2px rgba(0,0,0,.4);
}
.rivet-bar {
  width: 24px; height: 3px;
  background: linear-gradient(180deg, var(--border-warm), var(--bg-raised));
  border-radius: 2px;
}

/* Tandwiel-sectie decoratie */
.gear-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.gear-icon {
  flex-shrink: 0;
  animation: gear-spin 12s linear infinite;
  color: var(--amber-dim);
}
@keyframes gear-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.gear-icon-counter {
  animation: gear-spin 12s linear infinite reverse;
}

/* Stoomleiding decoratie — horizontale pipe boven footer */
.steam-pipe {
  width: 100%;
  height: 18px;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.pipe-body {
  position: absolute;
  top: 6px; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(180deg, var(--copper) 0%, #3d2010 50%, var(--copper) 100%);
  opacity: .35;
}
.pipe-rivet {
  position: absolute;
  top: 4px;
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 35%, var(--copper), #3a1e08);
  border-radius: 50%;
  border: 1px solid #4a2a12;
  opacity: .5;
}

/* Amber druk-animatie in hero achtergrond */
.hero-steam-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.steam-bubble {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,.08) 0%, transparent 70%);
  animation: bubble-rise linear infinite;
}
@keyframes bubble-rise {
  0%   { transform: translateY(0) scale(1);   opacity: .6; }
  100% { transform: translateY(-400px) scale(1.8); opacity: 0; }
}

/* Mechanisch hexagon badge */
.hex-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(200,134,10,.08);
  border: 1px solid rgba(200,134,10,.3);
  color: var(--amber);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 10px;
  clip-path: polygon(8px 0%, calc(100% - 8px) 0%, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0% 50%);
  margin-bottom: 12px;
}

/* Koper-tint section borders */
.steam-section {
  border-left: 2px solid var(--amber-dim);
  padding-left: 14px;
  margin-bottom: 28px;
}

/* Drukschaal sidebar widget */
.pressure-bar {
  margin: 10px 14px 14px;
}
.pressure-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pressure-track {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.pressure-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--amber-dim), var(--amber));
  transition: width .3s;
}

/* ── TWEAKS PANEL ────────────────────────────────────────── */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--bg-card);
  border: 1px solid var(--amber-dim);
  border-radius: 4px;
  padding: 16px;
  width: 220px;
  z-index: 9999;
  display: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
  font-family: var(--sans);
}
.tweaks-panel.visible { display: block; }
.tweaks-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-warm);
}
.tweak-row { margin-bottom: 12px; }
.tweak-label { font-size: 11px; color: var(--text-sec); margin-bottom: 5px; display: block; }
.tweak-row select, .tweak-row input[type=range] {
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border-warm);
  color: var(--text);
  font-size: 12px;
  padding: 5px 8px;
  border-radius: var(--radius);
  font-family: var(--sans);
  outline: none;
  cursor: pointer;
}
.tweak-row select option { background: #1a1a1a; }
.tweak-row input[type=range] { padding: 4px 0; accent-color: var(--amber); }
.tweak-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toggle-btn {
  width: 32px; height: 18px;
  background: var(--border);
  border-radius: 9px;
  cursor: pointer;
  position: relative;
  transition: background .2s;
  border: none;
  outline: none;
}
.toggle-btn.on { background: var(--amber); }
.toggle-btn::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: var(--text);
  border-radius: 50%;
  transition: transform .2s;
}
.toggle-btn.on::after { transform: translateX(14px); }

/* ══ EXTRA STEAMPUNK DECORATIE ════════════════════════════════ */

/* Grote decoratieve tandwiel — rechts naast logo */
.logo-gear-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}
.deco-gear-lg {
  opacity: .18;
  animation: gear-spin 20s linear infinite;
  flex-shrink: 0;
}
.deco-gear-sm {
  opacity: .14;
  animation: gear-spin 10s linear infinite reverse;
  flex-shrink: 0;
}

/* Klinknagel-frame rondom hero-featured */
.hero-featured {
  position: relative;
}
.hero-featured::before,
.hero-featured::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 35%, var(--copper), #3a1a06);
  border-radius: 50%;
  border: 1px solid var(--amber-dim);
  z-index: 3;
}
.hero-featured::before { top: 10px; left: 10px; }
.hero-featured::after  { bottom: 10px; left: 10px; }

/* Amber glow accent lines nav */
.main-nav {
  position: relative;
}
.main-nav::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--amber) 20%, var(--amber-light) 50%, var(--amber) 80%, transparent 100%);
  animation: pipe-glow 4s ease-in-out infinite alternate;
}
@keyframes pipe-glow {
  from { opacity: .6; }
  to   { opacity: 1; filter: drop-shadow(0 0 4px var(--amber)); }
}

/* Ornamentele hoekdecoraties sectie cards */
.howto-feature,
.video-feature {
  position: relative;
}
.howto-feature::after,
.video-feature::after {
  content: '◈';
  position: absolute;
  top: 8px; right: 10px;
  font-size: 14px;
  color: var(--amber-dim);
  opacity: .5;
  pointer-events: none;
}

/* Hex-patroon achtergrond footer */
.site-footer {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32'%3E%3Cpath d='M14 2 L26 9 L26 23 L14 30 L2 23 L2 9 Z' fill='none' stroke='%233d3830' stroke-width='0.5'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--bg-raised) 0%, #1e1c18 100%);
  background-size: 28px 32px, 100%;
}

/* Amber scanline overlay op topbar */
.topbar {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(200,134,10,.015) 2px,
    rgba(200,134,10,.015) 4px
  ), var(--bg);
}

/* Sidebar steampunk klok-widget */
.steam-clock {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.clock-svg { animation: gauge-glow 3s ease-in-out infinite alternate; }
.clock-hand-min {
  transform-origin: 24px 24px;
  animation: clock-min 60s linear infinite;
}
.clock-hand-hr {
  transform-origin: 24px 24px;
  animation: clock-hr 3600s linear infinite;
}
@keyframes clock-min {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes clock-hr {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.clock-label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Druppel-amber rosin texture op hero-image */
.rosin-drop {
  position: absolute;
  border-radius: 50% 50% 50% 0 / 60% 60% 40% 40%;
  background: radial-gradient(circle at 40% 30%, rgba(232,160,32,.25), rgba(200,134,10,.08) 60%, transparent);
  filter: blur(1px);
  pointer-events: none;
  animation: drip 7s ease-in-out infinite alternate;
}
@keyframes drip {
  0%   { transform: scale(1) translateY(0); opacity: .5; }
  100% { transform: scale(1.1) translateY(6px); opacity: .8; }
}

/* ══ RESPONSIVE — MOBIEL ══════════════════════════════════════ */

/* Tablet: 900px */
@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    height: 220px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .deco-gear-lg, .deco-gear-sm { display: none; }
}

/* Mobiel: 640px */
@media (max-width: 640px) {
  html { font-size: 14px; }

  /* topbar */
  .topbar-inner { flex-direction: column; gap: 4px; align-items: flex-start; font-size: 10px; }

  /* header */
  .header-inner { flex-wrap: wrap; padding: 12px 16px; gap: 10px; }
  .logo-wordmark { font-size: 26px; }
  .header-search { flex: 1 1 100%; }

  /* nav */
  .nav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 0 12px; gap: 0; }
  .nav-item { padding: 10px 12px; font-size: 11px; white-space: nowrap; }
  .nav-cta { padding: 10px 10px; font-size: 10px; }

  /* layout */
  .page-wrap { padding: 0 12px; }
  .content-grid { padding: 16px 0 28px; gap: 20px; }

  /* hero */
  .hero-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 20px 16px 16px; }
  .hero-title { font-size: 20px; }
  .hero-excerpt { font-size: 13px; }
  .hero-image { height: 180px; }
  .hero-secondary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hsc-img { height: 80px; }

  /* reviews */
  .review-grid { grid-template-columns: 1fr; }
  .review-card.wide { grid-column: auto; }
  .review-card.wide .review-thumb { width: 68px; height: 68px; }
  .review-card.wide .review-title { font-size: 15px; }

  /* news */
  .news-thumb { display: none; }
  .news-num { font-size: 16px; width: 22px; }

  /* video */
  .video-thumb { height: 160px; }
  .video-feature { flex-direction: column; }

  /* how-to */
  .howto-feature { grid-template-columns: 1fr; }
  .howto-image { height: 120px; border-left: none; border-top: 1px solid var(--border-warm); }

  /* sidebar: stapel alles onder elkaar */
  .sidebar { grid-template-columns: 1fr; }
  .ad-slot { width: 100%; max-width: 300px; margin: 0 auto; }

  /* footer */
  .footer-inner { grid-template-columns: 1fr; gap: 20px; margin-bottom: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 10px; }

  /* steampunk elementen schalen */
  .steam-gauge { width: 52px; height: 52px; top: 10px; right: 10px; }
  .steam-pipe { height: 12px; }
  .rivet-divider { margin: 14px 0 12px; }
}

/* Klein mobiel: 400px */
@media (max-width: 400px) {
  .logo-wordmark { font-size: 22px; }
  .hero-title { font-size: 18px; }
  .nav-item { padding: 10px 9px; font-size: 10px; }
}

/* ═══════════════════════════════════════════════════════════════
   STEAMPUNK VERDIEPING — Hex-grid, scanlines, tandwielen,
   stoom-pijpen, gauge widgets, monospace labels
   ═══════════════════════════════════════════════════════════════ */

/* ── HEX-GRID ACHTERGROND op body ────────────────────────────── */
body {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='64'%3E%3Cpath d='M28 2 L54 18 L54 46 L28 62 L2 46 L2 18 Z' fill='none' stroke='%23242018' stroke-width='0.7'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-size: 56px 64px, 200px 200px;
}

/* ── SCANLINES overlay via pseudo-element op html ────────────── */
html::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,.06) 3px,
    rgba(0,0,0,.06) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── AMBIENT AMBER GLOW radiaal midden van pagina ────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 30%, rgba(200,134,10,.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── GROTE DECORATIEVE TANDWIELEN — fixed op achtergrond ─────── */
.bg-gear {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  fill: var(--amber);
  opacity: .025;
}
.bg-gear--tl {
  top: -100px; left: -100px;
  width: 360px; height: 360px;
  animation: gear-spin 80s linear infinite;
}
.bg-gear--br {
  bottom: -120px; right: -120px;
  width: 440px; height: 440px;
  fill: var(--copper);
  opacity: .02;
  animation: gear-spin 100s linear infinite reverse;
}
.bg-gear--mr {
  top: 35%; right: -60px;
  width: 180px; height: 180px;
  opacity: .03;
  animation: gear-spin 45s linear infinite;
}

/* ── STOOM-PIJP ONDER NAV ────────────────────────────────────── */
.nav-pipe {
  width: 100%;
  height: 16px;
  position: relative;
  background: var(--bg);
  overflow: visible;
}
.nav-pipe-line {
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(180deg, var(--copper) 0%, #3d1e08 50%, var(--copper) 100%);
  opacity: .35;
}
.nav-pipe-glow {
  position: absolute;
  top: 4px; left: 0; right: 0;
  height: 7px;
  background: linear-gradient(180deg, transparent, rgba(200,134,10,.08), transparent);
  animation: pipe-glow-anim 4s ease-in-out infinite alternate;
}
@keyframes pipe-glow-anim {
  from { opacity: .4; }
  to   { opacity: 1; }
}
.nav-pipe-rivet {
  position: absolute;
  top: 3px;
  width: 10px; height: 10px;
  background: radial-gradient(circle at 35% 35%, var(--copper), #2a1006);
  border-radius: 50%;
  border: 1px solid var(--amber-dim);
  opacity: .55;
}

/* ── MONOSPACE LABEL STIJL — herbruikbaar ────────────────────── */
.mono-label {
  font-family: 'DM Mono', 'Courier New', monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mono-label--amber { color: var(--amber); }

/* Section heads upgraden met monospace eyebrow */
.section-head h2::before {
  display: block;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-dim);
  margin-bottom: 3px;
  opacity: .7;
}

/* ── SIDEBAR GAUGE WIDGETS ───────────────────────────────────── */
.gauge-widget {
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.gauge-widget-pair {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.gauge-mini-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.gauge-mini-svg {
  width: 80px; height: 80px;
  filter: drop-shadow(0 0 6px rgba(200,134,10,.15));
}
.gauge-mini-label {
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.gauge-mini-readout {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  font-weight: 500;
  color: var(--amber);
  text-align: center;
  text-shadow: 0 0 12px rgba(200,134,10,.3);
  line-height: 1;
}
.gauge-mini-unit {
  font-size: 9px;
  color: var(--text-muted);
  margin-left: 2px;
}
.gauge-pipe-mini {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--copper) 0%, #2a1006 50%, var(--copper) 100%);
  border-radius: 1px;
  opacity: .4;
  position: relative;
  flex-shrink: 0;
}
.gauge-pipe-mini::before,
.gauge-pipe-mini::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--copper), #2a1006);
  border: 1px solid var(--amber-dim);
  opacity: .7;
}
.gauge-pipe-mini::before { top: 15px; }
.gauge-pipe-mini::after  { bottom: 15px; }

/* PSI naald animatie sidebar */
.sidebar-psi-needle {
  transform-origin: 40px 40px;
  animation: sidebar-psi 6s ease-in-out infinite;
}
@keyframes sidebar-psi {
  0%   { transform: rotate(-110deg); }
  25%  { transform: rotate(20deg); }
  45%  { transform: rotate(10deg); }
  65%  { transform: rotate(35deg); }
  85%  { transform: rotate(15deg); }
  100% { transform: rotate(-110deg); }
}

/* Temp naald animatie sidebar */
.sidebar-temp-needle {
  transform-origin: 40px 40px;
  animation: sidebar-temp 9s ease-in-out infinite;
}
@keyframes sidebar-temp {
  0%   { transform: rotate(-110deg); }
  20%  { transform: rotate(-15deg); }
  40%  { transform: rotate(15deg); }
  60%  { transform: rotate(-5deg); }
  80%  { transform: rotate(25deg); }
  100% { transform: rotate(-110deg); }
}

/* Temp glow ring rood-amber */
.temp-glow {
  animation: temp-glow-ring 3s ease-in-out infinite alternate;
}
@keyframes temp-glow-ring {
  from { stroke: #c8860a; opacity: .5; }
  to   { stroke: #e06010; opacity: .85; }
}

/* Status indicator onder gauges */
.gauge-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Mono', monospace;
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  width: 100%;
  justify-content: center;
}
.gauge-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 5px rgba(200,134,10,.7);
  animation: dot-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 5px rgba(200,134,10,.7); }
  50%       { opacity: .3; box-shadow: none; }
}

/* ── HEADER VERFIJNING — amber scanline op topbar ────────────── */
.topbar {
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(200,134,10,.012) 2px,
    rgba(200,134,10,.012) 4px
  ), var(--bg);
}

/* ── FOOTER HEX TEXTURE ──────────────────────────────────────── */
.site-footer {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='32'%3E%3Cpath d='M14 2 L26 9 L26 23 L14 30 L2 23 L2 9 Z' fill='none' stroke='%23302c24' stroke-width='0.6'/%3E%3C/svg%3E"),
    linear-gradient(180deg, var(--bg-raised) 0%, #1a1810 100%);
  background-size: 28px 32px, 100%;
}

/* ── CARD HOVER — subtiele amber glow ───────────────────────── */
.review-card:hover,
.news-item:hover,
.hero-sec-card:hover {
  box-shadow: 0 0 0 1px rgba(200,134,10,.15), 0 4px 20px rgba(0,0,0,.3);
}

/* ── ORNAMENTELE HOEK-ACCENTEN op sidebar blocks ─────────────── */
.sidebar-block {
  position: relative;
}
.sidebar-block::before,
.sidebar-block::after {
  content: '◈';
  position: absolute;
  font-size: 8px;
  color: var(--amber-dim);
  opacity: .4;
  pointer-events: none;
}
.sidebar-block::before { top: 6px; right: 8px; }
.sidebar-block::after  { bottom: 6px; right: 8px; }

/* ── RESPONSIVE AANPASSINGEN voor nieuwe elementen ───────────── */
@media (max-width: 640px) {
  .bg-gear { display: none; }
  .gauge-mini-svg { width: 64px; height: 64px; }
  .gauge-mini-readout { font-size: 14px; }
}

/* ── TOPBAR CANNABIS MEDIA GROEP LINK ────────────────────────── */
.topbar-cmg {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--amber);
    text-decoration: none;
    opacity: .8;
    transition: opacity .2s;
}
.topbar-cmg:hover { opacity: 1; }

/* ── HEADER ZOEKBALK VERBERGEN ───────────────────────────────── */
/* WordPress get_search_form() wordt niet meer aangeroepen maar
   voor het geval een plugin hem injecteert: */
.header-search { display: none; }

/* ── MOBIEL PULSERENDE GAUGE KNOP ────────────────────────────── */
.mobile-gauge-btn {
    display: none; /* alleen mobiel zichtbaar */
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    margin-left: auto;
    filter: drop-shadow(0 0 6px rgba(200,134,10,.3));
    transition: filter .2s;
}
.mobile-gauge-btn:hover {
    filter: drop-shadow(0 0 12px rgba(200,134,10,.6));
}
.mobile-gauge-ring {
    animation: gauge-glow 2s ease-in-out infinite alternate;
}
.mobile-gauge-needle {
    transform-origin: 20px 20px;
    animation: needle-tick 4s ease-in-out infinite;
}
@keyframes needle-tick {
    0%   { transform: rotate(-80deg); }
    35%  { transform: rotate(40deg); }
    55%  { transform: rotate(30deg); }
    75%  { transform: rotate(50deg); }
    100% { transform: rotate(-80deg); }
}

/* ── NAV COMPACTER OP MOBIEL ─────────────────────────────────── */
@media (max-width: 640px) {
    /* Gauge knop tonen op mobiel */
    .mobile-gauge-btn { display: block; }

    /* Header inner: logo links, gauge rechts */
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
    }
    .logo-gear-wrap { gap: 8px; }
    .deco-gear-lg { width: 32px; height: 32px; }
    .deco-gear-sm { width: 20px; height: 20px; }

    /* Nav items kleiner en compacter */
    .nav-inner {
        padding: 0 8px;
        gap: 0;
    }
    .nav-item {
        padding: 9px 8px;
        font-size: 10px;
        letter-spacing: .06em;
    }
    .nav-cta {
        padding: 9px 8px;
        font-size: 10px;
    }

    /* Topbar compacter */
    .topbar-inner {
        padding: 4px 12px;
        font-size: 10px;
    }
}

/* ── SIDEBAR INTERLEAVED OP MOBIEL (index.php) ───────────────── */
/* Op mobiel: sidebar blokken zijn inline in de content stroom
   via .mobile-sidebar-inject wrappers in index.php */
.mobile-sidebar-inject {
    display: none;
}
@media (max-width: 900px) {
    /* Echte sidebar verbergen op mobiel */
    .sidebar { display: none; }
    /* Inline sidebar injecties tonen */
    .mobile-sidebar-inject {
        display: block;
        margin: 0 0 20px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   STICKY HEADER + HAMBURGER + MOBIEL MENU
   ═══════════════════════════════════════════════════════════════ */

/* ── STICKY WRAPPER ──────────────────────────────────────────── */
.sticky-header-wrap {
    position: relative;
    z-index: 200;
    transition: box-shadow .3s;
}
.sticky-header-wrap.is-sticky {
    position: fixed;
    top: 0; left: 0; right: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.5), 0 1px 0 rgba(200,134,10,.15);
    background: rgba(26,26,26,.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
/* Topbar verbergen als sticky actief */
.is-sticky ~ .topbar,
body.is-sticky-active .topbar { display: none; }

/* ── DESKTOP ZOEKBALK (dropdown) ─────────────────────────────── */
.header-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.header-search-btn {
    background: none;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    color: var(--text-muted);
    padding: 7px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color .2s, border-color .2s;
}
.header-search-btn:hover,
.header-search-btn[aria-expanded="true"] {
    color: var(--amber);
    border-color: var(--amber-dim);
}
.header-search-drop {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 300px;
    background: var(--bg-card);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    padding: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    z-index: 300;
}
.header-search-drop.open { display: block; }
.header-search-drop .search-form,
.header-search-drop form {
    display: flex;
    gap: 6px;
}
.header-search-drop input[type="search"] {
    flex: 1;
    background: var(--bg-raised);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--sans);
    font-size: 13px;
    padding: 8px 12px;
    outline: none;
}
.header-search-drop input[type="search"]:focus { border-color: var(--amber-dim); }
.header-search-drop button[type="submit"],
.header-search-drop input[type="submit"] {
    background: var(--amber);
    border: none;
    border-radius: var(--radius);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 14px;
    cursor: pointer;
    white-space: nowrap;
}

/* ── HAMBURGER KNOP ──────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
    transition: border-color .2s;
}
.hamburger:hover { border-color: var(--amber-dim); }
.hamburger-line {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-sec);
    border-radius: 1px;
    transition: transform .25s, opacity .25s, background .2s;
    transform-origin: center;
}
.hamburger.is-open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--amber); }
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--amber); }

/* ── MOBIEL MENU OVERLAY ─────────────────────────────────────── */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 400;
    backdrop-filter: blur(2px);
}
.mobile-menu-overlay.open { display: block; }

/* ── MOBIEL MENU DRAWER ──────────────────────────────────────── */
.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--bg-card);
    border-left: 1px solid var(--border-warm);
    z-index: 500;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}

/* Menu hoofd */
.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-warm);
    background: var(--bg-raised);
    flex-shrink: 0;
}
.mobile-menu-logo {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
}
.mobile-menu-logo span { color: var(--amber); }

/* Sluit knop */
.mobile-menu-close {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    padding: 7px 9px;
    cursor: pointer;
    transition: border-color .2s;
}
.mobile-menu-close:hover { border-color: var(--amber-dim); }
.mobile-menu-close span {
    display: block;
    width: 14px;
    height: 1.5px;
    background: var(--text-sec);
    border-radius: 1px;
    transition: transform .2s, background .2s;
}
.mobile-menu-close span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.mobile-menu-close span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }
.mobile-menu-close:hover span { background: var(--amber); }

/* Zoekbalk in mobiel menu */
.mobile-menu-search {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.mobile-search-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 10px;
}
.mobile-menu-search .search-form,
.mobile-menu-search form {
    display: flex;
    gap: 6px;
}
.mobile-menu-search input[type="search"] {
    flex: 1;
    background: var(--bg-raised);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--sans);
    font-size: 14px;
    padding: 10px 14px;
    outline: none;
}
.mobile-menu-search input[type="search"]:focus { border-color: var(--amber-dim); }
.mobile-menu-search button[type="submit"],
.mobile-menu-search input[type="submit"] {
    background: var(--amber);
    border: none;
    border-radius: var(--radius);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 13px;
    padding: 10px 16px;
    cursor: pointer;
}

/* Nav links in mobiel menu */
.mobile-menu-nav {
    flex: 1;
    padding: 8px 0;
}
.mobile-menu-nav a,
.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-sec);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color .2s, background .2s;
    position: relative;
}
.mobile-menu-nav a::before,
.mobile-nav-item::before {
    content: '⚙';
    font-size: 10px;
    color: var(--amber-dim);
    opacity: 0;
    transition: opacity .2s;
    flex-shrink: 0;
}
.mobile-menu-nav a:hover,
.mobile-nav-item:hover {
    color: var(--amber);
    background: rgba(200,134,10,.04);
}
.mobile-menu-nav a:hover::before,
.mobile-nav-item:hover::before { opacity: 1; }
.mobile-menu-nav a.active,
.mobile-nav-item.active {
    color: var(--amber);
    border-left: 2px solid var(--amber);
    padding-left: 18px;
}

/* Menu footer */
.mobile-menu-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--border-warm);
    flex-shrink: 0;
}
.mobile-menu-pipe {
    position: relative;
    height: 12px;
    margin-bottom: 12px;
}
.pipe-line-h {
    position: absolute;
    top: 4px; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    opacity: .3;
    border-radius: 2px;
}
.pipe-rivet-h {
    position: absolute;
    top: 1px;
    width: 8px; height: 8px;
    background: radial-gradient(circle at 35% 35%, var(--copper), #2a1006);
    border-radius: 50%;
    border: 1px solid var(--amber-dim);
    opacity: .5;
}
.mobile-menu-links {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-muted);
}
.mobile-menu-links a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.mobile-menu-links a:hover { color: var(--amber); }
.mobile-menu-links span { opacity: .4; }

/* ── RESPONSIVE: hamburger zichtbaar, desktop nav verborgen ──── */
@media (max-width: 640px) {
    .hamburger { display: flex; }
    .main-nav { display: none; }
    .nav-pipe { display: none; }
    .header-search-wrap { display: none; }
    /* Sticky spacer kleiner op mobiel */
    .sticky-spacer { min-height: 72px; }
}

@media (min-width: 641px) {
    .mobile-menu { display: none !important; }
    .mobile-menu-overlay { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW BOX
   ═══════════════════════════════════════════════════════════════ */
.review-box {
    border: 1px solid var(--border-warm);
    border-left: 3px solid var(--amber);
    border-radius: var(--radius);
    background: var(--bg-card);
    margin: 24px 0 0;
    overflow: hidden;
}

/* Header: score + meta */
.review-box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(200,134,10,.04);
    border-bottom: 1px solid var(--border-warm);
    position: relative;
}
.review-box-score-wrap {
    flex-shrink: 0;
    text-align: center;
    min-width: 80px;
}
.review-box-score-label {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.review-box-score {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
    text-shadow: 0 0 30px rgba(200,134,10,.3);
}
.review-box-score-max {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 2px;
}
.review-box-stars {
    margin-top: 6px;
    font-size: 14px;
}
.review-box-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid var(--border-warm);
    padding-left: 20px;
}
.review-box-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    gap: 12px;
}
.review-box-meta-row:last-child { border-bottom: none; }
.rbm-key { color: var(--text-muted); flex-shrink: 0; }
.rbm-val { color: var(--text-sec); font-weight: 500; text-align: right; }
.review-box-gauge {
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    width: 52px; height: 52px;
    opacity: .2;
}

/* Subcijfers */
.review-box-subcijfers {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-warm);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.review-box-sub-label {
    font-family: 'DM Mono', monospace;
    font-size: 8px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--amber-dim);
    margin-bottom: 4px;
}
.review-sub-row {
    display: grid;
    grid-template-columns: 130px 1fr 36px;
    align-items: center;
    gap: 10px;
}
.review-sub-name {
    font-size: 12px;
    color: var(--text-sec);
    font-weight: 500;
}
.review-sub-bar-wrap {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}
.review-sub-bar {
    height: 100%;
    border-radius: 2px;
    transition: width .6s ease;
}
.review-sub-score {
    font-family: 'DM Mono', monospace;
    font-size: 12px;
    color: var(--amber);
    text-align: right;
}

/* Pluspunten / minpunten */
.review-box-proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border-warm);
}
.review-pros,
.review-cons {
    padding: 16px 20px;
}
.review-pros { border-right: 1px solid var(--border-warm); }
.proscons-label {
    font-family: 'DM Mono', monospace;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.pros-label { color: #4a9a5a; }
.cons-label { color: #9a4040; }
.review-pros ul,
.review-cons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.review-pros li,
.review-cons li {
    font-size: 13px;
    color: var(--text-sec);
    line-height: 1.4;
    padding-left: 16px;
    position: relative;
}
.review-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a9a5a;
    font-size: 11px;
    top: 1px;
}
.review-cons li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #9a4040;
    font-size: 11px;
    top: 1px;
}

/* Samenvatting */
.review-box-summary {
    padding: 16px 24px;
}
.review-box-summary p {
    font-size: 14px;
    color: var(--text-sec);
    line-height: 1.7;
    margin: 8px 0 0;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   AUTHOR BOX (verbeterd)
   ═══════════════════════════════════════════════════════════════ */
.author-box {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-warm);
    border-radius: var(--radius);
    padding: 20px 24px;
    position: relative;
    overflow: hidden;
    margin: 4px 0;
}
.author-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(200,134,10,.04) 0%, transparent 50%);
    pointer-events: none;
}
.author-box-avatar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.author-box-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50%;
    border: 2px solid var(--border-warm);
    object-fit: cover;
    display: block;
}
.author-box-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.author-box-count-num {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
}
.author-box-count-label {
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.author-box-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.author-box-top {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-box-name {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}
.author-box-name:hover { color: var(--amber); }
.author-gear {
    opacity: .2;
    animation: gear-spin 20s linear infinite;
    flex-shrink: 0;
}
.author-box-bio {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}
.author-box-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.author-social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    border: 1px solid var(--border-warm);
    padding: 4px 10px;
    border-radius: 2px;
    transition: color .2s, border-color .2s;
}
.author-social-link:hover {
    color: var(--amber);
    border-color: var(--amber-dim);
}
.author-all-posts {
    color: var(--amber);
    border-color: var(--amber-dim);
    margin-left: auto;
}

/* Responsive review box + author box */
@media (max-width: 640px) {
    .review-box-header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .review-box-meta { border-left: none; padding-left: 0; border-top: 1px solid var(--border-warm); padding-top: 12px; width: 100%; }
    .review-box-gauge { display: none; }
    .review-box-proscons { grid-template-columns: 1fr; }
    .review-pros { border-right: none; border-bottom: 1px solid var(--border-warm); }
    .review-sub-row { grid-template-columns: 110px 1fr 30px; }

    .author-box { grid-template-columns: 80px 1fr; gap: 14px; padding: 16px; }
    .author-box-img { width: 64px !important; height: 64px !important; }
    .author-all-posts { margin-left: 0; }
}

/* Fix: verberg zoekformulier dat WordPress in nav injecteert */
.nav-inner .search-form,
.nav-inner form[role="search"] { display: none; }
