/* === gaatdebbqaan.nl — shared styles === */

:root {
  --bg: #1a0f08;
  --bg-soft: #2a1810;
  --card: #3b2418;
  --card-hover: #4a2d1f;
  --accent: #ff6b1a;
  --accent-soft: #ff8c42;
  --green: #4ade80;
  --amber: #fbbf24;
  --red: #f87171;
  --text: #fef3e2;
  --text-soft: #d4b896;
  --border: rgba(255, 255, 255, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(255, 107, 26, 0.15), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(255, 140, 66, 0.08), transparent 50%);
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent-soft); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* Header / nav */
header {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(26, 15, 8, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo:hover { color: var(--text); }
.logo-icon { font-size: 28px; }
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--accent-soft); }
.nav-links a.active { color: var(--accent-soft); }

/* Mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--card-hover);
  border-color: var(--accent);
}

/* Hero / verdict */
.hero {
  padding: 60px 0 40px;
  text-align: center;
}
.hero-question {
  font-size: clamp(20px, 3vw, 26px);
  color: var(--text-soft);
  font-weight: 500;
  margin-bottom: 16px;
}
.verdict {
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.3s;
}
.verdict.ja { color: var(--green); text-shadow: 0 0 40px rgba(74, 222, 128, 0.3); }
.verdict.misschien { color: var(--amber); text-shadow: 0 0 40px rgba(251, 191, 36, 0.3); }
.verdict.nee { color: var(--red); text-shadow: 0 0 40px rgba(248, 113, 113, 0.3); }
.verdict.loading { color: var(--text-soft); font-size: clamp(36px, 6vw, 56px); }

.verdict-explanation {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto 32px;
}

.current {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.current-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.current-item .icon { font-size: 20px; }
.current-item .value { font-weight: 700; color: var(--text); }
.current-item .label { color: var(--text-soft); }

.share {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.share-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.share-btn:hover {
  background: var(--card-hover);
  border-color: var(--accent);
  transform: translateY(-1px);
  color: var(--text);
}
.location-note {
  text-align: center;
  color: var(--text-soft);
  font-size: 13px;
  margin-bottom: 60px;
}

/* === Locatie lookup === */
.location-lookup {
  max-width: 520px;
  margin: 0 auto 40px;
  text-align: center;
}
.lookup-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.lookup-form {
  display: flex;
  gap: 8px;
}
.lookup-input {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-size: 16px; /* 16px voorkomt iOS-zoom bij focus */
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.lookup-input::placeholder { color: var(--text-soft); }
.lookup-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}
.lookup-btn-gps {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  flex-shrink: 0;
}
.lookup-btn-gps:hover { background: var(--card-hover); border-color: var(--accent); transform: translateY(-1px); }
.lookup-btn-gps:disabled { opacity: 0.5; cursor: default; transform: none; }
.lookup-btn {
  background: var(--accent);
  border: none;
  border-radius: 12px;
  padding: 12px 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  font-family: inherit;
  white-space: nowrap;
}
.lookup-btn:hover { background: var(--accent-soft); transform: translateY(-1px); }
.lookup-btn:active { transform: translateY(0); }
.lookup-btn:disabled { opacity: 0.6; cursor: default; transform: none; }
.location-result {
  display: none;
  margin-top: 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 13px 18px;
  text-align: left;
  font-size: 14px;
  animation: fadeSlideIn 0.25s ease;
}
.location-result.visible { display: block; }
.location-result.success { border-color: rgba(74, 222, 128, 0.5); color: var(--green); }
.location-result.error   { border-color: rgba(248, 113, 113, 0.5); color: var(--red); }
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  /* Input + GPS-pin op één rij, Check-knop eronder */
  .lookup-form { flex-wrap: wrap; }
  .lookup-input { flex: 1 1 auto; min-width: 0; }
  .lookup-btn-gps { flex: 0 0 auto; }
  .lookup-btn { flex: 1 1 100%; width: 100%; }
}

/* Generic sections */
section { padding: 60px 0; }
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-sub {
  color: var(--text-soft);
  margin-bottom: 32px;
  font-size: 16px;
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.section-header-row .section-title,
.section-header-row .section-sub { margin-bottom: 0; }
.section-link {
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

/* Weekend + forecast */
.weekend {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.15), rgba(255, 140, 66, 0.05));
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
}
.weekend-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.weekend-header h3 { font-size: 22px; font-weight: 800; }
.weekend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.weekend-day {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
}
.weekend-day .day-name {
  font-size: 14px; color: var(--text-soft);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px;
}
.weekend-day .day-verdict { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.weekend-day .day-conditions { font-size: 14px; color: var(--text-soft); }

.forecast-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.forecast-day {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 8px;
  text-align: center;
  transition: all 0.2s;
}
.forecast-day:hover { background: var(--card-hover); transform: translateY(-2px); }
.forecast-day .name { font-size: 12px; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.forecast-day .date { font-size: 11px; color: var(--text-soft); margin-bottom: 10px; opacity: 0.7; }
.forecast-day .icon { font-size: 28px; margin-bottom: 8px; }
.forecast-day .verdict-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.verdict-pill.ja { background: rgba(74, 222, 128, 0.2); color: var(--green); }
.verdict-pill.misschien { background: rgba(251, 191, 36, 0.2); color: var(--amber); }
.verdict-pill.nee { background: rgba(248, 113, 113, 0.2); color: var(--red); }
.forecast-day .temps { font-size: 13px; font-weight: 600; }
.forecast-day .temp-min { color: var(--text-soft); }

/* Page header (recipes / shop inner pages) */
.page-header {
  padding: 60px 0 20px;
  text-align: center;
}
.page-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 16px;
}
.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-header .lede {
  color: var(--text-soft);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 680px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 13px;
  color: var(--text-soft);
  padding: 20px 0 0;
}
.breadcrumbs a { color: var(--text-soft); }
.breadcrumbs a:hover { color: var(--accent-soft); }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

/* Cards: recipes */
.card-grid,
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 600px) {
  .card-grid,
  .recipe-grid {
    grid-template-columns: 1fr;
  }
}
.recipe-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}
.recipe-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: var(--text);
}
.recipe-card-image {
  height: 160px;
  background: linear-gradient(135deg, var(--accent), #c2410c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.recipe-card-image[style*="background-image"] {
  font-size: 0 !important;
  color: transparent !important;
  background-color: transparent !important;
}
.recipe-card-image[style*="background-image"]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.08);
  z-index: 1;
  pointer-events: none;
}
.recipe-card-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.recipe-card .tag {
  display: inline-block;
  font-size: 11px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.recipe-card h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.recipe-card p { font-size: 14px; color: var(--text-soft); flex: 1; }
.recipe-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-soft);
}
.recipe-card .meta span {
  background: rgba(0,0,0,0.25);
  padding: 3px 10px;
  border-radius: 999px;
}
.recipe-tag {
  display: inline-block;
  font-size: 11px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.recipe-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.recipe-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.recipe-badge svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Recipe detail */
.recipe-hero {
  padding: 40px 0 30px;
}
.recipe-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 28px;
  display: block;
}
@media (max-width: 768px) {
  .recipe-hero-img {
    max-height: 240px;
    border-radius: 8px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .recipe-hero-img {
    max-height: 200px;
    border-radius: 6px;
  }
}
.recipe-step-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  margin: 24px 0;
}
/* Grid voor meerdere stap-foto's naast elkaar (bijv. Jalapeño worsten) */
.recipe-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.recipe-step-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  display: block;
}
@media (max-width: 768px) {
  .recipe-step-img {
    max-width: 100%;
    height: 220px;
    border-radius: 8px;
    margin: 16px 0;
  }
  .recipe-step-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .recipe-step-grid img {
    height: 160px;
  }
}
@media (max-width: 480px) {
  .recipe-step-img {
    height: 190px;
  }
  .recipe-step-grid {
    grid-template-columns: 1fr 1fr;
  }
  .recipe-step-grid img {
    height: 140px;
  }
}
.recipe-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
.recipe-hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.recipe-hero .subtitle { color: var(--text-soft); font-size: clamp(16px, 2vw, 20px); }

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 30px 0;
}
.recipe-meta .meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
  flex: 1;
}
.recipe-meta .meta-label {
  font-size: 11px;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.recipe-meta .meta-value { font-size: 16px; font-weight: 700; }

.recipe-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding-bottom: 80px;
}
.recipe-content p { margin-bottom: 16px; color: var(--text); font-size: 16px; }
.recipe-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 28px 0 12px;
  letter-spacing: -0.01em;
}
.recipe-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.recipe-content ul { padding-left: 1.2em; margin-bottom: 16px; }
.recipe-content li { margin-bottom: 6px; }

.recipe-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
}
.panel h3 {
  font-size: 13px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 14px;
}
.panel ul { list-style: none; padding: 0; }
.panel li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  line-height: 1.5;
}
.panel li:last-child { border-bottom: none; }

.source-note {
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-soft);
}

@media (max-width: 900px) {
  .recipe-body { grid-template-columns: 1fr; }
  .recipe-sidebar { position: static; }
}

/* Shop: product cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s;
  display: block;
}
.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  color: var(--text);
}
.category-card .emoji { font-size: 46px; margin-bottom: 12px; display: block; }
.category-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.category-card p { font-size: 13px; color: var(--text-soft); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.product-card .tip-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-image {
  height: 180px;
  background: white;
  border-radius: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.product-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 40px;
}
.product-features {
  font-size: 12px;
  color: var(--text-soft);
  margin-bottom: 14px;
  flex: 1;
}
.product-features span {
  display: block;
  padding: 2px 0;
}
.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.product-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
}
.product-price .cents { font-size: 12px; color: var(--text-soft); font-weight: 600; vertical-align: super; }
.product-cta {
  background: var(--accent);
  color: white;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s;
}
.product-cta:hover { background: var(--accent-soft); color: white; }

.affiliate-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-soft);
  margin: 40px 0 0;
  font-style: italic;
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-soft);
  font-size: 14px;
  margin-top: 40px;
}
footer a { color: var(--accent-soft); text-decoration: none; }

/* Responsive */
@media (max-width: 768px) {
  .forecast-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .forecast-day {
    flex: 0 0 calc((100% - 30px) / 3);
    scroll-snap-align: start;
  }
  .forecast-grid::-webkit-scrollbar {
    height: 4px;
  }
  .forecast-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.2);
    border-radius: 4px;
  }
  .forecast-grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    list-style: none;
    z-index: 999;
    margin-top: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    padding: 0;
    border-bottom: none;
  }
  .nav-links li:hover {
    background: var(--card-hover);
  }
  .nav-links a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: var(--text-soft);
    transition: color 0.2s;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--accent-soft);
    background: rgba(255, 140, 66, 0.1);
  }

  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (max-width: 768px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
}
@media (max-width: 500px) {
  .weekend-grid { grid-template-columns: 1fr; }
  .forecast-day {
    flex: 0 0 calc((100% - 30px) / 2.5);
  }
  /* "MISSCHIEN" op 72px past niet op een smal scherm — schaal mee met viewport */
  .verdict {
    font-size: clamp(36px, 13.5vw, 72px);
    text-align: center;
    width: 100%;
  }
  .hero { padding: 40px 0 24px; }
}

.skeleton {
  background: linear-gradient(90deg, var(--card) 25%, var(--card-hover) 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  color: transparent;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* ════════════════════════════════════
   Nieuwsbrief — newsletter blokken
   ════════════════════════════════════ */ tag vóór de snippets op de pagina)    -->
<!-- ══════════════════════════════════════════════════════════ -->
<style>
  /* ── Nieuwsbrief — gedeelde stijlen ── */
  .nl-hp { display: none !important; visibility: hidden; }

  .nl-status {
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    display: none;
  }
  .nl-status.success {
    background: rgba(74,222,128,0.12);
    border: 1px solid rgba(74,222,128,0.3);
    color: var(--green, #4ade80);
    display: block;
  }
  .nl-status.error {
    background: rgba(248,113,113,0.1);
    border: 1px solid rgba(248,113,113,0.3);
    color: var(--red, #f87171);
    display: block;
  }

  .nl-consent-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    margin-top: 10px;
  }
  .nl-consent-row input[type="checkbox"] {
    width: 16px; height: 16px;
    flex-shrink: 0; margin-top: 2px;
    accent-color: var(--accent, #ff6b1a);
    cursor: pointer;
  }
  .nl-consent-text {
    font-size: 12px;
    color: var(--text-soft, #999);
    line-height: 1.5;
  }
  .nl-consent-text a { color: var(--accent-soft, #ff8c42); text-decoration: underline; }

  /* ── Variant A — Breed blok ── */
  .nl-section {
    padding: 48px 0;
    border-top: 1px solid var(--border, #2a2a2a);
  }
  .nl-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255,107,26,0.08), rgba(255,140,66,0.03));
    border: 1px solid rgba(255,107,26,0.2);
    border-radius: 20px;
    padding: 36px;
  }
  @media (max-width: 640px) {
    .nl-card { flex-direction: column; padding: 24px 20px; }
  }
  .nl-icon { font-size: 40px; flex-shrink: 0; }
  .nl-content { flex: 1; }
  .nl-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }
  .nl-sub {
    font-size: 14px;
    color: var(--text-soft, #999);
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .nl-form { width: 100%; }
  .nl-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  @media (max-width: 520px) {
    .nl-row { flex-direction: column; }
    .nl-row .nl-btn { width: 100%; }
  }
  .nl-input {
    background: var(--bg-soft, #1a1a1a);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 10px;
    padding: 11px 14px;
    color: var(--text, #f0f0f0);
    font-size: 15px;
    font-family: inherit;
    outline: none;
    flex: 1;
    min-width: 0;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .nl-input:focus {
    border-color: var(--accent, #ff6b1a);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.15);
  }
  .nl-email { flex: 2; }
  .nl-btn {
    background: var(--accent, #ff6b1a);
    border: none;
    border-radius: 10px;
    padding: 11px 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.2s, transform 0.1s;
  }
  .nl-btn:hover { background: var(--accent-soft, #ff8c42); transform: translateY(-1px); }
  .nl-btn:active { transform: translateY(0); }
  .nl-btn:disabled { opacity: 0.6; cursor: default; transform: none; }

  /* ── Variant B — Compact ── */
  .nl-compact {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--card, #161616);
    border: 1px solid var(--border, #2a2a2a);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
  }
  @media (max-width: 520px) {
    .nl-compact { flex-direction: column; }
  }
  .nl-compact-icon { font-size: 28px; flex-shrink: 0; }
  .nl-compact-body { flex: 1; }
  .nl-compact-title {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
  }
  .nl-compact-sub {
    font-size: 13px;
    color: var(--text-soft, #999);
    margin-bottom: 12px;
    line-height: 1.5;
  }
  .nl-compact-form { width: 100%; }
  .nl-compact-row {
    display: flex;
    gap: 8px;
  }
  @media (max-width: 400px) {
    .nl-compact-row { flex-direction: column; }
  }
  .nl-btn-sm {
    padding: 11px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  /* compact row met voornaam */
  .nl-compact-row--col {
    flex-direction: column;
    gap: 8px;
  }
  .nl-compact-row--col .nl-input { width: 100%; }


/* ── Newsletter grid-banner (full-breedte in recept/blog/shop grid) ── */
.nl-grid-banner {
  grid-column: 1 / -1;
  margin: 8px 0;
}
.nl-grid-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(135deg, rgba(255,107,26,0.13) 0%, rgba(20,10,5,0.6) 100%),
              linear-gradient(135deg, #1a0d05, #2a1508);
  border: 1px solid rgba(255,107,26,0.28);
  border-radius: 20px;
  overflow: hidden;
  padding: 36px;
}
@media (max-width: 600px) {
  .nl-grid-inner { padding: 24px 20px; }
}
.nl-grid-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-right: none;
  border-bottom: 1px solid rgba(255,107,26,0.15);
}
.nl-grid-emoji { font-size: 36px; margin-bottom: 4px; }
.nl-grid-title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--text, #f0f0f0);
}
.nl-grid-sub {
  font-size: 14px;
  color: var(--text-soft, #999);
  line-height: 1.55;
  margin: 0;
}
.nl-grid-right {
  padding: 0;
}
.nl-grid-right .nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Inputs en button naast elkaar op desktop */
.nl-grid-right .nl-form-inputs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nl-grid-right .nl-form-inputs .nl-input {
  flex: 1;
  min-width: 140px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.nl-grid-right .nl-form-inputs .nl-email { flex: 1.5; }
.nl-grid-right .nl-form-inputs .nl-btn {
  white-space: nowrap;
  padding: 11px 24px;
  align-self: stretch;
}
@media (max-width: 520px) {
  .nl-grid-right .nl-form-inputs { flex-direction: column; }
  .nl-grid-right .nl-form-inputs .nl-btn { align-self: stretch; }
}
/* Fallback voor forms zonder .nl-form-inputs wrapper */
.nl-grid-right .nl-input {
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.nl-grid-right .nl-btn {
  align-self: flex-start;
  padding: 11px 24px;
}
@media (max-width: 480px) {
  .nl-grid-right .nl-btn { align-self: stretch; }
}
/* Globale fix voor Chrome mobile input rendering */
.nl-input {
  -webkit-appearance: none;
  appearance: none;
}
.nl-btn {
  -webkit-appearance: none;
  appearance: none;
}

/* ── Blog index: kleur-gradients per categorie ── */
.blog-card-img {
  height: 72px;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: flex-end;
  padding: 10px 16px;
  flex-shrink: 0;
  margin: -24px -24px 0;
}
.blog-card { padding-top: 0; overflow: hidden; }
.blog-card-img .tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.blog-cat-vlees    { background: linear-gradient(135deg, #4a1c10, #8b3520); }
.blog-cat-marinades { background: linear-gradient(135deg, #3d1f08, #7a3e12); }
.blog-cat-basics   { background: linear-gradient(135deg, #0d2240, #1a4070); }
.blog-cat-brandstof { background: linear-gradient(135deg, #2a2a10, #5a4e10); }
.blog-cat-gear     { background: linear-gradient(135deg, #0d2820, #1a5038); }
.blog-cat-bijgerechten { background: linear-gradient(135deg, #1e2a10, #3a5020); }

/* ── Blog + Partners filter bar ── */
.filter-bar-wrap {
  margin: 20px 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.filter-bar-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft, #999);
  margin: 0;
  align-self: center;
  text-align: center;
}
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
}
.filter-bar--search {
  justify-content: center;
}
.filter-search {
  flex: 0 1 320px;
  min-width: 180px;
  max-width: 400px;
  background: var(--bg-soft, #1a1a1a);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--text, #f0f0f0);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.filter-search--centered {
  text-align: left;
}
.filter-search:focus { border-color: var(--accent, #ff6b1a); }
.filter-pill {
  background: var(--card, #161616);
  border: 1px solid var(--border, #2a2a2a);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft, #999);
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
  font-family: inherit;
}
.filter-pill:hover { border-color: var(--accent, #ff6b1a); color: var(--text, #f0f0f0); }
.filter-pill.active {
  background: var(--accent, #ff6b1a);
  border-color: var(--accent, #ff6b1a);
  color: #fff;
}
.filter-result-count {
  font-size: 13px;
  color: var(--text-soft, #999);
  margin: 8px 0 0;
  min-height: 20px;
  text-align: center;
}

/* === Author badge (recepten) === */
.author-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.author-badge a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.author-badge a:hover .author-name {
  color: var(--accent-soft);
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.author-role {
  font-size: 12px;
  color: var(--text-soft);
}
