/* Fonts: in header.php via preconnect + <link>, NIET via @import (parallel load). */

:root {
  --navy: #0f2a5e;
  --navy-light: #1e4a8f;
  --red: var(--primary);
  --red-light: var(--primary-light);
  --cream: #f5f8fc;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e2e5ea;
  --green: #16a34a;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
}

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

/* ─── HEADER ──────────────────────────────────────────────── */
header {
  background: var(--navy);
  padding: 0;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 32px; height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: white;
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--primary-accent); }

nav.desktop-nav { display: flex; gap: 2rem; align-items: center; }
nav.desktop-nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
nav.desktop-nav a:hover { color: white; text-decoration: none; }
nav.desktop-nav .cta {
  background: var(--primary);
  color: white !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 24px 2rem;
  font-size: 0.82rem;
  margin-top: 0;
}
footer a { color: rgba(255,255,255,0.5); }
footer a:hover { color: white; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1d4ed8 100%);
  padding: 80px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.4);
  color: var(--primary-accent);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white; line-height: 1.15;
  margin-bottom: 16px; font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--primary-accent); }
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem; font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px; margin-left: auto; margin-right: auto;
}

/* ─── SEARCH ──────────────────────────────────────────────── */
.search-box {
  background: white; border-radius: 16px; padding: 8px;
  max-width: 620px; margin: 0 auto;
  display: flex; gap: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative; z-index: 1;
}
.search-field {
  flex: 1; display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: var(--gray-light); border-radius: 10px;
}
.search-field input {
  border: none; background: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--navy);
  width: 100%; outline: none;
}
.search-field input::placeholder { color: var(--gray); }
.search-btn {
  background: var(--primary); color: white; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.search-btn:hover { background: var(--primary-light); }

.hero-stats {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 28px; flex-wrap: wrap;
}
.stat-pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.82rem;
}
.stat-pill strong { color: white; }

/* ─── CONTAINER ───────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }

/* ─── SECTIE HEADER ───────────────────────────────────────── */
.sectie-header { text-align: center; margin: 60px 0 32px; }
.sectie-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  margin-bottom: 8px;
}
.sectie-header p { color: var(--gray); font-size: 1rem; }

/* ─── PROVINCIES GRID ─────────────────────────────────────── */
.provincies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}
.provincie-card {
  background: white; border-radius: 12px;
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; color: var(--navy);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.provincie-card:hover {
  border-color: var(--primary); color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192,57,43,0.1);
  text-decoration: none;
}
.provincie-naam { font-weight: 500; font-size: 0.95rem; }
.provincie-count {
  background: var(--gray-light);
  color: var(--gray);
  padding: 3px 10px; border-radius: 12px;
  font-size: 0.8rem; font-weight: 500;
}

/* ─── ARTS CARDS (homepage featured) ─────────────────────── */
.arts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
  margin-bottom: 60px;
}
.arts-card {
  background: white; border-radius: 14px;
  padding: 20px; border: 1.5px solid var(--border);
  transition: all 0.2s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: 12px;
}
.arts-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(192,57,43,0.1);
  transform: translateY(-2px);
  text-decoration: none;
}
.arts-card-header { display: flex; align-items: center; gap: 14px; }
.arts-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600; flex-shrink: 0;
}
.arts-naam { font-weight: 600; font-size: 1rem; }
.arts-specialisme { color: var(--gray); font-size: 0.82rem; margin-top: 2px; }
.arts-adres { color: var(--gray); font-size: 0.85rem; }
.arts-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.arts-card-footer {
  display: flex; align-items: center;
  justify-content: space-between; margin-top: auto;
}
.arts-tel { color: var(--gray); font-size: 0.85rem; }
.btn-afspraak {
  background: var(--primary); color: white;
  padding: 8px 16px; border-radius: 8px;
  font-size: 0.82rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
  white-space: nowrap;
}
.btn-afspraak:hover { background: var(--primary-light); text-decoration: none; }

/* ─── BADGES ──────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 10px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 500;
}
.badge-conv    { background: #dcfce7; color: #15803d; }
.badge-partial { background: #fef9c3; color: #a16207; }
.badge-none    { background: #fee2e2; color: #b91c1c; }
.badge-afspraak { background: #dbeafe; color: #1d4ed8; }

/* ─── PAGE HEADER (gemeente/detail) ──────────────────────── */
.page-header {
  background: var(--navy);
  padding: 40px 2rem 50px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb a:hover { color: white; }
.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: white; font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700; position: relative; z-index: 1;
}
.page-header p { color: rgba(255,255,255,0.65); margin-top: 8px; position: relative; z-index: 1; }
.page-header-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 16px; position: relative; z-index: 1;
}

/* ─── FILTERS ─────────────────────────────────────────────── */
.filters-bar {
  background: white; border-bottom: 1px solid var(--border);
  padding: 0;
}
.filters-bar-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 2rem;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.filter-btn {
  padding: 7px 16px; border-radius: 20px;
  border: 1.5px solid var(--border);
  background: none; font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem; cursor: pointer;
  color: var(--gray); transition: all 0.15s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy); color: white; border-color: var(--navy);
}

/* ─── GEMEENTE LIJST ──────────────────────────────────────── */
.arts-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arts-list-item {
  background: white; border-radius: 12px;
  padding: 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  border: 1.5px solid var(--border);
  transition: all 0.2s; text-decoration: none; color: inherit;
}
.arts-list-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  text-decoration: none;
}
.arts-list-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
}
.arts-list-info { flex: 1; min-width: 0; }
.arts-list-naam { font-weight: 600; font-size: 1rem; }
.arts-list-sub { color: var(--gray); font-size: 0.85rem; margin-top: 4px; }
.arts-list-badges { display: flex; gap: 6px; margin-top: 8px; flex-wrap: wrap; }
.arts-list-actions { display: flex; gap: 8px; align-items: center; width: 100%; margin-top: auto; }
.btn-tel {
  padding: 9px 16px; border-radius: 8px;
  border: 1.5px solid var(--border);
  background: white; color: var(--navy);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  text-decoration: none; display: inline-block;
}
.btn-tel:hover { border-color: var(--navy); text-decoration: none; }

/* ─── PAGINERING ──────────────────────────────────────────── */
.pagination {
  display: flex; justify-content: center; gap: 6px;
  margin: 32px 0; list-style: none;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.88rem; color: var(--navy); text-decoration: none;
  transition: all 0.15s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active span, .pagination li.active a {
  background: var(--primary); color: white; border-color: var(--primary);
}

/* ─── DETAIL PAGINA ───────────────────────────────────────── */
.detail-layout {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 2rem 60px;
  display: flex; flex-direction: column; gap: 20px;
}
.detail-main { display: contents; }
.detail-sidebar { display: contents; }
.card {
  background: white; border-radius: 14px;
  padding: 28px; border: 1.5px solid var(--border);
}
.card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--border);
}

/* Hero card */
.arts-hero-card { padding: 28px; }
.arts-hero-header {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 20px;
}
.arts-hero-avatar {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 600;
}
.arts-hero-naam {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700; line-height: 1.2;
}
.arts-hero-sub { color: var(--gray); font-size: 0.9rem; margin: 6px 0 12px; }
.arts-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gray-light); color: var(--gray);
  padding: 6px 12px; border-radius: 20px; font-size: 0.82rem;
}
.arts-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: var(--primary); color: white;
  padding: 12px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover { background: var(--primary-light); text-decoration: none; }
.btn-secondary {
  background: white; color: var(--navy);
  padding: 12px 22px; border-radius: 10px;
  font-size: 0.9rem; font-weight: 500;
  border: 1.5px solid var(--border);
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-secondary:hover { border-color: var(--navy); text-decoration: none; }

/* Contact grid */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.contact-label { font-size: 0.78rem; color: var(--gray); margin-bottom: 2px; }
.contact-value { font-weight: 500; font-size: 0.9rem; }
.contact-value a { color: var(--navy); }
.contact-value a:hover { color: var(--primary); }

/* Openingsuren */
.uren-table { width: 100%; border-collapse: collapse; }
.uren-table tr { border-bottom: 1px solid var(--border); }
.uren-table tr:last-child { border-bottom: none; }
.uren-table td { padding: 9px 0; font-size: 0.88rem; }
.uren-table .dag { color: var(--gray); width: 100px; }
.uren-table .vandaag td { font-weight: 600; color: var(--navy); }
.dag-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }
.open-dot { background: #16a34a; }
.gesloten-dot { background: #9ca3af; }

/* Specialisaties tags */
.spec-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.spec-tag {
  background: rgba(192,57,43,0.08);
  color: var(--primary);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.85rem;
}

/* Praktijkinfo grid */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-label { font-size: 0.78rem; color: var(--gray); margin-bottom: 4px; }
.info-value { font-weight: 500; font-size: 0.9rem; }

/* Kaart */
.map-wrap {
  border-radius: 10px; overflow: hidden;
  height: 240px; background: var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px; color: var(--gray); font-size: 0.88rem;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Foto */
.praktijk-foto {
  width: 100%; height: 180px; border-radius: 10px;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray); gap: 8px; font-size: 0.85rem;
  border: 2px dashed var(--border);
}

/* Tarieven */
.tarief-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.tarief-row:last-of-type { border-bottom: none; }
.tarief-label-small { color: var(--gray); font-size: 0.82rem; display: block; margin-top: 2px; }
.tarief-prijs { font-weight: 600; font-size: 1rem; }
.tarief-eigen { color: var(--green); font-weight: 500; font-size: 0.85rem; }

/* Reviews */
.rating-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.rating-big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; line-height: 1; }
.rating-stars { color: #f59e0b; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 4px; }
.rating-count { font-size: 0.82rem; color: var(--gray); }
.rating-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--gray); }
.rating-bar-row span:first-child { width: 14px; text-align: right; }
.bar-track { flex: 1; height: 6px; background: var(--gray-light); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: #f59e0b; border-radius: 3px; }
.bar-count { width: 20px; }
.review-list { display: flex; flex-direction: column; gap: 20px; }
.review-item { padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.review-item:last-child { border-bottom: none; padding-bottom: 0; }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 600;
}
.reviewer-name { font-weight: 500; font-size: 0.9rem; }
.reviewer-date { font-size: 0.78rem; color: var(--gray); }
.review-stars { color: #f59e0b; font-size: 0.95rem; }
.review-text { font-size: 0.88rem; color: #374151; line-height: 1.7; }
.add-review-btn {
  width: 100%; margin-top: 20px;
  border: 1.5px dashed var(--border); background: none;
  padding: 13px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  color: var(--gray); cursor: pointer; transition: all 0.15s;
}
.add-review-btn:hover { border-color: var(--primary); color: var(--primary); }

/* Review formulier */
.review-form { display: none; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.review-form.open { display: block; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid var(--border);
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  outline: none; transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.star-rating { display: flex; gap: 4px; font-size: 1.8rem; cursor: pointer; color: #d1d5db; }
.star-rating .star:hover, .star-rating .star.selected { color: #f59e0b; }
.btn-submit {
  background: var(--primary); color: white; border: none;
  padding: 11px 24px; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  font-weight: 500; cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--primary-light); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 16px 0;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; font-weight: 500;
  color: var(--navy); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { color: var(--primary); font-size: 1.1rem; transition: transform 0.2s; }
.faq-answer { font-size: 0.88rem; color: var(--gray); line-height: 1.75; padding-bottom: 16px; display: none; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* Nearby */
.nearby-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nearby-card {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; border-radius: 10px; border: 1.5px solid var(--border);
  text-decoration: none; color: inherit; transition: all 0.2s;
}
.nearby-card:hover { border-color: var(--primary); text-decoration: none; }
.nearby-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.8rem; font-weight: 600;
}
.nearby-naam { font-weight: 500; font-size: 0.88rem; }
.nearby-sub { font-size: 0.78rem; color: var(--gray); }

/* Info strip */
.info-strip {
  background: var(--navy);
  padding: 40px 2rem;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: center;
}
.info-strip-item { color: white; }
.info-strip-icon { font-size: 1.8rem; margin-bottom: 10px; }
.info-strip-title { font-weight: 600; margin-bottom: 6px; }
.info-strip-text { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* SEO tekst */
.seo-tekst {
  background: white; border-radius: 14px;
  padding: 28px; margin: 32px 0;
  border: 1.5px solid var(--border);
}
.seo-tekst h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 12px; }
.seo-tekst p { color: var(--gray); font-size: 0.9rem; line-height: 1.8; }

/* Zoekresultaten autocomplete */
.search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: white; border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow: hidden; z-index: 200; display: none;
}
.search-result-item {
  padding: 12px 16px; cursor: pointer;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; border-bottom: 1px solid var(--border);
  color: var(--navy);
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--gray-light); }
.search-result-icon { color: var(--gray); }

/* Responsief */
@media (max-width: 768px) {
  header { padding: 0 1rem; }
  .desktop-nav { gap: 1rem; }
  .container { padding: 0 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .nearby-grid { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; gap: 20px; }
  .arts-list { grid-template-columns: 1fr; }
  .arts-list-item { flex-direction: row; align-items: center; }
  .arts-list-actions { width: auto; margin-top: 0; flex-direction: column; gap: 6px; }
  .arts-hero-avatar { width: 64px; height: 64px; font-size: 1.5rem; }
  .arts-hero-naam { font-size: 1.4rem; }
  .detail-layout { padding: 16px 1rem 40px; }
}

@media (max-width: 600px) {
  .provincies-grid { grid-template-columns: 1fr 1fr; }
  .arts-grid { grid-template-columns: 1fr; }
  .search-box { flex-direction: column; }
}

/* ─── INFO PAGINA'S ────────────────────────────────────────── */
.info-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 2rem 80px;
}
.info-breadcrumb {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.info-breadcrumb a { color: var(--gray); text-decoration: none; }
.info-breadcrumb a:hover { color: var(--navy); }
.info-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 36px;
}
.info-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: white;
}
.info-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.65; }
.info-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 36px 0 12px;
}
.info-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}
.info-body p { line-height: 1.75; color: #374151; margin-bottom: 14px; }
.info-body ul { padding-left: 20px; margin-bottom: 14px; }
.info-body ul li { line-height: 1.75; color: #374151; margin-bottom: 6px; }
.info-card {
  background: #f8f7f4;
  border-left: 4px solid var(--primary);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-card p { margin: 0; color: #374151; font-size: 0.92rem; }
.info-card strong { color: var(--navy); }
.info-cta {
  background: var(--navy);
  color: white;
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.info-cta p { color: rgba(255,255,255,0.8); font-size: 0.92rem; margin: 4px 0 0; }
.info-cta h3 { color: white; font-size: 1.05rem; margin: 0; }
.info-cta a.btn-cta {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.info-nav {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 44px;
}
.info-nav a {
  background: white;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color .2s, box-shadow .2s;
}
.info-nav a:hover { border-color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.info-nav a span { display: block; font-size: 1.1rem; margin-bottom: 4px; }

/* ─── NAV DROPDOWN ─────────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-info-link {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
  display: flex; align-items: center; gap: 4px;
}
.nav-info-link:hover { background: rgba(15,31,61,0.07); }
.nav-arrow { font-size: 0.7rem; color: var(--gray); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 270px;
  z-index: 100;
  overflow: hidden;
  border: 1px solid #f0ede6;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.85rem;
  color: var(--navy);
  text-decoration: none;
  transition: background .15s;
}
.nav-dropdown-menu a:hover { background: #f8f7f4; }
.nav-dropdown-footer {
  border-top: 1px solid #f0ede6;
  padding: 0;
}
.nav-dropdown-footer a {
  color: var(--primary) !important;
  font-weight: 600;
  font-size: 0.82rem;
}

/* =====================================================
   SEO/AI-EO additions (2026-06)
   ===================================================== */

/* TL;DR / In het kort blok (detail page) */
.tldr-card {
  background: linear-gradient(180deg, #f8f5f0 0%, #ffffff 100%);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
.tldr-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tldr-summary {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  margin: 0 0 12px;
}
.tldr-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px 14px;
}
.tldr-list li {
  font-size: 0.88rem;
  color: var(--navy);
  padding: 4px 0;
}

/* Disclaimer (was inline style in detail.php) */
.arts-disclaimer {
  padding: 10px 18px;
  background: #f8f5f0;
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.6;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}
.arts-disclaimer > span:first-child { flex-shrink: 0; }
.arts-disclaimer a { color: var(--primary); white-space: nowrap; }

/* Stretched link voor klikbare card (gemeente-pagina arts-list) */
.arts-list-item { position: relative; }
.arts-list-stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
.arts-list-item .arts-list-actions,
.arts-list-item .arts-list-actions a {
  position: relative;
  z-index: 2;
}

/* Laatst bijgewerkt strook (content pages) */
.laatst-bijgewerkt {
  max-width: 820px;
  margin: 40px auto 0;
  padding: 10px 2rem;
  font-size: 0.82rem;
  color: var(--gray);
  border-top: 1px solid var(--border);
  text-align: center;
}
.laatst-bijgewerkt time { font-weight: 500; color: var(--navy); }

/* Section grid cards (homepage + info index,was inline style) */
.section-card {
  text-decoration: none;
  color: inherit;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
}
.section-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transform: translateY(-1px);
  text-decoration: none;
}
.section-card .sc-emoji { font-size: 1.6rem; margin-bottom: 8px; }
.section-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  border: none;
  padding: 0;
  color: var(--navy);
}
.section-card p {
  color: var(--gray);
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.5;
}
.section-card .sc-cta {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Info index pair-cards (compact variant) */
.info-pair-card {
  text-decoration: none;
  color: inherit;
}
.info-pair-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  border: none;
  padding: 0;
}
.info-pair-card p {
  color: var(--gray);
  font-size: 0.84rem;
  margin: 0;
}
.info-pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 600px) {
  .info-pair-grid { grid-template-columns: 1fr; }
}
.info-pair-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 20px;
}


/* ── Nieuwe patiënten: badges + crowdsourcing widget ── */
.badge-np-ja {
  background: #dcfce7; color: #15803d;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  display: inline-flex; align-items: center;
}
.badge-np-nee {
  background: #fee2e2; color: #b91c1c;
  padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 600;
  display: inline-flex; align-items: center;
}
.np-card h2 { margin-bottom: 10px; }
.np-status { font-size: 0.92rem; line-height: 1.6; margin: 0 0 14px; }
.np-status-ja { color: #15803d; font-weight: 500; }
.np-status-nee { color: #b91c1c; font-weight: 500; }
.np-status small { color: var(--gray); font-weight: 400; }
.np-status a { display: block; margin-top: 6px; font-weight: 400; font-size: 0.85rem; }
.np-bedankt {
  background: #dcfce7; color: #15803d;
  padding: 10px 14px; border-radius: 8px;
  font-size: 0.88rem; margin: 0;
}
.np-form {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.np-vraag { font-size: 0.82rem; color: var(--gray); }
.np-btn {
  border: 1.5px solid var(--border); background: white;
  padding: 7px 14px; border-radius: 8px;
  font-family: inherit; font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
}
.np-btn-ja:hover { border-color: #16a34a; color: #15803d; background: #f0fdf4; }
.np-btn-nee:hover { border-color: #dc2626; color: #b91c1c; background: #fef2f2; }


/* ── Spoedtandarts ── */
.spoed-card {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border: 1.5px solid #fca5a5;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.spoed-card-icoon { font-size: 2rem; flex-shrink: 0; }
.spoed-bel-btn {
  display: inline-block;
  background: #dc2626; color: white !important;
  padding: 12px 26px; border-radius: 10px;
  font-size: 1.05rem; font-weight: 600;
  text-decoration: none;
}
.spoed-bel-btn:hover { background: #b91c1c; text-decoration: none; }
@media (max-width: 600px) {
  .spoed-card { flex-direction: column; }
}


/* Spoed: feiten-grid (uren + kosten) */
.spoed-feiten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.spoed-feit {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 10px;
  padding: 10px 14px;
}
.spoed-feit-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
}
.spoed-feit-waarde {
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.45;
}


/* Nieuwe-patiënten widget v2: duidelijke vraag + grote kleurknoppen */
.np-form {
  display: block;
  padding: 16px;
  margin-top: 4px;
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 12px;
}
.np-form-vraag { margin-bottom: 14px; }
.np-form-vraag strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.np-form-vraag span {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}
.np-form-knoppen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.np-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid;
}
.np-btn-icoon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  color: white;
}
.np-btn-ja {
  background: #f0fdf4;
  border-color: #86efac;
  color: #15803d;
}
.np-btn-ja .np-btn-icoon { background: #16a34a; }
.np-btn-ja:hover {
  background: #16a34a;
  border-color: #16a34a;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}
.np-btn-ja:hover .np-btn-icoon { background: rgba(255,255,255,0.25); }
.np-btn-nee {
  background: #fef2f2;
  border-color: #fca5a5;
  color: #b91c1c;
}
.np-btn-nee .np-btn-icoon { background: #dc2626; }
.np-btn-nee:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}
.np-btn-nee:hover .np-btn-icoon { background: rgba(255,255,255,0.25); }
@media (max-width: 480px) {
  .np-form-knoppen { grid-template-columns: 1fr; }
}


/* Nieuwe-patiënten widget v3: banner-stijl (variant C),overschrijft v2 */
.np-form {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  margin-top: 4px;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 14px;
}
.np-banner-icoon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700;
  flex-shrink: 0;
}
.np-banner-body { flex: 1; }
.np-banner-titel {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.np-banner-sub {
  display: block;
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 14px;
  line-height: 1.5;
}
.np-knoppen-rij { display: flex; gap: 10px; flex-wrap: wrap; }
.np-cbtn {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 9px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.np-cbtn-ja {
  background: #16a34a;
  color: #fff;
  border: 1.5px solid #16a34a;
}
.np-cbtn-ja:hover {
  background: #15803d;
  border-color: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(22, 163, 74, 0.3);
}
.np-cbtn-nee {
  background: #fff;
  color: #b91c1c;
  border: 1.5px solid #fca5a5;
}
.np-cbtn-nee:hover {
  background: #fef2f2;
  border-color: #dc2626;
}
@media (max-width: 480px) {
  .np-form { flex-direction: column; }
  .np-cbtn { width: 100%; justify-content: center; }
}


/* ── Homepage: regio's + gemeente-chips (was 1113x inline-style) ── */
.regio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.regio-card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 22px;
}
.regio-card-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.regio-card-head strong { font-size: 1.1rem; color: var(--navy); }
.regio-card-head span { font-size: 0.82rem; color: var(--gray); }
.gem-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gem-chips-meer { display: none; margin-top: 8px; }
.gem-chips-meer.open { display: flex; }
.gem-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--navy);
  transition: border-color 0.15s, color 0.15s;
}
.gem-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  text-decoration: none;
}
.gem-chip-count {
  background: #f3f4f6;
  color: var(--gray);
  border-radius: 10px;
  padding: 1px 7px;
  font-size: 0.75rem;
}
.regio-toggle-wrap {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.regio-toggle { font-size: 0.8rem; color: var(--primary); text-decoration: none; }

/* ── Funnel-CTA op content-pagina's (content -> directory) ── */
.funnel-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 44px 2rem;
  margin-top: 48px;
}
.funnel-cta-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.funnel-cta h2 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.funnel-cta p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 20px; }
.funnel-search {
  display: flex;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 6px;
  max-width: 480px;
  margin: 0 auto 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.funnel-search input {
  flex: 1;
  border: none;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--navy);
  outline: none;
}
.funnel-search button {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.funnel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
}
.funnel-links span { color: rgba(255,255,255,0.5); }
.funnel-links a { color: var(--primary-accent); text-decoration: none; }
.funnel-links a:hover { color: #fff; text-decoration: underline; }

/* ── Review-herinnering toast ── */
#review-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 300px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  padding: 16px 18px;
  z-index: 998;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
#review-toast.show { transform: translateY(0); opacity: 1; }
.review-toast-tekst { font-size: 0.9rem; color: var(--navy); line-height: 1.45; margin-bottom: 12px; }
.review-toast-tekst small { color: var(--gray); }
.review-toast-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 16px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
}
.review-toast-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gray);
  cursor: pointer;
}

/* ── Compact "Wat bezoekers zeggen" crowd-widget (detail page) ── */
.crowd-contrib {
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.crowd-contrib-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 14px;
}
.crowd-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px 22px;
  align-items: start;
}
.crowd-group { display: flex; flex-direction: column; gap: 7px; }
.crowd-gl { font-size: 0.8rem; color: var(--gray); font-weight: 500; }

/* Sterren */
.crowd-stars { display: inline-flex; gap: 5px; }
.crowd-star {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: #d1d5db;
  transition: color 0.12s, transform 0.12s;
}
.crowd-star:hover { transform: scale(1.12); }
.crowd-star.crowd-on { color: #f59e0b; }

/* Ja/nee */
.crowd-yn { display: inline-flex; gap: 8px; }
.crowd-yn button {
  padding: 8px 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}
.crowd-ja { background: #fff; color: #15803d; border: 1.5px solid #86efac; }
.crowd-ja:hover { background: #16a34a; color: #fff; border-color: #16a34a; }
.crowd-nee { background: #fff; color: #b91c1c; border: 1.5px solid #fca5a5; }
.crowd-nee:hover { background: #dc2626; color: #fff; border-color: #dc2626; }

/* Wachttijd-pillen */
.crowd-pills { display: inline-flex; gap: 6px; flex-wrap: wrap; }
.crowd-pill {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--navy);
  padding: 7px 13px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s;
}
.crowd-pill:hover { border-color: var(--primary); color: var(--primary); }

/* AJAX-resultaat na stemmen */
.crowd-done {
  display: inline-flex; align-items: center;
  color: #15803d; font-weight: 600; font-size: 0.88rem;
  background: #dcfce7; padding: 7px 14px; border-radius: 8px;
}
.crowd-cap {
  display: inline-flex; align-items: center;
  color: #b91c1c; font-size: 0.85rem;
}

/* Fout melden */
.crowd-ff { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 12px; }
.crowd-flag { font-size: 0.82rem; color: var(--primary); cursor: pointer; font-weight: 500; }
.crowd-ff-form { margin-top: 12px; }
.crowd-ff-field { margin-bottom: 10px; }
.crowd-ff-field label { font-size: 0.82rem; display: block; margin-bottom: 4px; color: var(--navy); }
.crowd-opt { color: var(--gray); font-weight: 400; }
.crowd-ff-field select,
.crowd-ff-field textarea,
.crowd-ff-field input {
  width: 100%;
  padding: 8px 11px;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.85rem;
  outline: none;
}
.crowd-ff-field select:focus,
.crowd-ff-field textarea:focus,
.crowd-ff-field input:focus { border-color: var(--primary); }
.crowd-ff-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}
.crowd-ff-btn:hover { background: var(--primary-light); }

/* Crowd samenvattings-chips (zoals dermatologen, teal-thema) */
.crowd-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 12px; }
.crowd-chip { display: inline-flex; align-items: center; gap: 6px; border-radius: 50px; padding: 7px 14px; font-size: 0.85rem; font-weight: 600; white-space: nowrap; }
.crowd-chip svg { flex: none; }
.chip-score { background: #dbeefc; color: #0e5a8f; }
.chip-wait { background: #e0f2fe; color: #075985; }
.chip-np { background: #dcfce7; color: #15803d; }
.chip-np-nee { background: #fee2e2; color: #b91c1c; }
.crowd-note { font-size: 0.75rem; color: var(--gray); margin: 0 0 14px; }
.crowd-empty { background: #fef9c3; border: 1px solid #fcd34d; border-radius: 8px; padding: 12px; font-size: 0.85rem; color: #a16207; margin: 0 0 16px; }

/* Antwoord van de zorgverlener onder een review */
.review-reply { margin-top: 10px; background: #eef6fc; border-left: 3px solid var(--primary); padding: 10px 14px; border-radius: 0 8px 8px 0; }
.review-reply-head { font-weight: 600; color: var(--primary-dark, #0e5a8f); font-size: 0.82rem; }
.review-reply-date { color: var(--gray); font-size: 0.75rem; font-weight: 400; }
.review-reply-text { margin-top: 4px; font-size: 0.86rem; color: #374151; line-height: 1.6; }

/* Toegankelijkheid: zichtbare focus voor toetsenbordnavigatie (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.star-rating .star { background: none; border: none; padding: 0 1px; font: inherit; line-height: 1; cursor: pointer; color: #d1d5db; }
.star-rating .star.selected, .star-rating .star:hover { color: #f59e0b; }
.crowd-star:focus-visible, .crowd-pill:focus-visible, .crowd-yn button:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Crowd-blok op smalle schermen: alles onder elkaar, knoppen vol breed */
@media (max-width: 480px) {
  .crowd-row { grid-template-columns: 1fr; }
  .crowd-yn, .crowd-pills { width: 100%; }
  .crowd-yn button, .crowd-pill { flex: 1; text-align: center; }
}
