﻿:root{
  --bg: #f9e8d8;
  --card: #ffffff;
  --text: #2c3e50;
  --text-strong: #0f172a;
  --muted: #64748b;
  --border: #e5e7eb;
  --surface-soft: #f8fafc;
  --surface-hover: #f1f5f9;
  --surface-soft-2: #f9fafb;
  --accent: #2c3e50;
  --accent-strong: #1a2d3d;
  --accent-soft: #eef4fb;
  --accent-border: #dbe3ec;
  --warm-soft: #f6e6d6;
  --warm-accent: #e8845c;
  --warm-accent-border: #d66d3d;
  --bg-rgb: 249, 232, 216;
  --accent-rgb: 44, 62, 80;
  --shadow: 0 10px 30px rgba(2, 6, 23, 0.08);
  --radius: 16px;
}
html{
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
*{ box-sizing: border-box; }
body{
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(56rem 36rem at 8% 6%, rgba(232, 132, 92, 0.34), transparent 64%),
    radial-gradient(48rem 30rem at 94% 9%, rgba(44, 62, 80, 0.18), transparent 70%),
    radial-gradient(46rem 28rem at 52% 24%, rgba(255, 214, 176, 0.26), transparent 68%),
    radial-gradient(44rem 26rem at 50% 44%, rgba(232, 132, 92, 0.18), transparent 70%),
    radial-gradient(38rem 24rem at 28% 58%, rgba(255, 202, 156, 0.18), transparent 72%),
    radial-gradient(52rem 30rem at 74% 60%, rgba(44, 62, 80, 0.10), transparent 74%),
    radial-gradient(66rem 40rem at 54% 84%, rgba(232, 132, 92, 0.22), transparent 74%),
    linear-gradient(180deg, rgba(255, 248, 236, 0.82), rgba(249, 232, 216, 0.18));
  background-repeat: no-repeat;
}

img,
svg,
video,
canvas{
  max-width: 100%;
  height: auto;
}

body.page-transitioning{
  overflow: hidden;
}

body > main{
  flex: 1 0 auto;
}

body main{
  transition: opacity 280ms ease, transform 280ms ease;
}

body.page-transitioning main{
  opacity: 0.72;
  transform: translateY(8px);
}

.page-transition-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(var(--bg-rgb), 0.78);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.page-transition-overlay::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  margin-top: -23px;
  border-radius: 50%;
  border: 4px solid rgba(var(--accent-rgb), 0.22);
  border-top-color: var(--accent);
  animation: page-spin 0.7s linear infinite;
}

.page-transition-overlay.active{
  opacity: 1;
}

@keyframes page-spin{
  to { transform: rotate(360deg); }
}

.container{
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--card);
  border-bottom: 1px solid var(--border);
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand{
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}

.brand-name{
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 15px;
  font-weight: 800;
}

.brand-logo{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-image: url("/images/icoontje-4.png?v=2");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  border: none;
  box-shadow: none;
  display: inline-block;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
}

.mobile-nav-toggle{
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-strong);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-toggle:hover{
  background: var(--surface-soft);
}

.mobile-nav-toggle:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--accent) 45%, white);
  outline-offset: 2px;
}

.nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.nav-link:hover{
  background: var(--surface-soft);
  border-color: color-mix(in srgb, var(--accent) 24%, var(--border));
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.nav-link:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--accent) 45%, white);
  outline-offset: 2px;
}

/* Hero / layout */
.hero{
  padding: 34px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.hero-header{
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 18px;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}

.hero-text h1{
  margin: 0;
  font-size: clamp(38px, 2.4vw + 18px, 54px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: none;
}

.hero-title-line{
  display: block;
  white-space: nowrap;
}

.hero-subtitle{
  margin: 8px 0 0 0;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.hero-images{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  margin-bottom: -54px;
  padding-right: 8px;
  z-index: 4;
  pointer-events: none;
}

.dog-image{
  width: min(100%, 420px);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.16));
}

.dog-image-main{
  transform: translateY(8px);
}

.hero-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  position: relative;
  z-index: 2;
}

.hero-card h1{
  margin: 0 0 8px;
  font-size: 28px;
}

.muted{
  margin: 0 0 18px;
  color: var(--muted);
}

/* Form */
.form{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 14px;
}

.field{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label{
  font-weight: 700;
  font-size: 14px;
}

select,
input[type="text"]{
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 0 12px;
  background: var(--card);
  font-size: 15px;
  outline: none;
}

select:focus,
input[type="text"]:focus{
  border-color: var(--accent-border);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.16);
}

.combo-box{
  position: relative;
  display: grid;
  z-index: 1;
}

.combo-box:focus-within{
  z-index: 30;
}

.combo-suggestions{
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 280px;
  overflow-y: auto;
  padding: 6px;
  gap: 4px;
}

.combo-suggestions[hidden]{
  display: none;
}

.combo-suggestions:not([hidden]){
  display: grid;
}

.combo-suggestion{
  text-align: left;
  border: 1px solid transparent;
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
  min-height: 38px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 14px;
}

.combo-suggestion:hover,
.combo-suggestion.is-active{
  background: var(--surface-soft);
  border-color: var(--accent-border);
}

.btn{
  grid-column: span 4;
  height: 46px;
  border: 0;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn:hover{ opacity: 0.92; }


/* Side placeholders */
.side{
  display: grid;
  gap: 18px;
}

.img-placeholder{
  height: 220px;
  border-radius: var(--radius);
  background: var(--accent); /* zachte donkerblauw */
  box-shadow: var(--shadow);
  border: 1px solid var(--accent-strong);
}

/* Logos Section */
.logos-section{
  margin: 60px 0;
}

.logos-section h2{
  margin: 0 0 28px 0;
  font-size: 24px;
  color: var(--text);
}

.logos-grid{
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.logo-box{
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
}

.partner-logo{
  width: 88%;
  height: 88%;
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.partner-logo--figo,
.partner-logo--ohra,
.partner-logo--unive{
  width: 82%;
  height: 82%;
  max-width: 82%;
  max-height: 82%;
}

/* Homepage SEO breed links */
.popular-breeds-home{
  margin: -8px 0 60px;
  background: color-mix(in srgb, var(--card) 88%, white);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.popular-breeds-home__header h2{
  margin: 0;
  font-size: 24px;
  color: var(--text);
}

.popular-breeds-home__header .muted{
  margin: 8px 0 0;
}

.popular-breeds-home__list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
}

.popular-breeds-home__list li{
  margin: 0;
}

.popular-breeds-home__list a{
  display: block;
  text-decoration: none;
  color: var(--text);
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  line-height: 1.3;
  transition: border-color 140ms ease, background-color 140ms ease, transform 140ms ease;
}

.popular-breeds-home__list a:hover{
  background: rgba(255,255,255,0.72);
  border-color: var(--accent-border);
  transform: translateY(-1px);
}

.popular-breeds-home__footer{
  margin: 14px 0 0;
}

.popular-breeds-home__footer a{
  color: var(--accent);
  font-weight: 800;
}

/* Homepage long-form info content */
.home-guide{
  margin: 0 0 60px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, black) 0%,
    color-mix(in srgb, var(--accent) 98%, #102234) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 18px 38px rgba(20, 28, 38, 0.22);
  padding: 28px 30px;
}

.home-guide__header{
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.home-guide__header h2{
  margin: 0;
  font-size: clamp(26px, 1.8vw + 16px, 38px);
  line-height: 1.1;
  color: #fff;
}

.home-guide__lead{
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
  max-width: 82ch;
}

.home-guide__body{
  display: grid;
  gap: 26px;
  margin-top: 20px;
}

.home-guide__section + .home-guide__section{
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-guide__section h3{
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 0.5vw + 19px, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-guide__section h4{
  margin: 4px 0 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

.home-guide__section > h4{
  margin-top: 18px;
  font-size: clamp(22px, 0.5vw + 19px, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.home-guide__section p{
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.72;
  max-width: 84ch;
}

.home-guide__section ul{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
  max-width: 84ch;
}

.home-guide__section li{
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.home-guide__section li::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 0.5em;
  background: color-mix(in srgb, var(--warm-accent) 75%, white);
}

.home-guide__bullet-list{
  margin-top: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 18px;
}

.home-guide__topic-list{
  margin-top: 18px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-guide__topic{
  padding: 16px 2px 14px;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.home-guide__topic + .home-guide__topic{
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-guide__topic h4{
  position: relative;
  padding-left: 14px;
}

.home-guide__topic h4::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--warm-accent) 80%, white);
}

.home-guide__topic ul{
  margin-top: 10px;
}

/* FAQ Section */
.faq-section{
  margin: 60px 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 18px 22px;
  overflow: hidden;
}

.faq-header{
  padding: 0 0 8px;
}

.faq-eyebrow{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.faq-header h2{
  margin: 0;
  font-size: clamp(26px, 1.9vw + 14px, 36px);
  line-height: 1.1;
  color: var(--text);
}

.faq-intro{
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.faq-item{
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition: background-color 180ms ease;
}

.faq-header + .faq-item{
  border-top: 1px solid var(--border);
}

.faq-item + .faq-item{
  border-top: 1px solid var(--border);
}

.faq-item:hover{
  background: rgba(255,255,255,0.35);
}

.faq-item[open]{
  background: rgba(255,255,255,0.2);
}

.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 40px 16px 0;
  margin: 0;
  position: relative;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker{
  display: none;
}

.faq-item summary::before,
.faq-item summary::after{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-item summary::after{
  transform: translateY(-50%) rotate(90deg);
}

.faq-item[open] summary::after{
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.5);
}

.faq-item summary:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--accent) 45%, white);
  outline-offset: -2px;
}

.faq-answer{
  border-top: 1px solid var(--border);
  padding: 16px 0 18px;
  background: transparent;
}

.faq-answer p{
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-answer p + p{
  margin-top: 10px;
}

.faq-answer ul{
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.faq-answer li{
  margin: 0;
  line-height: 1.5;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.faq-answer li::before{
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 70%, white);
}

@media (max-width: 680px){
  .popular-breeds-home{
    padding: 14px 14px;
  }

  .popular-breeds-home__list{
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-guide{
    padding: 18px 14px;
  }

  .home-guide__header h2{
    font-size: 24px;
  }

  .home-guide__section h3{
    font-size: 19px;
  }

  .about-title-shell{
    padding: 18px 16px;
  }

  .about-hero--breed-hub{
    padding: 16px 14px;
  }

  .about-body--breed-hub .breed-grid{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-guide__topic{
    padding: 14px 0 12px;
  }

  .home-guide__bullet-list{
    grid-template-columns: 1fr;
    padding: 12px 12px;
  }

  .faq-section{
    padding: 16px 14px;
  }

  .faq-header{
    padding: 0 0 6px;
  }

  .faq-item summary{
    padding: 14px 32px 14px 0;
    font-size: 15px;
  }

  .faq-answer{
    padding: 14px 0;
  }
}

/* Compare page card */
.page-card{
  margin: 34px 0 60px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.insurers-layout{
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(220px, 245px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  overflow: hidden;
}

.results-pane{
  min-width: 0;
}

.insurers-layout > .page-card,
.results-pane > .page-card{
  margin: 0 0 60px;
}

.sidebar-stack{
  position: static;
  top: auto;
  display: grid;
  gap: 12px;
  align-self: start;
  width: 100%;
  min-width: 0;
}

.profile-card,
.filters-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: hidden;
}

.profile-filter-bar{
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
}

.profile-actions{
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.profile-actions .profile-cancel-btn{
  order: 0;
}

.profile-actions .profile-edit-btn{
  order: 1;
}

.profile-filter-summary{
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--text);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: opacity 220ms ease, transform 220ms ease;
}

.profile-filter-summary.is-updating{
  opacity: 0.35;
  transform: translateY(3px);
}

.profile-filter-line{
  display: grid;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 7px 9px;
}

.profile-filter-label{
  font-weight: 800;
}

.profile-filter-value{
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.profile-edit-btn,
.profile-cancel-btn{
  height: 34px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}

.profile-edit-btn{
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.profile-cancel-btn{
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
}

.filter-group{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
}

.filter-group h3{
  margin: 0;
  font-size: 14px;
}

.filter-group label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.filter-group input[type="radio"]{
  accent-color: var(--accent);
}

.filters-card select,
.filters-card input[type="text"],
.profile-card select,
.profile-card input[type="text"]{
  width: 100%;
  max-width: 100%;
}

.field input[type="text"] + select,
.profile-filter-line input[type="text"] + select{
  margin-top: 6px;
}

/* Verzekeraars lijst */
.results-header{
  margin: 0 0 14px;
}

.results-title{
  margin: 0;
  font-size: clamp(24px, 2vw + 14px, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.results-meta{
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.35;
  color: var(--muted);
}

.results-meta strong{
  color: var(--text);
  font-weight: 800;
}

.results-disclaimer{
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
}

.insurer-list{
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.formula-grid{
  display: grid;
  gap: 14px;
}

.formula-section-indicator{
  margin: 2px 0 0;
  padding: 9px 12px;
  border: 1px dashed var(--border);
  border-radius: 10px;
  background: var(--surface-soft-2);
  color: var(--text-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.formula-section-indicator--remaining{
  border-style: solid;
  background: var(--warm-soft);
}

.formula-card{
  border: 3px solid var(--accent);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.formula-card--cheapest .formula-prop{
  font-weight: 700;
}

.formula-card--cheapest .formula-prop strong{
  font-weight: 900;
}

.formula-card--cheapest .formula-package-title{
  font-weight: 900;
}

.formula-card-row{
  display: flex;
  align-items: stretch;
  min-height: 110px;
}

.formula-brand{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 148px;
  width: 148px;
  min-width: 148px;
  border-right: 1px solid var(--border);
  background: var(--card);
  padding: 8px;
}

.formula-logo-shell{
  width: 112px;
  max-width: 112px;
  height: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  border-radius: 12px;
  background: var(--card);
  overflow: hidden;
  margin: 0 auto;
}

.formula-logo{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.formula-logo[data-insurer="asr"]{
  max-width: 100%;
}

.formula-logo[data-insurer="ohra"]{
  max-width: 100%;
}

.formula-logo[data-insurer="petsecur"]{
  max-height: 100%;
}

.formula-card-title{
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.formula-meta{
  display: grid;
  gap: 6px;
  align-content: center;
  padding: 10px;
  width: 100%;
  flex: 1;
}

.formula-package-title{
  margin: 0 0 2px 0;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--text-strong);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.formula-prop{
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  font-size: 14px;
  color: var(--text);
}

.formula-details-toggle{
  margin-top: 2px;
  height: 34px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.formula-action{
  min-width: 150px;
  border-left: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: var(--warm-soft);
}

.formula-price-value{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-strong);
  line-height: 1;
}

.formula-price-currency{
  font-size: 18px;
  font-weight: 800;
}

.formula-price-amount{
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  letter-spacing: 0.2px;
}

.formula-price-whole{
  font-size: 28px;
}

.formula-price-decimal{
  font-size: 16px;
  font-weight: 800;
  color: var(--muted);
}

.formula-price-per{
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: lowercase;
  letter-spacing: 0.3px;
}

.formula-view-btn{
  height: 34px;
  padding: 0 14px;
  border: 1px solid var(--warm-accent-border);
  border-radius: 10px;
  background: var(--warm-accent);
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
}

.formula-view-btn:disabled{
  opacity: 0.6;
  cursor: not-allowed;
}

.formula-details{
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  border-top: 0;
  background: transparent;
  pointer-events: none;
  transition: max-height 320ms ease, opacity 240ms ease, transform 300ms ease;
}

.formula-card.is-open .formula-details{
  max-height: 6000px;
  opacity: 1;
  transform: translateY(0);
  border-top: 1px solid var(--border);
  background: var(--surface-soft-2);
  pointer-events: auto;
}

.formula-details-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
}

.formula-details-columns.formula-details-columns--three{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.formula-details-col{
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 10px;
}

.formula-details-col h4{
  margin: 0 0 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.formula-details-col--insured h4{
  color: #216b4a;
}

.formula-details-col--additional h4{
  color: var(--accent);
}

.formula-details-col--excluded h4{
  color: #9a3d32;
}

.coverage-header-icon{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}

.coverage-header-icon--insured{
  color: #216b4a;
  background: #e9f6ef;
}

.coverage-header-icon--additional{
  color: var(--accent);
  background: var(--accent-soft);
}

.coverage-header-icon--excluded{
  color: #9a3d32;
  background: #fdecea;
}

.coverage-accordion{
  display: grid;
  gap: 0;
}

.coverage-empty{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.coverage-item{
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.coverage-item + .coverage-item{
  border-top: 1px solid var(--border);
}

.coverage-item-trigger{
  width: 100%;
  border: 0;
  background: transparent;
  list-style: none;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 9px 2px;
  cursor: pointer;
  user-select: none;
  text-align: left;
}

.coverage-item-trigger:hover{
  background: transparent;
}

.coverage-item-trigger:focus-visible{
  outline: 2px solid rgba(var(--accent-rgb), 0.35);
  outline-offset: 2px;
  border-radius: 8px;
}

.coverage-item.is-open .coverage-item-trigger{
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.coverage-item-icon{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.coverage-item-icon--insured{
  color: #216b4a;
  background: #e9f6ef;
}

.coverage-item-icon--additional{
  color: var(--accent);
  background: var(--accent-soft);
}

.coverage-item-icon--excluded{
  color: #9a3d32;
  background: #fdecea;
}

.coverage-item-title{
  min-width: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.coverage-item-chevron{
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
  transition: transform 160ms ease;
}

.coverage-item.is-open .coverage-item-chevron{
  transform: rotate(45deg);
}

.coverage-item-body{
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 220ms ease, opacity 180ms ease;
}

.coverage-item.is-open .coverage-item-body{
  grid-template-rows: 1fr;
  opacity: 1;
}

.coverage-item-body-inner{
  min-height: 0;
  overflow: hidden;
  padding: 0 2px 0 28px;
}

.coverage-item.is-open .coverage-item-body-inner{
  padding: 9px 2px 11px 28px;
}

.coverage-item-body-inner{
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.formula-details-col li{
  line-height: 1.35;
}

.formula-pagination{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.formula-page-indicator{
  font-weight: 800;
  color: var(--muted);
  margin-right: 6px;
}

.formula-page-btn{
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  border-radius: 10px;
  min-width: 36px;
  height: 36px;
  font-weight: 700;
  cursor: pointer;
}

.formula-page-btn.active{
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Over ons grote balk */
.about-hero{
  margin: 34px 0 60px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}

.about-hero--plain{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.about-hero--inverted{
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, black) 0%,
    color-mix(in srgb, var(--accent) 98%, #102234) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 38px rgba(20, 28, 38, 0.22);
}

.about-hero--inverted h1{
  color: #fff;
}

.about-hero--inverted > .muted,
.about-hero--inverted > .muted a{
  color: rgba(255, 255, 255, 0.84);
}

.about-hero--breed-hub{
  padding: 24px;
}

.about-hero h1{
  margin: 0 0 10px;
  font-size: 32px;
}

.about-banner{
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 10px 24px rgba(20, 28, 38, 0.08);
}

.about-banner img{
  display: block;
  width: 100%;
  height: auto;
}

.about-title-shell{
  padding: 22px 24px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.about-title-shell--card{
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.about-title-shell--card h1{
  color: var(--text);
}

.about-title-shell .muted{
  margin: 0 0 10px;
}

.about-title-shell h1{
  margin: 0;
}

.about-title-shell--blog .muted{
  margin: 10px 0 0;
}

.about-title-shell--dark{
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, black) 0%,
    color-mix(in srgb, var(--accent) 98%, #102234) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 34px rgba(20, 28, 38, 0.20);
}

.about-title-shell--dark h1{
  color: #ffffff;
}

.about-title-shell--dark .muted,
.about-title-shell--dark .muted a{
  color: rgba(255, 255, 255, 0.82);
}

.about-title-shell--dark .muted a{
  font-weight: 600;
}

.breed-card{
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 12px 12px 14px;
  gap: 10px;
  overflow: hidden;
  align-items: center;
}

.breed-card h2{
  margin: 0;
  padding: 0 4px;
  width: 100%;
  text-align: center;
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
}

.breed-card-media{
  margin: 0;
  min-height: 232px;
  padding: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.breed-card-image{
  display: block;
  width: 100%;
  height: 232px;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 38%;
  margin: auto;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(44, 62, 80, 0.10);
}

.breed-card-link{
  margin: auto auto 0;
}

.about-body--breed-hub{
  margin-top: 0;
  padding: 2px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-body--breed-hub .breed-grid{
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.about-body--breed-hub .breed-card{
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.about-body--breed-hub .breed-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(20, 28, 38, 0.14);
  border-color: color-mix(in srgb, var(--border) 78%, white);
}

.about-body{
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: var(--text-strong);
  line-height: 1.7;
}

.about-body--flow{
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: none;
}

.about-body--flow-card{
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, black) 0%,
    color-mix(in srgb, var(--accent) 98%, #102234) 100%
  );
  box-shadow: 0 16px 34px rgba(20, 28, 38, 0.20);
}

.breed-article-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  justify-items: stretch;
}

.breed-article-media{
  margin: 0;
  width: min(100%, 430px);
  max-width: 430px;
  justify-self: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.breed-article-image{
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 14px;
  border: 0;
  box-shadow: none;
  filter: none;
}

.breed-article-content{
  min-width: 0;
  width: 100%;
}

@media (min-width: 901px){
  .breed-article-layout{
    grid-template-columns: minmax(250px, 430px) minmax(0, 1fr);
    column-gap: 24px;
    align-items: start;
    justify-items: stretch;
  }

  .breed-article-media{
    grid-column: 1;
    justify-self: start;
    max-width: 430px;
    margin-top: 0;
  }

  .breed-article-content{
    grid-column: 2;
    width: 100%;
  }
}

@media (min-width: 700px) and (max-width: 900px){
  .breed-article-layout{
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
    justify-items: stretch;
  }

  .breed-article-media{
    grid-column: 1;
    justify-self: start;
    max-width: 320px;
  }

  .breed-article-content{
    grid-column: 2;
    width: 100%;
  }

  .breed-article-image{
    aspect-ratio: 4 / 5;
    object-position: center 35%;
  }
}

.about-body--flow h2{
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(22px, 0.5vw + 19px, 26px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.about-body--flow h2 + p{
  margin-top: 0;
}

.about-body--flow h2:not(:first-child){
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-body--flow h3{
  margin: 16px 0 6px;
  color: rgba(255, 255, 255, 0.97);
  font-size: 18px;
  line-height: 1.3;
}

.about-body--flow p{
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.72;
  max-width: 86ch;
}

.about-body--flow p + p{
  margin-top: 12px;
}

.about-body--flow ul,
.about-body--flow ol{
  margin: 10px 0 10px 0;
  padding: 0;
  list-style: none;
  max-width: 84ch;
}

.about-body--flow li{
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}

.about-body--flow li + li{
  margin-top: 6px;
}

.about-body--flow li::before{
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 0.48em;
  background: color-mix(in srgb, var(--warm-accent) 78%, white);
}

.about-body--flow a{
  color: color-mix(in srgb, var(--warm-accent) 82%, white);
}

.about-body--flow .about-emphasis{
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
}

.about-body.about-body--flow h2,
.about-body.about-body--flow h3,
.about-body.about-body--flow h4{
  color: #fff;
}

.about-body.about-body--flow p{
  color: rgba(255, 255, 255, 0.86);
}

.about-body.about-body--flow li{
  color: rgba(255, 255, 255, 0.9);
}

.about-body.about-body--flow a{
  color: color-mix(in srgb, var(--warm-accent) 82%, white);
}

.about-body.about-body--flow.about-body--flow-light{
  color: var(--text);
}

.about-body.about-body--flow.about-body--flow-light h2,
.about-body.about-body--flow.about-body--flow-light h3,
.about-body.about-body--flow.about-body--flow-light h4{
  color: var(--accent);
}

.about-body.about-body--flow.about-body--flow-light p{
  color: var(--text);
}

.about-body.about-body--flow.about-body--flow-light li{
  color: var(--text);
}

.about-body.about-body--flow.about-body--flow-light h2:not(:first-child){
  border-top-color: rgba(var(--accent-rgb), 0.14);
}

.about-body.about-body--flow.about-body--flow-light li::before{
  background: color-mix(in srgb, var(--warm-accent) 82%, white);
}

.about-body.about-body--flow.about-body--flow-light a{
  color: var(--accent);
  font-weight: 700;
}

.about-body.about-body--flow.about-body--flow-light .about-emphasis{
  border-top-color: rgba(var(--accent-rgb), 0.14);
  color: var(--accent);
}

.about-body h2{
  margin: 20px 0 8px;
  font-size: 22px;
  line-height: 1.25;
  color: var(--text);
}

.about-body h3{
  margin: 14px 0 6px;
  font-size: 17px;
  line-height: 1.3;
  color: var(--text);
}

.about-body p{
  margin: 0;
}

.about-body p + p{
  margin-top: 10px;
}

.about-body ul{
  margin: 0 0 8px 18px;
  padding: 0;
}

.about-body ol{
  margin: 0 0 8px 18px;
  padding: 0;
}

.about-body li{
  margin: 4px 0;
}

.about-body a{
  color: var(--accent);
  font-weight: 700;
}

.about-body.about-body--breed-hub{
  margin-top: 0;
  padding: 2px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.about-emphasis{
  margin-top: 12px !important;
}

/* Blog */
.blog-hero{
  margin: 34px 0 60px;
  display: grid;
  gap: 14px;
}

.blog-index-title{
  margin: 0 0 6px;
  font-size: clamp(30px, 2.2vw + 14px, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, black) 0%,
    color-mix(in srgb, var(--accent) 98%, #102234) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(20, 28, 38, 0.20);
  padding: 20px 22px;
}

.blog-hero-header{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.blog-eyebrow{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-hero-header h1{
  margin: 8px 0 10px;
  font-size: clamp(28px, 2.2vw + 14px, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.blog-card{
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--accent) 92%, black) 0%,
    color-mix(in srgb, var(--accent) 98%, #102234) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(20, 28, 38, 0.18);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.blog-card-meta{
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.blog-card h2{
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
}

.blog-card > p{
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

.blog-card-link{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-top: auto;
  text-decoration: none;
  color: #ffffff;
  font-weight: 800;
  padding: 9px 11px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--warm-accent) 90%, #ea7a4c);
  border: 1px solid color-mix(in srgb, var(--warm-accent) 78%, #c95f39);
  box-shadow: 0 6px 14px rgba(232, 132, 92, 0.28);
}

.blog-card-link:hover{
  background: color-mix(in srgb, var(--warm-accent) 96%, #d96f45);
}

.blog-card-link:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--warm-accent) 72%, white);
  outline-offset: 2px;
}

.blog-body{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  display: grid;
  gap: 18px;
}

.blog-text-block{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--text-strong);
  line-height: 1.7;
}

.blog-text-block + .blog-text-block{
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.blog-text-block h2{
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.25;
  color: var(--text);
}

.blog-text-block h2:first-child{
  margin-top: 0;
}

.blog-text-block p{
  margin: 0;
}

.blog-text-block p + p{
  margin-top: 10px;
}

.blog-text-block a{
  color: var(--accent);
  font-weight: 700;
}

.blog-text-block ul{
  margin: 12px 0 0 18px;
  padding: 0;
}

.blog-text-block ol{
  margin: 12px 0 0 18px;
  padding: 0;
}

.blog-text-block li{
  margin: 6px 0;
}

.blog-hero-figure{
  margin: 18px 0 14px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.52);
}

.blog-hero-figure img{
  display: block;
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.blog-figure{
  margin: 16px 0 6px;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.45);
}

.blog-figure img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(44, 62, 80, 0.08);
}

.blog-source-toggle{
  background: transparent;
}

.blog-source-list{
  margin: 0;
  padding-left: 20px;
}

.blog-source-list li{
  line-height: 1.55;
  margin: 0 0 10px 0;
}

.blog-source-list li:last-child{
  margin-bottom: 0;
}

.blog-source-list a{
  color: var(--accent);
  text-decoration-thickness: 1.4px;
  text-underline-offset: 2px;
  word-break: break-word;
}

/* Full-width juridische footerbalk */
.legal-footer{
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--accent-strong);
  background: var(--accent);
}

.legal-footer-inner{
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}

.legal-footer-btn{
  display: inline-flex;
  align-items: center;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 0 18px;
  min-height: 54px;
  cursor: pointer;
  text-decoration: none;
}

.legal-footer-btn:first-child{
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-footer-btn:hover{
  background: rgba(255, 255, 255, 0.08);
}

.legal-footer-btn:focus-visible{
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: -2px;
}

/* Cookiepopup tijdelijk uitgeschakeld (niet in gebruik)
.cookie-consent-root[hidden]{
  display: none;
}

.cookie-consent-root{
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
}

.cookie-consent-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.34);
  backdrop-filter: blur(2px);
  pointer-events: auto;
}

.cookie-consent{
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(940px, calc(100% - 24px));
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(20, 28, 38, 0.26);
  padding: 16px;
  display: grid;
  gap: 14px;
  pointer-events: auto;
}

.cookie-consent__content h2{
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text-strong);
}

.cookie-consent__content p{
  margin: 0;
  color: var(--text);
  line-height: 1.55;
  font-size: 14px;
}

.cookie-consent__links{
  margin-top: 8px !important;
}

.cookie-consent__links a{
  color: var(--accent);
  font-weight: 700;
}

.cookie-consent__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-consent__btn{
  appearance: none;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 10px 14px;
  min-height: 42px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.cookie-consent__btn:active{
  transform: translateY(1px);
}

.cookie-consent__btn--ghost{
  background: var(--card);
  color: var(--text-strong);
}

.cookie-consent__btn--ghost:hover{
  background: color-mix(in srgb, var(--accent-soft) 45%, white);
  border-color: color-mix(in srgb, var(--border) 70%, var(--accent));
}

.cookie-consent__btn--primary{
  background: var(--warm-accent);
  border-color: var(--warm-accent);
  color: #ffffff;
}

.cookie-consent__btn--primary:hover{
  background: color-mix(in srgb, var(--warm-accent) 88%, black);
  border-color: color-mix(in srgb, var(--warm-accent) 88%, black);
}

.cookie-consent__preferences{
  border-top: 1px solid var(--border);
  padding-top: 12px;
  display: grid;
  gap: 10px;
}

.cookie-consent__pref-row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface-soft);
}

.cookie-consent__pref-row h3{
  margin: 0;
  font-size: 15px;
  line-height: 1.3;
  color: var(--text-strong);
}

.cookie-consent__pref-row p{
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

.cookie-consent__pref-actions{
  display: flex;
  justify-content: flex-end;
  padding-top: 2px;
}

.cookie-consent__switch{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 32px;
  flex: 0 0 auto;
}

.cookie-consent__switch input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-consent__switch span{
  position: relative;
  width: 52px;
  height: 32px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 18%, white);
  border: 1px solid color-mix(in srgb, var(--text) 16%, white);
  transition: background-color 120ms ease, border-color 120ms ease;
}

.cookie-consent__switch span::after{
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(20, 28, 38, 0.18);
  transition: transform 120ms ease;
}

.cookie-consent__switch input:checked + span{
  background: color-mix(in srgb, var(--accent) 86%, white);
  border-color: color-mix(in srgb, var(--accent) 72%, white);
}

.cookie-consent__switch input:checked + span::after{
  transform: translateX(20px);
}

.cookie-consent__switch input:disabled + span{
  opacity: 0.8;
}

.cookie-consent__switch input:disabled + span::after{
  background: color-mix(in srgb, white 90%, var(--accent-soft));
}
*/

/* Responsive */
@media (max-width: 900px){
  .topbar-inner{
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0 12px;
  }

  .brand{
    min-width: 0;
  }

  .brand-name{
    font-size: 14px;
  }

  .mobile-nav-toggle{
    display: inline-flex;
    margin-left: auto;
  }

  .nav{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .topbar.is-mobile-nav-ready .nav{
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 220ms ease, opacity 180ms ease;
  }

  .topbar.is-mobile-nav-ready.is-mobile-nav-open .nav{
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link{
    width: 100%;
    min-height: 42px;
    padding: 8px 6px;
    font-size: 13px;
    line-height: 1.2;
  }

  select,
  input[type="text"],
  textarea{
    font-size: 16px;
  }

  .insurers-layout{
    grid-template-columns: 1fr;
  }

  .sidebar-stack{
    position: static;
    top: auto;
  }

  .hero-header{
    grid-template-columns: 1fr;
  }

  .hero-title-line{
    white-space: normal;
  }
  .hero-images{
    justify-content: center;
    margin-bottom: -44px;
    padding-right: 0;
  }
  .dog-image{
    width: min(100%, 276px);
    margin-inline: auto;
    object-position: bottom center;
  }
  .dog-image-main{
    transform: translateY(12px);
  }
  .form{
    grid-template-columns: 1fr;
  }
  .btn{
    grid-column: span 1;
  }

  .logos-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .formula-card-row{
    flex-direction: column;
    align-items: stretch;
  }

  .formula-brand{
    border-right: 0;
    border-bottom: 1px solid var(--border);
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 120px;
    padding: 12px;
    justify-content: center;
  }

  .formula-logo-shell{
    width: 132px;
    max-width: 132px;
    height: 70px;
    min-height: 70px;
    padding: 2px 4px;
    margin: 0 auto;
  }

  .formula-logo{
    max-width: 100%;
    max-height: 100%;
  }

  .formula-meta{
    padding: 12px;
    min-width: 0;
  }

  .formula-action{
    border-left: 0;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .formula-details-columns{
    grid-template-columns: 1fr;
  }

  .blog-grid{
    grid-template-columns: 1fr;
  }

  .about-body--breed-hub .breed-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .breed-card-media{
    min-height: 214px;
  }

  .breed-card-image{
    height: 214px;
    object-position: center 46%;
  }

  .breed-article-media{
    max-width: min(100%, 390px);
    padding: 0;
    border-radius: 0;
  }

  .breed-article-image{
    aspect-ratio: 4 / 5;
    object-position: center 35%;
  }

  .blog-body{
    padding: 16px 14px;
    gap: 16px;
  }

  .blog-hero-figure{
    margin: 14px 0 12px;
    padding: 8px;
  }

  .blog-hero-figure img{
    max-height: 320px;
  }

  .page-card{
    margin: 20px 0 40px;
    padding: 16px;
  }

  .about-hero{
    margin: 20px 0 40px;
    padding: 18px;
  }

  .about-hero h1{
    font-size: 28px;
  }

  /* Cookiepopup tijdelijk uitgeschakeld (niet in gebruik)
  .cookie-consent{
    width: calc(100% - 16px);
    bottom: 10px;
    padding: 14px;
    gap: 12px;
  }

  .cookie-consent__actions{
    justify-content: stretch;
  }

  .cookie-consent__actions .cookie-consent__btn{
    flex: 1 1 100%;
  }

  .cookie-consent__pref-row{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cookie-consent__switch{
    justify-self: start;
  }

  .cookie-consent__pref-actions{
    justify-content: stretch;
  }

  .cookie-consent__pref-actions .cookie-consent__btn{
    width: 100%;
  }
  */
}

@media (max-width: 600px){
  .container{
    width: min(1280px, calc(100% - 20px));
  }

  .topbar-inner{
    padding: 8px 0 10px;
    gap: 8px;
  }

  .mobile-nav-toggle{
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-logo{
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .nav-link{
    justify-content: flex-start;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .hero{
    padding: 20px 0 38px;
    gap: 14px;
  }

  .hero-images{
    margin-bottom: -34px;
  }

  .dog-image{
    width: min(100%, 222px);
  }

  .dog-image-main{
    transform: translateY(10px);
  }

  .hero-text h1{
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.05;
  }

  .page-card{
    padding: 14px;
    border-radius: 14px;
  }

  .formula-action{
    min-width: 0;
    padding: 10px;
  }

  .formula-price-value{
    font-size: 24px;
  }

  .formula-price-currency{
    font-size: 16px;
  }

  .formula-price-whole{
    font-size: 24px;
  }

  .profile-actions{
    flex-wrap: wrap;
    justify-content: stretch;
  }

  .profile-edit-btn,
  .profile-cancel-btn{
    flex: 1 1 100%;
  }

  .about-body{
    padding: 14px;
  }

  .about-body--breed-hub .breed-grid{
    grid-template-columns: 1fr;
  }

  .breed-card-media{
    min-height: 220px;
  }

  .breed-card-image{
    height: 220px;
    object-position: center 48%;
  }

  .breed-article-media{
    max-width: min(100%, 360px);
    padding: 0;
    border-radius: 0;
  }

  .breed-article-image{
    aspect-ratio: 4 / 5;
    object-position: center 35%;
  }

  .legal-footer-inner{
    width: 100%;
    flex-wrap: wrap;
  }

  .legal-footer-btn{
    flex: 1 1 100%;
    justify-content: flex-start;
    text-align: left;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 16px;
  }

  .legal-footer-btn:first-child{
    border-left: 0;
    border-top: 0;
  }

  .logos-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}


