/* ========================================
   BesteAutopoetser.nl — Design System v4.0
   Trust-focused redesign — green accents
   ======================================== */

:root {
  /* Primary brand — trust green */
  --primary: #059669;
  --primary-dark: #047857;
  --primary-light: #d1fae5;
  --primary-50: #ecfdf5;
  --primary-gradient: linear-gradient(135deg, #059669 0%, #064e3b 100%);

  /* CTA — green (was orange, now unified) */
  --cta: #059669;
  --cta-hover: #047857;
  --cta-light: #ecfdf5;

  /* Star / Premium — amber */
  --star: #d97706;
  --star-light: #fef3c7;

  /* Neutrals */
  --bg: #f9fafb;
  --bg-alt: #ecfdf5;
  --surface: #ffffff;
  --text: #111827;
  --text-2: #4b5563;
  --text-3: #9ca3af;
  --border: #e5e7eb;
  --border-s: #d1d5db;

  /* Dark (top bar, footer) */
  --dark: #0f1b2d;

  /* Status */
  --ok: #166534;
  --err: #dc2626;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

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

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 200ms; }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--surface);
  color: var(--text);
  font-family: inherit;
  transition: all 200ms ease;
  text-decoration: none;
  gap: 6px;
}
.btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--green {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn--green:hover {
  background: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--full { width: 100%; }

/* ---- Top Bar ---- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---- Header ---- */
.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.site-logo { font-size: 1.35rem; font-weight: 800; color: var(--primary); letter-spacing: -0.3px; }
.site-logo:hover { color: var(--primary-dark); opacity: 1; }
.logo-icon { display: none; }
.nav-list { display: flex; gap: 4px; }
.nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 150ms;
  position: relative;
}
.nav-list a:hover {
  color: var(--primary);
  background: var(--primary-50);
}
.nav-list a::after { display: none; }
.nav-list a.cta-nav {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}
.nav-list a.cta-nav:hover {
  background: var(--primary-dark);
  color: #fff;
}
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text-2); border-radius: 1px; }

/* ---- USP Trust Bar ---- */
.usp-bar {
  padding: 20px 0 0;
}
.usp-bar__list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.usp-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 0.85rem;
  font-weight: 500;
}
.usp-bar__item strong { color: var(--text); }
.usp-bar__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

/* ---- Page Top / Hero ---- */
.page-top {
  background: linear-gradient(180deg, var(--primary-50) 0%, var(--surface) 100%);
  padding: 48px 0 36px;
}
.page-top h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.page-top h1 em {
  font-style: normal;
  color: var(--primary);
}
.page-top__subtitle {
  font-size: 1.1rem;
  color: var(--text-3);
  margin-bottom: 32px;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ---- Search Bar ---- */
.search-bar {
  display: flex;
  max-width: 720px;
  margin: 0 auto 32px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color 200ms;
}
.search-bar:focus-within {
  border-color: var(--primary);
}
.search-bar .field { flex: 1; }
.search-bar .field label {
  display: none;
}
.search-bar .field select,
.search-bar .field input[type="text"] {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-right: 1px solid var(--border);
  font-size: 0.95rem;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  outline: none;
}
.search-bar .field select { cursor: pointer; }
.search-bar .field select:focus,
.search-bar .field input[type="text"]:focus {
  outline: none;
  box-shadow: none;
}
.search-bar .field input[type="text"]::placeholder { color: var(--text-3); }
.search-bar .btn--primary {
  padding: 16px 32px;
  border-radius: 0;
  border: none;
  font-size: 0.95rem;
  height: auto;
  white-space: nowrap;
}

/* ---- Content Sections ---- */
.content-section { padding: 48px 0; }
.content-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.content-section p.section-subtitle {
  color: var(--text-3);
  margin-top: -16px;
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
}
.section-header h2 { margin-bottom: 0; }
.section-header p { color: var(--text-3); margin-top: 4px; font-size: 0.95rem; }
.section-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.section-link:hover { text-decoration: underline; }
.content-section--compact { padding: 28px 0 20px; }
.content-section--alt { background: var(--bg); }
.content-section--green { background: var(--primary-50); border-top: 1px solid var(--primary-light); border-bottom: 1px solid var(--primary-light); }
.content-section--dark { background: var(--primary); color: #ffffff; }
.content-section--dark h2 { color: #ffffff; }
.section-footer { margin-top: 24px; text-align: center; }

/* ---- Detailer Grid ---- */
.detailer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
.detailer-grid.is-loading { opacity: 0.4; pointer-events: none; }

/* ---- Detailer Card ---- */
.detailer-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 200ms, box-shadow 200ms;
  border: 1px solid var(--border);
}
.detailer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.detailer-card__link {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 16px;
  color: inherit;
  text-decoration: none;
}
.detailer-card__link:hover { color: inherit; }
.detailer-card__image { display: none; }
.detailer-card__content { flex: 1; min-width: 0; }
.detailer-card__title { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.detailer-card__location {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.icon-pin { font-size: 14px; }
.detailer-card__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.rating-text { font-size: 13px; color: var(--text-2); font-weight: 500; }
.star-rating { display: inline-flex; gap: 2px; }
.star { font-size: 16px; }
.star--full { color: var(--star); }
.star--half { color: var(--star); opacity: 0.5; }
.star--empty { color: var(--border-s); }
.detailer-card__services { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.service-tag--large { padding: 6px 14px; font-size: 14px; }
.service-tag--large:hover { background: var(--primary); color: #ffffff; }
.service-tag--more { background: var(--primary); color: #fff; }
.detailer-card__vehicles { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.vehicle-tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f4ff;
  color: #3b5998;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}
.vehicle-tag--large { padding: 6px 14px; font-size: 14px; }
.vehicle-tag--large:hover { background: #3b5998; color: #ffffff; }
.vehicle-tag--more { background: #3b5998; color: #fff; }
.detailer-card__price {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  padding-top: 2px;
}

/* ---- Provinces ---- */
.provinces-list { columns: 3; column-gap: 20px; }
.province-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 200ms;
  break-inside: avoid;
}
.province-link:hover {
  color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.province-link span {
  color: var(--text-3);
  font-size: 13px;
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* ---- Cities grid (province page) ---- */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.city-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 200ms;
}
.city-link:hover {
  color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}
.city-link span {
  color: var(--text-3);
  font-size: 13px;
  background: var(--bg);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cities-grid { grid-template-columns: 1fr; }
}

/* City intro section */
.city-intro { max-width: 800px; }
.city-intro--has-image { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 100%; align-items: start; }
.city-intro__img { width: 100%; height: auto; border-radius: 12px; }
.city-intro__text { font-size: 16px; line-height: 1.7; color: var(--text-2); }
.city-intro__text p { margin: 0 0 1rem; }
@media (max-width: 768px) {
  .city-intro--has-image { grid-template-columns: 1fr; }
}

/* Province breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* Province map */
.province-map-container {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ---- Archive ---- */
.archive-top {
  padding: 28px 0;
  background: var(--primary-gradient);
}
.archive-top h1 { font-size: 24px; font-weight: 700; color: #ffffff; letter-spacing: -0.3px; }
.archive-top p { font-size: 15px; color: rgba(255,255,255,0.85); margin-top: 4px; }

/* Split layout — Booking.com-style: listings left, sticky map right */
.archive-split {
  display: flex;
  align-items: flex-start;
}
.archive-split__left {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 24px;
  background: var(--bg);
}
.archive-split__map {
  flex: 1;
  position: sticky;
  top: 64px; /* header height */
  height: calc(100vh - 64px);
  min-width: 0;
}
.archive-split__map #archiveMap {
  width: 100%;
  height: 100%;
}
body.admin-bar .archive-split__map { top: 96px; height: calc(100vh - 96px); }

/* Archive map popup styles */
.archive-map-popup { font-size: 14px; line-height: 1.5; }
.archive-map-popup strong a { color: var(--primary); text-decoration: none; }
.archive-map-popup strong a:hover { text-decoration: underline; }
.archive-map-popup .popup-city { color: var(--text-2); font-size: 13px; }
.archive-map-popup .popup-premium { color: var(--star); font-size: 12px; font-weight: 600; }

/* Filter sidebar inside split */
.filter-sidebar {
  padding: 16px 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
}
.filter-sidebar h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.filter-form { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; }
.filter-form .filter-group:first-child { grid-column: 1 / -1; }
.filter-form .btn { grid-column: 1; margin-top: 4px; }
.filter-form .filter-reset { grid-column: 2; margin-top: 4px; align-self: center; text-align: center; }
.filter-group { margin-bottom: 0; }
.filter-group label { display: block; font-size: 12px; font-weight: 600; margin-bottom: 3px; color: var(--text-2); }
.filter-group select,
.filter-group input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--surface);
  font-family: inherit;
  transition: border-color 200ms;
}
.filter-group select:focus,
.filter-group input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.filter-group input[type="text"]::placeholder { color: var(--text-3); }
.filter-form .btn--full { padding: 10px 16px; font-size: 14px; }
.filter-reset { color: var(--text-2); border: none; background: none; padding: 4px 0; font-size: 13px; cursor: pointer; text-decoration: underline; font-family: inherit; }
.filter-reset:hover { color: var(--primary); }
.filter-toggle { display: none; font-size: 14px; padding: 10px 16px; }
.detailer-results { padding: 0; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.results-count { font-size: 14px; color: var(--text-2); font-weight: 500; }
.no-results { grid-column: 1 / -1; text-align: center; padding: 64px 20px; color: var(--text-3); font-size: 16px; }

/* Inside split, show cards in single column */
.archive-split .detailer-grid {
  grid-template-columns: 1fr;
  gap: 12px;
}

.pagination { margin-top: 24px; }
.pagination .nav-links { display: flex; gap: 6px; justify-content: center; }
.pagination a, .pagination span {
  padding: 8px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-2);
  transition: all 200ms;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- Single Detailer ---- */
.single-top {
  padding: 32px 0;
  background: var(--primary-gradient);
}
.breadcrumbs {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.6);
}
.breadcrumbs a { color: rgba(255,255,255,0.8); }
.breadcrumbs a:hover { color: #ffffff; }
.single-top h1 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-bottom: 8px;
  color: #ffffff;
}
.single-top__meta {
  display: flex;
  gap: 10px 16px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.single-top__meta .star--full { color: #fbbf24; }
.single-top__meta .star--half { color: #fbbf24; opacity: 0.5; }
.single-top__meta .star--empty { color: rgba(255,255,255,0.3); }
.detailer-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; padding-top: 32px; }
.detailer-main { padding: 0; }
.detailer-section { margin-bottom: 40px; }
.detailer-section h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  text-align: left;
}
.detailer-description { font-size: 16px; line-height: 1.7; color: var(--text-2); }
.services-list { display: flex; flex-wrap: wrap; gap: 8px; }

/* ---- Reviews ---- */
.reviews-summary { margin-bottom: 24px; }
.reviews-summary__score {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
}
.big-rating { font-size: 36px; font-weight: 700; color: var(--primary); letter-spacing: -0.5px; }
.reviews-list { margin-bottom: 24px; }
.review-item { padding: 16px 0; border-bottom: 1px solid var(--border); }
.review-item__header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 15px; flex-wrap: wrap; }
.review-item__header time { font-size: 13px; color: var(--text-3); margin-left: auto; }
.review-item__text { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.review-item--google { background: #f8fbff; margin: 0 -16px; padding: 16px; border-radius: 8px; border-bottom: none; margin-bottom: 8px; overflow: hidden; }
.google-badge { display: inline-flex; align-items: center; font-size: 12px; font-weight: 600; color: #4285F4; background: #e8f0fe; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.02em; white-space: nowrap; }

/* ---- Sidebar ---- */
.detailer-sidebar { padding: 0; }
.sidebar-block {
  padding: 20px;
  margin-bottom: 20px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.sidebar-block:last-child { margin-bottom: 0; }
.sidebar-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}
.contact-list { display: flex; flex-direction: column; gap: 10px; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-2); }
.contact-list li a { color: var(--text); font-weight: 500; word-break: break-word; overflow-wrap: break-word; }
.contact-list li a:hover { color: var(--primary); }
.contact-icon { flex-shrink: 0; font-size: 16px; width: 20px; text-align: center; }
.opening-hours { font-size: 14px; color: var(--text-2); line-height: 1.8; }
.opening-hours-table { width: 100%; border-collapse: collapse; }
.opening-hours-table tr { border-bottom: 1px solid var(--border); }
.opening-hours-table tr:last-child { border-bottom: none; }
.oh-td-day { padding: 4px 0; font-weight: 600; color: var(--text); width: 36px; }
.oh-td-time { padding: 4px 0; text-align: right; }
.oh-closed .oh-td-day, .oh-closed .oh-td-time { color: var(--text-3); }
.oh-closed-text { font-style: italic; }
.kvk-number { margin-top: 12px; font-size: 13px; color: var(--text-3); }
.social-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.social-link { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 20px; font-size: 13px; font-weight: 500; color: var(--text-2); transition: all 150ms; }
.social-link:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.social-link svg { flex-shrink: 0; }

/* ---- Forms ---- */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  transition: border-color 200ms, box-shadow 200ms;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.star-input { display: flex; gap: 4px; }
.star-btn { font-size: 28px; cursor: pointer; color: var(--border-s); transition: color 120ms, transform 120ms; user-select: none; }
.star-btn.is-active, .star-btn:hover { color: var(--star); transform: scale(1.1); }
.form-message { margin-top: 12px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; display: none; }
.form-message--success { display: block; background: var(--primary-light); color: var(--ok); border: 2px solid #a7f3d0; }
.form-message--error { display: block; background: #fef2f2; color: var(--err); border: 2px solid #fecaca; }
.review-form-wrapper {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--bg);
}
.review-form-wrapper h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }

/* ---- Premium Badge ---- */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #ffffff;
  border: none;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 8px;
  box-shadow: 0 2px 4px rgba(245,158,11,0.3);
}
.detailer-card--premium {
  border: 2px solid var(--star);
  position: relative;
}
.detailer-card--premium::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.detailer-card--premium .detailer-card__link { padding-left: 20px; }
.single-top h1 .premium-badge { font-size: 12px; padding: 4px 12px; }

/* ---- Premium CTA (sidebar) ---- */
.premium-cta-block {
  text-align: center;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
}
.premium-cta-block p { font-size: 14px; color: var(--text-2); margin-bottom: 16px; line-height: 1.5; }
.btn--premium {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  font-size: 15px;
  padding: 12px 24px;
}
.btn--premium:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217,119,6,0.3);
}

/* ---- Premium Page ---- */
.premium-hero {
  padding: 56px 0;
  background: var(--primary-gradient);
  text-align: center;
}
.premium-hero h1 { font-size: 36px; font-weight: 700; letter-spacing: -0.5px; margin-bottom: 12px; color: #ffffff; }
.premium-hero p { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 200ms, box-shadow 200ms;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-card__icon {
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  margin: 0 auto 16px;
}
.benefit-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.benefit-card p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.premium-form-section { background: var(--bg); }
.premium-form-layout { display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.premium-form-info h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; text-align: left; }
.premium-form-info > p { font-size: 16px; color: var(--text-2); margin-bottom: 28px; line-height: 1.6; }
.premium-faq { display: flex; flex-direction: column; gap: 20px; }
.faq-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.faq-item p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.premium-form-wrapper {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

/* ---- Comparison Table ---- */
.compare-table-wrap { overflow-x: auto; }
.compare-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 15px;
}
.compare-table thead th {
  padding: 20px 24px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid var(--border);
}
.compare-table thead th.compare-feature {
  text-align: left;
  font-size: 14px;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.compare-plan-label { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.compare-plan-price { font-size: 28px; font-weight: 800; color: var(--text); }
.compare-plan-price span { font-size: 14px; font-weight: 500; color: var(--text-2); }
.compare-premium .compare-plan-label { color: var(--star); }
.compare-premium .compare-plan-price { color: var(--star); }
.compare-premium {
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.compare-table tbody td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-check { text-align: center; color: var(--primary); font-size: 18px; font-weight: 700; }
.compare-check--gold { color: var(--star); }
.compare-cross { text-align: center; color: var(--text-3); font-size: 18px; }
.compare-table tbody tr td:last-child {
  background: rgba(254,243,199,0.3);
}

/* ---- Card Visual Compare ---- */
.card-compare {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.card-compare__col { flex: 1; min-width: 300px; max-width: 440px; }
.card-compare__label {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.card-compare__label--premium { color: var(--star); }
.card-compare__vs {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  flex-shrink: 0;
}
.detailer-card--demo {
  pointer-events: none;
  cursor: default;
}
.detailer-card--demo .detailer-card__link {
  cursor: default;
}

/* ---- Pricing Block ---- */
.pricing-block {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.pricing-block__info h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; text-align: left; }
.pricing-block__info > p { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.pricing-features { list-style: none; padding: 0; }
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.pricing-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card {
  background: var(--surface);
  border: 2px solid var(--star);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 5px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.3);
}
.pricing-card__name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pricing-card__amount { font-size: 56px; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-card__period { display: block; font-size: 14px; color: var(--text-2); margin-top: 4px; }
.pricing-card__permonth {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin: 16px 0 24px;
}
.pricing-card .btn { font-size: 16px; padding: 14px 28px; }
.pricing-card__features { list-style: none; padding: 0; text-align: left; margin: 20px 0 24px; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; padding: 6px 0; font-size: 14px; color: var(--text); font-weight: 500; }

/* Pricing cards side by side */
.pricing-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card--free {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.pricing-card--premium {
  transform: scale(1.03);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}
.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- Premium Page Responsive ---- */
@media (max-width: 768px) {
  .compare-table { font-size: 14px; }
  .compare-table thead th, .compare-table tbody td { padding: 10px 12px; }
  .compare-plan-price { font-size: 22px; }
  .card-compare { flex-direction: column; gap: 16px; }
  .card-compare__col { min-width: 0; max-width: 100%; width: 100%; }
  .card-compare__vs { margin: 4px 0; }
  .pricing-cards-row { grid-template-columns: 1fr; gap: 24px; }
  .pricing-card--premium { transform: none; }
  .pricing-block { grid-template-columns: 1fr; gap: 32px; }
  .pricing-block__info h2 { text-align: center; }
  .pricing-block__info > p { text-align: center; }
  .premium-form-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Gallery ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery-item { display: block; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms; }
.gallery-item:hover img { transform: scale(1.05); }

/* ---- About Page ---- */
.about-content { max-width: 760px; }
.about-content h2 { font-size: 22px; font-weight: 700; margin: 32px 0 12px; text-align: left; color: var(--text); }
.about-content h3 { font-size: 18px; font-weight: 700; margin: 24px 0 8px; }
.about-content p { font-size: 16px; line-height: 1.8; color: var(--text-2); margin-bottom: 16px; }
.about-content ul { margin: 12px 0 20px 24px; list-style: disc; }
.about-content li { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 6px; }

/* ---- Map ---- */
.map-container {
  height: 600px;
  border-radius: var(--radius-md);
  border: none;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-marker__dot {
  display: block; width: 12px; height: 12px; background: var(--primary);
  border: 2px solid #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  margin: 6px;
}
.map-marker--premium .map-marker__dot { background: var(--star); width: 14px; height: 14px; margin: 5px; }
.leaflet-popup-content a { color: var(--primary); font-weight: 600; }
.leaflet-popup-content { font-family: inherit; font-size: 14px; }

/* ---- How It Works ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}
.transparency-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-3);
  padding: 16px 24px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  max-width: 680px;
  margin: 0 auto;
}

/* ---- Social Proof Bar ---- */
.social-proof-inner {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.proof-item { text-align: center; }
.proof-item .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.proof-item .label {
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ---- Upgrade Banner ---- */
.upgrade-banner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: 0 24px;
}
.upgrade-inner {
  background: var(--primary-gradient);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: white;
  margin: 64px 0;
}
.upgrade-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.upgrade-inner p {
  font-size: 0.95rem;
  opacity: 0.85;
  max-width: 480px;
  line-height: 1.7;
}
.upgrade-right {
  text-align: center;
  flex-shrink: 0;
}
.upgrade-right .price-tag {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.upgrade-right .price-period {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 20px;
}
.btn-white {
  display: inline-block;
  padding: 14px 36px;
  background: white;
  color: var(--primary);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all 150ms;
}
.btn-white:hover {
  background: var(--primary-50);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

/* ---- Blog / Kennisbank ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 200ms;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.blog-card__cat {
  display: inline-block;
  padding: 4px 10px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-card__link {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
}
.blog-card__link:hover { text-decoration: underline; }

/* ---- FAQ Accordion ---- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 200ms;
}
.faq-item.is-open {
  border-color: var(--primary);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
  transition: color 150ms;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  font-size: 1.2rem;
  transition: transform 300ms;
  color: var(--text-3);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}
.faq-answer__inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ---- KVK Badge (cards) ---- */
.detailer-card__kvk {
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.kvk-icon {
  font-size: 0.7rem;
}

/* ---- Footer ---- */
.site-footer {
  background: #111827;
  padding: 48px 0 24px;
  color: #d1d5db;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: #ffffff; font-size: 16px; font-weight: 700; margin-bottom: 16px; }
.footer-col p { font-size: 14px; color: #9ca3af; line-height: 1.7; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #9ca3af; transition: color 200ms; }
.footer-col a:hover { color: #ffffff; }
.footer-disclaimer {
  padding: 16px 0;
  border-top: 1px solid #374151;
}
.footer-disclaimer p {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin: 0;
}
.footer-disclaimer a { color: #9ca3af; }
.footer-disclaimer a:hover { color: #d1d5db; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #374151;
}
.footer-bottom p { font-size: 13px; color: #6b7280; }

/* Legacy classes kept for backward compat */
.footer-row { display: none; }
.footer-links { display: none; }

/* ---- Admin bar offset ---- */
body.admin-bar .site-header { top: 32px; }
/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .premium-form-layout { grid-template-columns: 1fr; gap: 32px; }
  .detailer-layout { grid-template-columns: 1fr; gap: 0; }
  .detailer-main { padding-bottom: 32px; }
  .detailer-sidebar { padding-top: 24px; }
  .review-item--google { margin: 0 -8px; padding: 12px 8px; }
  /* Split layout: stack vertically on tablets */
  .archive-split {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .archive-split__left {
    flex: none;
    max-width: 100%;
    overflow-y: visible;
    padding: 20px;
  }
  .archive-split__map {
    height: 400px;
    order: -1; /* Map on top on mobile/tablet */
  }
  .archive-split .detailer-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
  .filter-sidebar {
    display: none;
    margin-bottom: 20px;
  }
  .filter-sidebar.is-open { display: block; }
  .filter-toggle { display: inline-flex; }
  .detailer-results { padding: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .page-top { padding: 32px 0; }
  .page-top h1 { font-size: 2rem; }
  .page-top__subtitle { font-size: 0.95rem; }
  .search-bar { flex-direction: column; border-radius: var(--radius-md); }
  .search-bar .field select,
  .search-bar .field input[type="text"] { border-right: none; border-bottom: 1px solid var(--border); }
  .detailer-grid { grid-template-columns: 1fr; }
  .map-container { height: 350px; }
  .archive-split__map { height: 300px; }
  .archive-split .detailer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .provinces-list { columns: 2; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .menu-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--surface);
    padding: 12px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .site-nav.is-open { display: block; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-list a {
    display: block;
    padding: 12px 0;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
  }
  .nav-list a.cta-nav {
    margin-top: 8px;
    text-align: center;
    border-radius: var(--radius-sm);
  }
  .usp-bar__list { gap: 12px; flex-direction: column; align-items: center; }
  .usp-bar__item { font-size: 0.8rem; }
  .single-top h1 { font-size: 24px; }
  .archive-top h1 { font-size: 22px; }
  .premium-hero h1 { font-size: 26px; }
  .content-section { padding: 40px 0; }
  .content-section h2 { font-size: 1.4rem; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .social-proof-inner { gap: 32px; }
  .upgrade-inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .page-top h1 { font-size: 1.6rem; }
  .provinces-list { columns: 1; }
  .usp-bar__list { gap: 8px; }
  .single-top h1 { font-size: 20px; }
  .single-top__meta { font-size: 13px; gap: 8px; }
  .breadcrumbs { font-size: 12px; gap: 4px; }
  .sidebar-block { padding: 16px; }
  .review-form-wrapper { padding: 16px; }
  .detailer-section h2 { font-size: 16px; }
}

/* ========================================
   Dashboard & Login
   ======================================== */

/* Login form */
.login-form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.login-form-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
  margin-bottom: 24px;
}
.login-form-card h2 {
  margin-bottom: 8px;
}
.login-form-card p {
  color: var(--text-2);
  margin-bottom: 20px;
}

.login-info {
  background: var(--bg);
  border-radius: 12px;
  padding: 24px 32px;
}
.login-info h3 { margin-bottom: 8px; }
.login-info ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.login-info ol li {
  margin-bottom: 4px;
  color: var(--text-2);
}
.login-info p { color: var(--text-2); margin-bottom: 12px; }

.login-error {
  background: #fef2f2;
  color: #991b1b;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* Dashboard layout */
.dashboard-header {
  margin-bottom: 24px;
  color: var(--text-2);
}
.dashboard-header a { color: var(--primary); }

.dashboard-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .dashboard-card { order: -1; }
}

/* Read-only info card */
.dashboard-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 24px;
}
.dashboard-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.dashboard-card__address {
  color: var(--text-2);
  font-size: 14px;
  margin-bottom: 8px;
}
.dashboard-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
}
.dashboard-card__note {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Dashboard form */
.dashboard-form-wrapper {
  background: var(--surface);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.dashboard-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.dashboard-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.dashboard-section h3 {
  font-size: 16px;
  margin-bottom: 12px;
}

/* Opening hours grid */
.opening-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.oh-row {
  display: grid;
  grid-template-columns: 100px 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: opacity 0.2s;
}
.oh-row--gesloten {
  opacity: 0.5;
  background: #f3f4f6;
}
.oh-day {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.oh-select {
  padding: 6px 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  min-width: 90px;
}
.oh-select:disabled {
  background: #e5e7eb;
  color: var(--text-3);
  cursor: not-allowed;
}
.oh-sep {
  font-size: 14px;
  color: var(--text-3);
  text-align: center;
}
.oh-gesloten-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  white-space: nowrap;
  margin-left: 8px;
}
.oh-gesloten-label input[type="checkbox"] {
  accent-color: var(--primary);
}

@media (max-width: 600px) {
  .oh-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
  }
  .oh-day {
    grid-column: 1;
  }
  .oh-gesloten-label {
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
  }
  .oh-select.oh-open {
    grid-column: 1;
  }
  .oh-sep {
    display: none;
  }
  .oh-select.oh-sluit {
    grid-column: 2;
  }
}

/* Section hint text */
.dashboard-section__hint {
  font-size: 13px;
  color: var(--text-3);
  margin: -4px 0 8px;
}

/* Diensten & Voertuigen checkboxes */
.dashboard-diensten {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.dashboard-dienst-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  cursor: pointer;
}

/* Photo gallery */
.dashboard-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}
.dashboard-gallery__item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
}
.dashboard-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard-gallery__remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  background: rgba(220,38,38,.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  opacity: 0;
  transition: opacity .15s;
}
.dashboard-gallery__item:hover .dashboard-gallery__remove {
  opacity: 1;
}

/* Upload zone */
.dashboard-upload-zone {
  border: 2px dashed var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: border-color .15s, background .15s;
}
.dashboard-upload-zone--active,
.dashboard-upload-zone:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.dashboard-upload-zone p {
  color: var(--text-2);
  margin: 0;
}
.upload-link {
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
}
.upload-hint {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 4px;
}

/* Claim block in sidebar */
.claim-block {
  border: 2px solid var(--primary-light);
  background: #f0fdf4;
}
.claim-block h3 { color: var(--primary-dark); }

/* ========================================
   Map-driven filter
   ======================================== */
.map-pagination-note {
  font-size: 13px;
  color: var(--text-3);
  font-style: italic;
}

/* ========================================
   Legal Pages (Privacy, Cookies, Terms)
   ======================================== */
.legal-page {
  padding: 48px 0 64px;
  background: var(--bg);
  min-height: 60vh;
}
.legal-container {
  max-width: 780px;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}
.legal-container h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.legal-updated {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-container h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-top: 32px;
  margin-bottom: 12px;
}
.legal-container h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 8px;
}
.legal-container p,
.legal-container li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
}
.legal-container ul {
  list-style: disc;
  padding-left: 24px;
  margin: 12px 0;
}
.legal-container li {
  margin-bottom: 6px;
}
.legal-container a {
  color: var(--primary);
  text-decoration: underline;
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--border);
}
.legal-table th {
  background: var(--bg);
  font-weight: 600;
  color: var(--text);
}
.legal-table td {
  color: var(--text-2);
}
@media (max-width: 640px) {
  .legal-container {
    padding: 28px 20px;
  }
  .legal-container h1 {
    font-size: 26px;
  }
}

/* ========================================
   Footer Legal Links
   ======================================== */
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 24px;
  text-align: center;
}
.footer-legal-links a {
  color: var(--text-3);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-legal-sep {
  color: rgba(255,255,255,0.2);
  margin: 0 10px;
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-banner-text p {
  color: #d1d5db;
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--primary);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn--accept {
  background: var(--primary);
  color: #fff;
}
.cookie-btn--accept:hover {
  background: var(--primary-dark);
}
.cookie-btn--decline {
  background: transparent;
  color: #d1d5db;
  border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px;
    gap: 14px;
  }
  .cookie-banner-actions {
    width: 100%;
  }
  .cookie-btn {
    flex: 1;
    padding: 12px 16px;
  }
}

/* ========================================
   Over Ons Page — Stylish layout
   ======================================== */
.page-top--compact { padding-bottom: 28px; }

.about-section { padding: 48px 0; }
.about-section--alt { background: var(--primary-50); }
.about-section__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
}

/* Intro with stats */
.about-intro {
  display: flex;
  gap: 48px;
  align-items: center;
}
.about-intro__text {
  flex: 1;
}
.about-intro__text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}
.about-intro__text p {
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-intro__stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
.about-stat {
  text-align: center;
  background: var(--primary-50);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  min-width: 100px;
}
.about-stat__number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}
.about-stat__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Steps */
.about-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-step {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about-step__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.about-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.about-step p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* Values */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.about-value__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-50);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-value h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.about-value p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* CTA block */
.about-section--cta {
  background: var(--primary-gradient);
  padding: 48px 0;
}
.about-cta {
  display: flex;
  align-items: center;
  gap: 48px;
  color: #fff;
}
.about-cta__content {
  flex: 1;
}
.about-cta__content h2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.about-cta__content p {
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-cta__list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}
.about-cta__list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  padding: 4px 0 4px 20px;
  position: relative;
}
.about-cta__list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #a7f3d0;
  font-weight: 700;
}
.about-cta .btn--primary {
  background: #fff;
  color: var(--primary-dark);
  border-color: #fff;
}
.about-cta .btn--primary:hover {
  background: #f0fdf4;
  transform: translateY(-1px);
}
.about-cta__price {
  text-align: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  backdrop-filter: blur(8px);
}
.about-cta__price-tag {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.about-cta__price-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

/* Contact cards */
.about-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-contact-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.about-contact-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.about-contact-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Loading state for grid */
.detailer-grid.is-loading {
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 200ms;
}

/* ========================================
   Blog Single & Archive (Kennisbank)
   ======================================== */
.blog-single {
  max-width: 780px;
  margin: 0 auto;
}
.blog-single__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  color: var(--text-3);
}
.blog-single__date {
  color: var(--text-3);
}
.blog-single h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}
.blog-single__featured-img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}
.blog-single__content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-2);
}
.blog-single__content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}
.blog-single__content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 8px;
  color: var(--text);
}
.blog-single__content p {
  margin-bottom: 16px;
}
.blog-single__content ul,
.blog-single__content ol {
  margin: 0 0 16px 24px;
}
.blog-single__content a {
  color: var(--primary);
  text-decoration: underline;
}
.blog-single__content img {
  max-width: 100%;
  border-radius: var(--radius-sm);
}

/* Blog navigation */
.blog-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.blog-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}
.blog-nav a:hover {
  text-decoration: underline;
}

/* Pagination */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.pagination .page-numbers,
.nav-links .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-2);
  transition: all 150ms;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
    gap: 24px;
  }
  .about-intro__stats {
    width: 100%;
    justify-content: center;
  }
  .about-steps {
    grid-template-columns: 1fr;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .about-cta {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .about-cta__list li {
    text-align: left;
  }
  .about-contact-grid {
    grid-template-columns: 1fr;
  }
  .blog-single h1 { font-size: 1.5rem; }
  .blog-nav { flex-direction: column; gap: 12px; }
}
