@import url('https://fonts.googleapis.com/css2?family=Francois+One&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Space+Grotesk:wght@300..700&family=Stack+Sans+Notch:wght@200..700&display=swap');

/* === VARIABELEN === */
:root {
  --mint: #1DB899;
  --mint-dark: #179e81;
  --mint-light: #e6f7f3;
  --mint-xlight: #f2fbf8;
  --black: #111111;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #bdbdbd;
  --gray-500: #9e9e9e;
  --gray-700: #555555;
  --danger: #d93025;
  --danger-light: #fce8e6;
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --font: 'Noto Sans', system-ui, sans-serif;
  --font-display: 'Francois One', sans-serif;
  --font-ui: 'Space Grotesk', system-ui, sans-serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: var(--white); line-height: 1.5; }

h1, h2, h3, h4 { font-family: var(--font-ui); }

.hero-text h1,
.uitkomst-product-naam,
.prijs-actueel,
.product-info h1 { font-family: var(--font-display); letter-spacing: 0.01em; }

.site-header, nav, .usp-bar, .btn,
.product-brand, .module-titel, .badge,
.quiz-stap-label, .breadcrumb,
.category-nav, .header-actions { font-family: var(--font-ui); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === HEADER === */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
  height: 92px;
}

.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo-link img {
  height: 64px;
  width: auto;
  display: block;
}

.doorbell-eye-svg {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.search-bar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(480px, 44%);
  display: flex;
}

.search-bar input {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--gray-200);
  border-right: none;
  border-radius: 6px 0 0 6px;
  font-size: 0.95rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.15s;
}

.search-bar input:focus {
  border-color: var(--mint);
}

.search-bar button {
  padding: 0.6rem 1.1rem;
  background: var(--mint);
  color: var(--white);
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s;
}

.search-bar button:hover {
  background: var(--mint-dark);
}

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray-700);
  flex-shrink: 0;
  margin-left: auto;
}

.header-actions a:hover {
  color: var(--mint-dark);
}

.cart-badge {
  position: relative;
}

.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--gray-700);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  border: 1.5px solid var(--gray-300);
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
}

.cart-btn:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
}

.cart-btn svg {
  flex-shrink: 0;
}

/* === USP BALK === */
.usp-bar {
  background: var(--mint);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.usp-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.usp-item .check { font-weight: bold; }

.usp-item a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.85;
  font-size: 0.75rem;
}

/* === CATEGORIE NAV === */
.category-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.88rem;
}

.category-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0;
  overflow-x: auto;
}

.category-nav a {
  padding: 0.65rem 1rem;
  white-space: nowrap;
  color: var(--gray-700);
  border-bottom: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.category-nav a:hover,
.category-nav a.active {
  color: var(--mint-dark);
  border-bottom-color: var(--mint);
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--mint-light) 0%, var(--white) 60%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-text .tagline {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  max-width: 440px;
}

.hero-text .fineprint {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--mint);
  color: var(--white);
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.15s;
}

.hero-cta:hover {
  background: var(--mint-dark);
  color: var(--white);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mint-dark);
  font-size: 0.95rem;
  font-weight: 500;
  margin-left: 1rem;
  border-bottom: 1px solid var(--mint);
  padding-bottom: 1px;
}

/* === CATEGORIE KAARTEN === */
.section {
  padding: 2.5rem 0;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.category-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1.25rem;
  background: var(--white);
  transition: box-shadow 0.15s, border-color 0.15s;
  cursor: pointer;
}

.category-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-color: var(--mint);
}

.category-card .cat-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.category-card .cat-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.category-card .cat-desc {
  font-size: 0.83rem;
  color: var(--gray-700);
}

/* === MERKENBALK === */
.brands-bar {
  background: var(--gray-100);
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.brands-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-item {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: var(--white);
  transition: border-color 0.15s;
}

.brand-item:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
}

/* === PRODUCT KAARTEN === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.15s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.product-card-img {
  background: var(--gray-100);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.product-card-img img.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 0.5rem;
}

.doorbell-svg {
  width: 70px;
  height: 120px;
}

.product-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.product-naam {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--black);
}

.product-tagline {
  font-size: 0.82rem;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 0.75rem;
  flex: 1;
}

.product-prijs {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.product-prijs-fineprint {
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.datahonger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--gray-700);
  margin-bottom: 0.9rem;
}

.datahonger-dots {
  display: flex;
  gap: 3px;
}

.datahonger-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
}

.datahonger-dot.filled {
  background: var(--mint);
}

.datahonger-dot.filled.hoog {
  background: var(--danger);
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.2rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-ui);
  border: none;
}

.btn-primary {
  background: var(--mint);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--mint-dark);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--mint-dark);
  border: 1.5px solid var(--mint);
}

.btn-outline:hover {
  background: var(--mint-light);
}

.btn-block {
  display: block;
  width: 100%;
}

/* === FOOTER === */
footer {
  background: var(--black);
  color: #ccc;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.footer-col p, .footer-col li {
  color: #888;
  line-height: 2;
  font-size: 0.82rem;
}

.footer-col a {
  color: #888;
}

.footer-col a:hover {
  color: var(--mint);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 1rem 1.5rem 0;
  border-top: 1px solid #2a2a2a;
  color: #555;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.7rem;
  color: #444;
  max-width: 700px;
  line-height: 1.6;
}

/* === PAGINATITEL SECTIE === */
.page-header {
  background: var(--gray-100);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
}

.page-header p {
  color: var(--gray-700);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

/* === QUIZ === */
.quiz-wrap {
  max-width: 720px;
  margin: 3rem auto;
}

.quiz-progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.quiz-progress-step {
  height: 4px;
  flex: 1;
  background: var(--gray-200);
  border-radius: 2px;
  transition: background 0.3s;
}

.quiz-progress-step.done {
  background: var(--mint);
}

.quiz-vraag {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.quiz-stap-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.quiz-opties {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.quiz-optie {
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: left;
  background: var(--white);
  font-family: var(--font-ui);
  width: 100%;
}

.quiz-optie:hover {
  border-color: var(--mint);
  background: var(--mint-xlight);
}

.quiz-optie.selected {
  border-color: var(--mint);
  background: var(--mint-light);
}

.quiz-optie-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

.quiz-optie-desc {
  font-size: 0.83rem;
  color: var(--gray-700);
  margin-top: 0.2rem;
}

/* === QUIZ UITKOMST === */
.quiz-uitkomst {
  display: none;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.uitkomst-header {
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.uitkomst-header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.uitkomst-product-naam {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.uitkomst-tagline {
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.dataprofiel {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.dataprofiel h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.dataprofiel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
}

.dataprofiel-item:last-child {
  border-bottom: none;
}

.dataprofiel-item .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.dataprofiel-item.altijd {
  color: var(--gray-700);
}

.dataprofiel-item.extra {
  color: var(--danger);
}

.altijd-note {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--gray-200);
  font-style: italic;
}

/* === VERGELIJKINGSTABEL === */
.vergelijk-wrap {
  overflow-x: auto;
  margin: 2rem 0;
}

.vergelijk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 700px;
}

.vergelijk-table th {
  background: var(--gray-100);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: 2px solid var(--gray-200);
  white-space: nowrap;
}

.vergelijk-table th.merk-header {
  text-align: center;
  font-size: 0.92rem;
}

.vergelijk-table td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.vergelijk-table tr:hover td {
  background: var(--mint-xlight);
}

.vergelijk-table td.kenmerk {
  font-weight: 600;
  color: var(--black);
  background: var(--gray-100);
  min-width: 160px;
}

.vergelijk-table td.prijs-rij {
  font-weight: 700;
  font-size: 1.05rem;
}

.vergelijk-table td.doorgestreept {
  text-decoration: line-through;
  color: var(--gray-500);
}

.vergelijk-table .ja { color: var(--danger); font-weight: 600; }
.vergelijk-table .nee { color: var(--mint-dark); }
.vergelijk-table .onbekend { color: var(--gray-500); font-style: italic; }
.vergelijk-table .betwist { color: var(--warning); font-weight: 600; }

.datahonger-bar {
  display: flex;
  gap: 3px;
}

.datahonger-bar span {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: var(--gray-200);
}

.datahonger-bar span.vol {
  background: var(--mint);
}

.datahonger-bar span.vol.rood {
  background: var(--danger);
}

.vergelijk-footnotes {
  font-size: 0.78rem;
  color: var(--gray-700);
  margin-top: 1rem;
  line-height: 2;
}

/* === PRODUCTPAGINA === */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding: 2.5rem 0;
  align-items: start;
}

.product-gallery {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.product-gallery .doorbell-svg {
  width: 100px;
  height: 170px;
}

.product-gallery img.product-img {
  max-height: 260px;
  width: 100%;
  object-fit: contain;
}

.product-info h1 {
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.product-info .merk-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.sterren {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.sterren .stars {
  color: var(--warning);
  font-size: 1rem;
  letter-spacing: 1px;
}

.product-slogan {
  font-style: italic;
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--mint);
}

/* === PRIJS BOX === */
.prijs-box {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.prijs-actueel {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1;
}

.prijs-origineel {
  font-size: 0.88rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
}

.prijs-bespaart {
  font-size: 0.82rem;
  color: var(--mint-dark);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.module-separator {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 1rem 0;
}

.module-titel {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.kortingsmodule {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.kortingsmodule:hover {
  border-color: var(--mint);
  background: var(--mint-xlight);
}

.kortingsmodule.actief {
  border-color: var(--mint);
  background: var(--mint-light);
}

.kortingsmodule.niveau-hoog:hover,
.kortingsmodule.niveau-hoog.actief {
  border-color: var(--danger);
  background: var(--danger-light);
}

.kortingsmodule-header {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.kortingsmodule-header input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--mint);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.kortingsmodule.niveau-hoog input[type="checkbox"] {
  accent-color: var(--danger);
}

.module-naam {
  font-size: 0.88rem;
  font-weight: 600;
  flex: 1;
}

.module-korting {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mint-dark);
  flex-shrink: 0;
}

.kortingsmodule.niveau-hoog .module-korting {
  color: var(--danger);
}

.module-beschrijving {
  font-size: 0.78rem;
  color: var(--gray-700);
  margin-top: 0.35rem;
  padding-left: 1.6rem;
}

.module-fineprint {
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
  padding-left: 1.6rem;
  font-style: italic;
}

.warning-badge {
  font-size: 0.72rem;
  color: var(--danger);
  background: var(--danger-light);
  border: 1px solid var(--danger);
  border-radius: 4px;
  padding: 0.2rem 0.5rem;
  margin-top: 0.4rem;
  margin-left: 1.6rem;
  display: none;
}

.kortingsmodule.niveau-hoog.actief .warning-badge {
  display: inline-block;
}

/* === PRODUCT SPECS === */
.product-tabs {
  margin-top: 2rem;
  border-bottom: 2px solid var(--gray-200);
  display: flex;
  gap: 0;
}

.product-tab {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: var(--font);
  margin-bottom: -2px;
}

.product-tab.active, .product-tab:hover {
  color: var(--mint-dark);
  border-bottom-color: var(--mint);
}

.product-tab-content {
  display: none;
  padding: 1.5rem 0;
  animation: fadeIn 0.2s ease;
}

.product-tab-content.active {
  display: block;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.specs-table td {
  padding: 0.6rem 0.5rem;
}

.specs-table td:first-child {
  color: var(--gray-700);
  width: 40%;
}

.specs-table td:last-child {
  font-weight: 500;
}

/* === PRIVACY FEITEN === */
.privacy-feiten {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-feit {
  background: var(--warning-light);
  border-left: 4px solid var(--warning);
  padding: 0.75rem 1rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.88rem;
}

.privacy-feit .bron {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
}

/* === KLEINE LETTERTJES === */
.kleine-lettertjes {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.kleine-lettertjes-toggle {
  font-size: 0.82rem;
  color: var(--gray-500);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.kleine-lettertjes-toggle:hover {
  color: var(--gray-700);
}

.kleine-lettertjes-inhoud {
  display: none;
  font-size: 0.72rem;
  color: var(--gray-500);
  line-height: 1.8;
  margin-top: 1rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.kleine-lettertjes-inhoud.open {
  display: block;
}

/* === REVIEWS === */
.reviews {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.review-auteur {
  font-weight: 600;
  font-size: 0.88rem;
}

.review-sterren {
  color: var(--warning);
  font-size: 0.85rem;
}

.review-tekst {
  font-size: 0.85rem;
  color: var(--gray-700);
}

/* === OOK BEKEKEN === */
.ook-bekeken {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

/* === BREADCRUMB === */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 0.75rem 0;
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.breadcrumb a {
  color: var(--mint-dark);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  color: var(--gray-400);
}

/* === BADGES === */
.badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-mint { background: var(--mint-light); color: var(--mint-dark); }
.badge-danger { background: var(--danger-light); color: var(--danger); }
.badge-warning { background: var(--warning-light); color: #92400e; }

/* === KEUZEHULP LANDING === */
.keuzehulp-intro {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 1.5rem 1rem;
}

.keuzehulp-intro h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.keuzehulp-intro p {
  color: var(--gray-700);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.keuzehulp-intro .fineprint {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ook-bekeken { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner { gap: 0.75rem; }
  .cart-btn span { display: none; }
  .header-actions { display: none; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .ook-bekeken { grid-template-columns: 1fr 1fr; }
  .hero-text h1 { font-size: 1.8rem; }
  .usp-bar-inner { gap: 1rem; }
}

/* === VERGELIJKINGSTABEL: vlaggen & logo's === */

.vlag-tabel-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  border-radius: 2px;
  display: block;
  margin: 0 auto;
}

.merk-logo-tabel {
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1);
  display: block;
  margin: 0 auto;
}

/* === PRODUCTPAGINA: Made-in badge === */

.made-in-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem;
  font-family: var(--font-ui);
  color: var(--gray-700);
  margin-top: 0.75rem;
}

.vlag-img {
  height: 16px;
  width: auto;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

/* === KEUZEHULP: terugknop & resultaatfoto === */

.quiz-terug-btn {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.uitkomst-product-afbeelding {
  width: 140px;
  height: 140px;
  margin: 1rem auto;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.uitkomst-product-afbeelding .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

/* === CHECKOUT === */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}

.checkout-product-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.checkout-product-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-product-img .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.4rem;
}

.checkout-product-naam {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.checkout-adviesprijs {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
}

.postcode-korting-sectie {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.postcode-korting-sectie h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.postcode-uitleg {
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 1rem;
}

.postcode-input-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.postcode-input {
  width: 100px;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: var(--font-ui);
  letter-spacing: 0.1em;
  text-align: center;
}

.postcode-input:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(29, 184, 153, 0.15);
}

.postcode-resultaat-box {
  background: var(--mint-light);
  border: 1px solid var(--mint);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
}

.postcode-korting-uitleg {
  font-size: 0.92rem;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.postcode-korting-smallprint {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin: 0;
}

.postcode-fout {
  color: var(--danger);
  font-size: 0.88rem;
  margin: 0.5rem 0 0;
}

.kaart-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.kaart-label {
  padding: 0.75rem 1rem 0.5rem;
  font-size: 0.85rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--gray-700);
  background: white;
  border-bottom: 1px solid var(--gray-200);
}

#kaart {
  height: 300px;
  width: 100%;
}

.kaart-smallprint {
  padding: 0.6rem 1rem;
  font-size: 0.75rem;
  color: var(--gray-500);
  background: white;
  border-top: 1px solid var(--gray-200);
  margin: 0;
}

.checkout-prijs-box {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.5rem;
  position: sticky;
  top: 1rem;
}

.checkout-prijs-label {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.checkout-prijs-actueel {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.checkout-korting-badge {
  background: var(--mint);
  color: white;
  font-size: 0.78rem;
  font-family: var(--font-ui);
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 0.5rem;
}

/* === BESTELLING BEVESTIGING === */

.bestelling-bevestiging {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.bestelling-icoon {
  width: 64px;
  height: 64px;
  background: var(--mint);
  color: white;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.bestelling-smallprint {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  text-align: left;
  font-size: 0.82rem;
  color: var(--gray-600);
}

.bestelling-smallprint p {
  margin: 0 0 0.75rem;
}

.bestelling-smallprint p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-prijs-box {
    position: static;
  }
}

/* === DOORBELL BLINK ANIMATION === */

@keyframes doorbell-blink {
  0%, 93%, 100% { transform: scaleY(1); }
  97% { transform: scaleY(0.05); }
}

.doorbell-blink-group {
  transform-box: fill-box;
  transform-origin: center;
  animation: doorbell-blink 5s ease-in-out infinite;
}

/* === PRODUCT CAROUSEL === */

.carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
}

.carousel-track .product-card {
  flex-shrink: 0;
}
