/* Den Hartog Kentekenchecker Styles */

/* ANIMATIONS */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

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

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

/* Smooth transitions for result containers */
#zoek-resultaten,
#kenteken-result {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#zoek-resultaten.dhkc-fade-out,
#kenteken-result.dhkc-fade-out {
  opacity: 0;
  transform: translateY(-10px);
}

#zoek-resultaten > li {
  animation: fadeInUp 0.3s ease forwards;
  opacity: 0;
}

#zoek-resultaten > li:nth-child(1) { animation-delay: 0.02s; }
#zoek-resultaten > li:nth-child(2) { animation-delay: 0.04s; }
#zoek-resultaten > li:nth-child(3) { animation-delay: 0.06s; }
#zoek-resultaten > li:nth-child(4) { animation-delay: 0.08s; }
#zoek-resultaten > li:nth-child(5) { animation-delay: 0.10s; }
#zoek-resultaten > li:nth-child(6) { animation-delay: 0.12s; }
#zoek-resultaten > li:nth-child(7) { animation-delay: 0.14s; }
#zoek-resultaten > li:nth-child(8) { animation-delay: 0.16s; }
#zoek-resultaten > li:nth-child(9) { animation-delay: 0.18s; }
#zoek-resultaten > li:nth-child(10) { animation-delay: 0.20s; }
#zoek-resultaten > li:nth-child(n+11) { animation-delay: 0.22s; }

/* Variant list smooth animation */
#variant-list > li {
  animation: fadeInUp 0.25s ease forwards;
  opacity: 0;
}

#variant-list > li:nth-child(1) { animation-delay: 0.05s; }
#variant-list > li:nth-child(2) { animation-delay: 0.1s; }
#variant-list > li:nth-child(3) { animation-delay: 0.15s; }
#variant-list > li:nth-child(4) { animation-delay: 0.2s; }
#variant-list > li:nth-child(5) { animation-delay: 0.25s; }
#variant-list > li:nth-child(n+6) { animation-delay: 0.3s; }

/* Kenteken result fade in */
#kenteken-result > * {
  animation: fadeIn 0.3s ease forwards;
}

/* FUEL FILTER STYLING */
#fuel-filter {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  min-width: 140px;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

#fuel-filter:hover {
  border-color: #0a174e;
}

#fuel-filter:focus {
  outline: none;
  border-color: #0a174e;
  box-shadow: 0 0 0 3px rgba(10, 23, 78, 0.1);
}

@media (max-width: 768px) {
  #fuel-filter {
    min-width: 120px;
    font-size: 13px;
    padding: 10px 32px 10px 12px;
  }
}


@media (max-width: 768px) {
  .dhkc-favorites-modal {
    max-height: 95vh;
    margin: 10px;
  }
  
  .dhkc-favorites-modal-header {
    padding: 20px;
  }
  
  .dhkc-favorites-modal-content {
    padding: 20px;
  }
  
  .dhkc-favorites-grid {
    grid-template-columns: 1fr;
  }
}

/* FORM INPUTS - Verbeterde styling voor zoek input */
#zoekveld {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.2s ease;
  background: white;
  margin: 8px 0 16px 0;
}

#zoekveld:focus {
  outline: none;
  border-color: #0a174e;
  box-shadow: 0 0 0 3px rgba(10, 23, 78, 0.1);
}

#zoekveld::placeholder {
  color: #6c757d;
}

/* ZOEK RESULTATEN STYLING */
#zoek-resultaten {
  list-style: none;
  padding: 0;
  margin: 1em 0;
  max-height: 400px;
  overflow-y: auto;
}

/* SEARCH RESULT THUMBNAILS */
.dhkc-search-result-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.dhkc-search-result-text {
  flex: 1;
  min-width: 0;
}

.dhkc-search-thumb {
  width: 60px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: #f5f5f5;
}

.dhkc-search-thumb-placeholder {
  width: 60px;
  height: 45px;
  background: #f0f0f0;
  border-radius: 4px;
  flex-shrink: 0;
}

/* Make logo - small brand icon, aligned right */
.dhkc-make-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
  border: 1px solid #e9ecef;
  margin-left: auto;
  order: 99;
}

/* Make header with logo */
.dhkc-make-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0a174e;
  padding: 6px 12px;
  background: #f0f4ff;
  border-radius: 6px;
  margin: 6px 0 4px 16px;
  border-left: 4px solid #0a174e;
  font-size: 0.95em;
}

.dhkc-make-header-text {
  flex: 1;
}

.dhkc-make-header .dhkc-make-logo {
  width: 28px;
  height: 28px;
  margin-left: 0;
  order: 0;
}

@media (max-width: 480px) {
  .dhkc-search-thumb,
  .dhkc-search-thumb-placeholder {
    width: 50px;
    height: 38px;
  }

  .dhkc-make-logo {
    width: 26px;
    height: 26px;
  }

  .dhkc-search-result-content {
    gap: 8px;
  }
}

/* ZOEKRESULTAAT-KNOPPEN (voorheen inline JS-styles via style.cssText;
   hovers voorheen via mouseenter/mouseleave in JS) */

/* Lijstitem met kenteken-resultaat of variant (margin-bottom: 1em) */
#kenteken-result .dhkc-result-item {
  margin-bottom: 1em;
}

/* Knop in de kenteken-resultatenlijst (meerdere types gevonden) */
#kenteken-result .dhkc-kenteken-result-btn {
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f9f9f9;
  cursor: pointer;
}

/* Categorie-header in de zoekresultatenlijst */
#zoek-resultaten .dhkc-category-header {
  background: #0a174e;
  color: white;
  padding: 8px 12px;
  font-weight: bold;
  font-size: 14px;
  margin-top: 8px;
  border-radius: 6px;
  position: sticky;
  top: 0;
  z-index: 10;
}

/* Lijstitem per model in de zoekresultaten (ingesprongen) */
#zoek-resultaten .dhkc-search-result-item {
  margin: 4px 0;
  margin-left: 32px;
}

/* Knop voor een enkel zoekresultaat */
#zoek-resultaten .dhkc-search-result-btn {
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

#zoek-resultaten .dhkc-search-result-btn:hover {
  border-color: #0a174e;
  box-shadow: 0 2px 8px rgba(10, 23, 78, 0.1);
}

/* Knop voor een modelgroep met meerdere varianten */
#zoek-resultaten .dhkc-search-group-btn {
  width: 100%;
  text-align: left;
  padding: 10px 15px;
  background: #f8f9fa;
  border: 1px solid #0a174e;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 14px;
}

#zoek-resultaten .dhkc-search-group-btn:hover {
  border-color: #0a174e;
  box-shadow: 0 2px 8px rgba(10, 23, 78, 0.1);
  background: #e8ecf8;
}

/* Variant-knop in het variantenscherm */
#kenteken-result .dhkc-variant-btn {
  color: black;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #f9f9f9;
  cursor: pointer;
  transition: all 0.2s ease;
}

#kenteken-result .dhkc-variant-btn:hover {
  border-color: #0a174e;
  box-shadow: 0 2px 8px rgba(10, 23, 78, 0.1);
}

#zoek-resultaten::-webkit-scrollbar {
  width: 6px;
}

#zoek-resultaten::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

#zoek-resultaten::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

#zoek-resultaten::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* CONTAINER CONSTRAINTS - Avada compatibility */
.dhkc-advies-page {
  max-width: 100%;
  overflow-x: hidden;
  width: 100%;
  clear: both;
}
.dhkc-advies-page * {
  box-sizing: border-box;
}

/* Prevent Avada Fusion Builder conflicts */
.dhkc-kentekenchecker-wrapper {
  width: 100%;
  max-width: 100%;
  clear: both;
  overflow: visible;
  display: block;
  box-sizing: border-box;
}

.dhkc-kentekenchecker-wrapper::before,
.dhkc-kentekenchecker-wrapper::after {
  content: "";
  display: table;
  clear: both;
}

.dhkc-advies-page .fusion-builder-column,
.dhkc-advies-page .fusion-column-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.dhkc-advies-h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 .1em;
}

.dhkc-advies-meta {
  font-size: 1.1rem;
  color: #222;
  margin-bottom: .5em;
}

/* ============================================================================
 * PAGE HEADER - Titel en foto (2 losse blokken: 4/5 en 1/5)
 * ========================================================================== */
/* Flex i.p.v. een rigide 3fr/1fr-grid: robuust bij elke containerbreedte
   (ook smalle thema-content), zodat de fotokolom nooit zo smal wordt dat de
   afbeelding wegvalt. Wrapt netjes naar één kolom als het krap is. */
.dhkc-page-header {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}

.dhkc-page-header .dhkc-title-section { flex: 1 1 340px; min-width: 0; }
.dhkc-page-header .dhkc-image-section { flex: 1 1 220px; min-width: 0; }

/* Als er geen afbeelding is, neem volle breedte */
.dhkc-page-header.dhkc-no-image .dhkc-title-section { flex-basis: 100%; }

.dhkc-title-section {
  background: white;
  border-radius: 30px;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-content .dhkc-title-section h1 {
  font-size: 2.5rem!important;
  line-height: 0.9!important;
  color: #000049!important;
}

@media screen and (max-width: 900px) {
  .post-content .dhkc-title-section h1 {
    font-size: 1.25rem !important;
    line-height: 1 !important;
  }
}


.dhkc-subtitle {
  font-size: 1.3rem;
  color: #000000;
  margin-top: 0px;
}

.dhkc-header-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  align-items: stretch;
}

/* Ensure Den Hartog button styles work in our header */
.dhkc-header-actions .fusion-button {
  margin: 0 !important;
}

.dhkc-image-section {
  background: white;
  border-radius: 30px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dhkc-vehicle-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 240px;
  max-height: 200px;
}

/* ============================================================================
 * VEHICLE SPECS HEADER - Los blok tussen titel en componenten nav
 * ========================================================================== */
.dhkc-vehicle-specs-header {
  background: white;
  border-radius: 30px;
  padding: 24px;
  margin-bottom: 24px;
}

.dhkc-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
}

.dhkc-spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dhkc-spec-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: #000049;
  min-width: 95px;
}

.dhkc-spec-value {
  font-size: 0.95rem;
  color: #1a1a1a;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dhkc-fuel-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media (max-width: 1024px) {
  /* Foto bovenaan, vol breedte (flex-layout) */
  .dhkc-page-header .dhkc-title-section { flex: 1 1 100%; }
  .dhkc-page-header .dhkc-image-section {
    flex: 1 1 100%;
    order: -1;
    min-height: 100px;
  }

  .dhkc-specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .dhkc-title-section {
    padding: 24px;
  }
  
  .dhkc-title-section h1,
  .dhkc-title-section h2 {
    font-size: 1.75rem;
  }
  
  .dhkc-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  
  .dhkc-header-actions {
    flex-direction: column;
  }
}

/* ============================================================================
 * COMPONENTS WRAPPER - Witte achtergrond container (alleen om componenten)
 * ========================================================================== */
.dhkc-components-wrapper {
  background: white;
  border-radius: 0px 0px 30px 30px;
  padding: 32px;
}

/* MOBILE COMPONENT DISPLAY - Always visible with horizontal nav */
.dhkc-component-mobile-header {
  display: none !important;
}

.dhkc-component-content {
  display: block !important;
}

.dhkc-component-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dhkc-title-capacity {
  flex: 1 1 auto;
}

.dhkc-component h3 {
  font-size: 1.7rem!important;
  font-weight: 700;
  margin: 0px!important;
  color: #000049;
}

.dhkc-component .dhkc-capaciteit {
  font-size: 0.95rem;
  color: #5a5a5a;
  margin: 0;
  line-height: 1.6;
}

/* COMPONENT CODE STYLING */
.component-code {
  font-size: 1.4rem;
  font-weight: 400;
  color: #1d1d1d;
  margin: 0px!important;
}

.dhkc-filterbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 0 0 auto;
  align-items: flex-start;
}

.dhkc-filterbtn,
.dhkc-filterreset {
  border: 2px solid #0a174e;
  background: #fff;
  color: #0a174e;
  border-radius: 24px;
  padding: 8px 20px;
  font-size: .9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 600;
}

.dhkc-filterbtn:hover {
  background: rgba(10, 23, 78, 0.05);
}

.dhkc-filterbtn.active {
  background: #0a174e;
  color: #fff;
  outline: none;
}

.dhkc-filterreset {
  background: transparent;
  color: #0a174e;
  border-color: #0a174e;
}

.dhkc-filterreset:hover {
  background: #0a174e;
  color: white;
}

.dhkc-producten {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 2.2rem;
}

@media (max-width: 980px) {
  .dhkc-producten {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
}

@media (max-width: 640px) {
  .dhkc-producten {
    grid-template-columns: 1fr;
  }
}

/* PRODUCT CARDS - CLEAN GRID */
.dhkc-product-card {
  background: #fff;
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.2s ease;
  cursor: pointer;
  min-height: 120px;
  text-align: center;
}

.dhkc-product-card:hover {
  transform: translateY(-2px);
}

.dhkc-card-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.dhkc-card-link:hover {
  text-decoration: none;
  color: inherit;
}

/* IMAGE SECTION - LEFT SIDE */
.dhkc-thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dhkc-product-card img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}

/* CONTENT SECTION - RIGHT SIDE */
.dhkc-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}

.dhkc-product-card h4,
.dhkc-product-card .dhkc-nav-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  color: #1a1a1a;
  text-align: left;
}

.dhkc-product-card:hover h4,
.dhkc-product-card:hover .dhkc-nav-title {
  color: #0a174e;
}

.dhkc-interval {
  font-size: 0.75rem;
  color: #151515;
  margin: 0;
  text-align: left;
}


/* COMPONENT NAVIGATION - HORIZONTAL SCROLL WITH ARROWS */
.dhkc-component-nav {
  background: #0a174e;
  border-radius: 30px 30px 0px 0px;
  padding: 8px;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.dhkc-nav-arrow {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  color: white;
  z-index: 10;
}

.dhkc-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.dhkc-nav-arrow:active {
  transform: scale(0.95);
}

.dhkc-nav-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

.dhkc-nav-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  scroll-behavior: smooth;
  flex: 1;
}

.dhkc-nav-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.dhkc-nav-item {
  background: transparent;
  border-radius: 20px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  min-width: 100px;
  color: white;
}

.dhkc-nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dhkc-nav-item.active {
  background: white;
  color: #0a174e;
}

.dhkc-nav-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dhkc-nav-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}

.dhkc-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  max-width: 140px;
}

.dhkc-nav-code {
  font-size: 0.65rem;
  font-weight: 400;
  text-align: center;
  opacity: 0.8;
  font-style: italic;
}

/* COMPONENT SECTIONS */
.dhkc-component {
  margin: 1rem 0;
}

.dhkc-component.hidden {
  display: none;
}

/* (Printregels staan in de PRINT STYLESHEET-sectie onderaan dit bestand:
   bij printen wordt uitsluitend het dedicated .dhkc-print-document getoond) */

.dhkc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.dhkc-title-row > div:first-child {
  flex: 1 1 auto;
}

.dhkc-header-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .dhkc-title-row {
    flex-direction: column;
    gap: 16px;
  }
  .dhkc-header-actions {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        margin-top: -16px;
        margin-bottom: 30px;
  }
  .component-code {
    font-size: 1rem;
  }
  .fusion-button-text {
    font-size: 0.7rem;
  }
  .dhkc-page-header {
    gap: 0px;
       margin-bottom:0px;
  }
  .dhkc-title-section {
    border-radius: 0px;
    padding: 0px 20px 0px 20px;
  }
    .dhkc-image-section {
    border-radius: 30px 30px 0px 0px;
    padding: 30px 48% 0px 30px;
  }
  .dhkc-subtitle {
    font-size: 0.8rem;
    margin-bottom:0px;
  }

  .dhkc-vehicle-specs-header {
    margin-bottom:20px;
    border-radius: 0px 0px 30px 30px;
  }
  .dhkc-component h3
  {    font-size: 1.2rem !important;}
    .dhkc-nav-scroll {
    padding: 4px;
  }
  
  .dhkc-nav-item {
    padding: 8px 10px;
    min-width: 70px;
    gap: 4px;
  }
  
  .dhkc-nav-icon {
    width: 18px;
    height: 18px;
  }
  
  .dhkc-nav-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .dhkc-nav-label {
    font-size: 0.6rem;
    line-height: 1.1;
  }
  
  .dhkc-nav-code {
    font-size: 0.55rem;
  }
  
  .dhkc-component-nav {
    gap: 4px;
    padding: 6px;
  }
  
  .dhkc-nav-arrow {
    width: 32px;
    height: 32px;
  }
  
  .dhkc-nav-arrow svg {
    width: 18px;
    height: 18px;
  }
    .dhkc-component-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
  }

  .dhkc-component h2 {
    font-size: 1.5rem;
  }
  
  .dhkc-filterbar {
    justify-content: flex-start;
    width: 100%;
  }

}


/* KENTEKEN INPUT STYLING */
.kenteken-box .nl-svg {
    background-color: #004DC8;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 0.75em; /* minder ruimte */
    flex: 0 0 auto; /* voorkom rekken */
}

.kenteken-box .nl-svg img {
    height: 50%; /* past mooier in lijn met tekst */
    width: auto;
    display: block;
}

.kenteken-box input, .kenteken-box input::placeholder {
    border: none!important;
    background: transparent!important;
    text-transform: uppercase;
    color: #000!important;
    font-weight: 700;
    font-size: 1em!important;
    padding: 0 1em!important;
    height: 100%!important;
    outline: none;
    flex: 1 1 auto;
    min-width: 0;
    box-sizing: border-box;
    text-align: center; /* CENTREERT de tekst */
    letter-spacing: 0.1em; /* iets bredere karakters voor kentekenlook */
}

.kenteken-button {
    background: #004DC8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: none;
    padding: 0 1em;
    cursor: pointer;
    font-size: 1.5em;
    transition: background 0.3s ease;
    height: 100%;
    font-weight: bold;
    flex: 0 0 auto;
}

#zoekveld.zonderkentekenzoeken, #zoekveld.zonderkentekenzoeken::placeholder {
    background-color: transparent;
    text-transform: capitalize;
    color: #efefef!important;
    border-width: 0px 0px 3px 0px;
    border-color: #00D9FF20;
    border-radius: 0px;
}

#zoekveld.zonderkentekenzoeken:hover, #zoekveld.zonderkentekenzoeken:focus {
    background-color: transparent;
    text-transform: capitalize;
    color: var(--form_text_color);
    border-width: 0px 0px 3px 0px;
    border-color: white;
    border-radius: 0px;
}



.kenteken-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    align-items: flex-start;
}

.kenteken-box {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    background: #FFC531;
    font-size: clamp(1.5rem, 2.5vw, 2.8rem);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    margin-bottom: 1em;
    height: 100px;
}

/* ============================================================================
 * MULTILANDEN: LANDENKIEZER + EMOJI-VLAG (kenteken-lookup)
 * ========================================================================== */

.dhkc-kenteken-row {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    margin-bottom: 1em;
}

.dhkc-kenteken-row .kenteken-box {
    margin-bottom: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.kenteken-country-selector {
    flex: 0 0 auto;
}

#dhkc-country-select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 190px;
    transition: border-color 0.2s ease;
}

#dhkc-country-select:hover,
#dhkc-country-select:focus {
    border-color: #0a174e;
    outline: none;
}

/* Emoji-vlag vervangt de NL-SVG-plaat zodra een ander land actief is */
.kenteken-box .dhkc-country-flag {
    display: none;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 0.5em;
    background-color: #004DC8;
    font-size: 0.9em;
    line-height: 1;
    flex: 0 0 auto;
}

.kenteken-box.dhkc-country-other .nl-svg {
    display: none;
}

.kenteken-box.dhkc-country-other .dhkc-country-flag {
    display: flex;
}

@media (max-width: 768px) {
    .dhkc-kenteken-row {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .kenteken-country-selector {
        width: 100%;
    }

    #dhkc-country-select {
        width: 100%;
    }
}

/* ============================================================================
 * DUITSLAND (DE): HSN + TSN VELDEN (i.p.v. kenteken)
 * Twee velden naast elkaar, zelfde stijl als #zoekveld. [hidden] respecteren.
 * ========================================================================== */
[hidden] {
    display: none !important;
}

.dhkc-de-fields {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 1em;
}

.dhkc-de-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 0;
    min-width: 0;
}

.dhkc-de-field label {
    font-size: 12px;
    font-weight: 600;
    color: #000049;
}

.dhkc-de-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dhkc-de-field input:focus {
    outline: none;
    border-color: #000049;
    box-shadow: 0 0 0 3px rgba(0, 0, 73, 0.1);
}

.dhkc-de-field input::placeholder {
    color: #6c757d;
    text-transform: none;
}

@media (max-width: 480px) {
    .dhkc-de-fields {
        flex-direction: column;
    }
}

/* Verenigde Staten: staat-keuze (kenteken-box blijft zichtbaar) */
.dhkc-us-fields {
    width: 100%;
    max-width: 900px;
    margin: 10px 0 1em 0;
}

.dhkc-us-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dhkc-us-field label {
    font-size: 12px;
    font-weight: 600;
    color: #000049;
}

.dhkc-us-field select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dhkc-us-field select:focus {
    outline: none;
    border-color: #000049;
    box-shadow: 0 0 0 3px rgba(0, 0, 73, 0.1);
}

/* ============================================================================
 * STAP-VOOR-STAP VOERTUIGSELECTOR (categorie > merk > model > type)
 * ========================================================================== */

.dhkc-step-selector {
    margin: 8px 0 16px 0;
}

.dhkc-step-selector-label {
    margin: 0 0 8px 0;
}

/* Categorie als icoon-tegels (volle breedte boven merk/model/type) */
.dhkc-category-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0 0 14px 0;
}

.dhkc-cat-tiles {
    display: grid;
    /* Auto-fit met ruime min-breedte: lange labels ("Landbouwapparatuur",
       "Personenwagens") krijgen genoeg breedte om netjes te tonen i.p.v. te
       breken. Past zich aan de containerbreedte aan (5 → 4 → 2 per rij). */
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 12px;
    align-items: stretch; /* gelijke tegelhoogtes per rij */
}

.dhkc-cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 0;
    min-height: 110px;       /* gelijke, ruime tegelhoogtes */
    height: 100%;
    padding: 16px 6px;       /* smalle horizontale padding → meer labelbreedte */
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background: #fff;
    color: #000049;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.12s ease;
}

.dhkc-cat-tile:hover {
    border-color: #000049;
    box-shadow: 0 4px 12px rgba(0, 0, 73, 0.1);
    transform: translateY(-1px);
}

.dhkc-cat-tile-active {
    border-color: #000049;
    background: #eef2fb;
    box-shadow: inset 0 -3px 0 #d3a42d, 0 2px 8px rgba(0, 0, 73, 0.12);
}

/* Icoon in een subtiel rond vlak, gecentreerd */
.dhkc-cat-tile-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #f3f5fb;
    color: #000049;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.dhkc-cat-tile:hover .dhkc-cat-tile-icon,
.dhkc-cat-tile-active .dhkc-cat-tile-icon {
    background: #e3e9f7;
}

.dhkc-cat-tile-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

/* Labels NIET inkorten: netjes laten doorlopen, alleen op spaties/woordgrenzen
   afbreken (geen hyphens/word-break die 'Personenwage-ns' opleveren). */
.dhkc-cat-tile-label {
    font-size: 11px;
    line-height: 1.3;
    font-weight: 600;
    width: 100%;
    max-width: 100%;
    /* Korte woorden ("Personenwagens") blijven heel; alleen écht te lange
       samengestelde woorden breken op woordgrens af — zonder hyphens en
       zonder word-break-artefacten als 'Personenwage-ns'. */
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.dhkc-cat-status {
    color: #6c757d;
    font-size: 14px;
    font-style: italic;
    padding: 8px 0;
}

.dhkc-cat-status-error {
    color: #dc3545;
    font-style: normal;
}

.dhkc-step-selects {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 12px 0;
}

.dhkc-combo-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.dhkc-combo-label {
    font-size: 12px;
    font-weight: 600;
    color: #0a174e;
}

/* Custom dropdown (zoekbaar, met merklogo's / modelfoto's) */
.dhkc-combo {
    position: relative;
    width: 100%;
}

.dhkc-combo-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.dhkc-combo-trigger:hover:not(:disabled),
.dhkc-combo-trigger:focus {
    border-color: #0a174e;
    outline: none;
}

.dhkc-combo-disabled .dhkc-combo-trigger,
.dhkc-combo-trigger:disabled {
    background: #f1f3f5;
    color: #999;
    cursor: not-allowed;
}

.dhkc-combo-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dhkc-combo-placeholder {
    flex: 1;
    color: #6c757d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dhkc-combo-caret {
    flex-shrink: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #0a174e;
}

.dhkc-combo-open .dhkc-combo-caret {
    transform: rotate(180deg);
}

/* Merklogo / modelfoto in trigger en opties (hoge-res bron, scherp op retina) */
.dhkc-combo-img {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
}

.dhkc-combo-trigger .dhkc-combo-img {
    width: 26px;
    height: 26px;
}

.dhkc-combo-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(10, 23, 78, 0.15);
    overflow: hidden;
}

.dhkc-combo-search {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    outline: none;
}

.dhkc-combo-list {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    max-height: 320px;
    overflow-y: auto;
}

.dhkc-combo-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    cursor: pointer;
}

.dhkc-combo-option:hover,
.dhkc-combo-option.dhkc-combo-active {
    background: #f0f4ff;
}

.dhkc-combo-option[aria-selected="true"] {
    background: #e8ecf8;
}

.dhkc-combo-option-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dhkc-combo-option-label {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dhkc-combo-option-sub {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.3;
}

.dhkc-combo-empty {
    padding: 12px 14px;
    color: #999;
    font-style: italic;
    font-size: 14px;
}

.dhkc-selector-error {
    display: none;
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 10px 14px;
    margin: 0 0 12px 0;
    font-size: 14px;
}

.dhkc-selector-go:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .dhkc-step-selects {
        grid-template-columns: 1fr;
    }
    /* Categorie-tegels: 3 op een rij op tablet, 2 op smal mobiel */
    .dhkc-cat-tiles {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .dhkc-cat-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .dhkc-cat-tile-icon svg {
        width: 32px;
        height: 32px;
    }
}

/* ============================================================================
 * FILTER SIDEBAR STYLES
 * ========================================================================== */

/* Filter Toggle Button */
.dhkc-filter-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: white;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.dhkc-filter-toggle-btn:hover {
  border-color: #0a174e;
  background: #f8f9fa;
}

.dhkc-filter-toggle-btn.has-filters {
  border-color: #0a174e;
  background: #f0f4ff;
}

.dhkc-filter-toggle-text {
  white-space: nowrap;
}

.dhkc-active-filter-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #0a174e;
  color: white;
  font-size: 11px;
  font-weight: 600;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* Filter Overlay */
.dhkc-filter-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: rgba(0, 0, 0, 0.5) !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 2147483646 !important;
  isolation: isolate;
  pointer-events: none;
}

.dhkc-filter-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Filter Sidebar */
.dhkc-filter-sidebar {
  position: fixed !important;
  top: 0 !important;
  right: -400px;
  width: 380px;
  max-width: 90vw;
  height: 100vh !important;
  height: 100dvh !important; /* Dynamic viewport height for mobile */
  background: white !important;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 2147483647 !important;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  isolation: isolate;
}

.dhkc-filter-sidebar.open {
  right: 0 !important;
}

/* Ensure body doesn't scroll when filter is open */
body.dhkc-filter-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
}

/* Override any WordPress/Avada theme elements that might appear above */
.dhkc-filter-overlay.open,
.dhkc-filter-sidebar.open {
  transform: translateZ(0); /* Force GPU layer */
}

/* Hide sticky headers when filter is open */
body.dhkc-filter-open .fusion-header-wrapper,
body.dhkc-filter-open .fusion-sticky-header-wrapper,
body.dhkc-filter-open .avada-header-wrapper,
body.dhkc-filter-open #wrapper > .fusion-header,
body.dhkc-filter-open .fusion-tb-header,
body.dhkc-filter-open header.fusion-header,
body.dhkc-filter-open .sticky-header,
body.dhkc-filter-open [class*="sticky"],
body.dhkc-filter-open [class*="fixed-header"] {
  z-index: 1 !important;
}

/* Filter Header */
.dhkc-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
}

.dhkc-filter-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0a174e;
}

.dhkc-filter-close {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dhkc-filter-close:hover {
  background: #e9ecef;
  color: #333;
}

/* Filter Content */
.dhkc-filter-content {
  flex: 1;
  overflow-y: auto;
  padding: 0;
  max-height: calc(100vh - 200px);
}

/* Filter Sections */
.dhkc-filter-section {
  border-bottom: 1px solid #e9ecef;
}

.dhkc-filter-section-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: background 0.2s ease;
}

.dhkc-filter-section-header:hover {
  background: #f8f9fa;
}

.dhkc-filter-chevron {
  transition: transform 0.2s ease;
}

.dhkc-filter-section-header[aria-expanded="false"] .dhkc-filter-chevron {
  transform: rotate(-90deg);
}

.dhkc-filter-section-content {
  padding: 0 24px 16px;
}

/* Filter Options */
.dhkc-filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
}

.dhkc-filter-loading {
  color: #999;
  font-size: 0.85rem;
  font-style: italic;
  margin: 0;
  padding: 8px 0;
}

/* Filter Checkbox */
.dhkc-filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin: 0;
}

.dhkc-filter-checkbox:hover {
  background: #f8f9fa;
}

.dhkc-filter-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.dhkc-checkbox-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dhkc-filter-checkbox input[type="checkbox"]:checked + .dhkc-checkbox-custom {
  background: #0a174e;
  border-color: #0a174e;
}

.dhkc-filter-checkbox input[type="checkbox"]:checked + .dhkc-checkbox-custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.dhkc-filter-label {
  flex: 1;
  font-size: 0.9rem;
  color: #333;
}

.dhkc-filter-count {
  font-size: 0.8rem;
  color: #999;
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ============================================================================
 * RANGE SLIDER STYLES (Year & Power filters)
 * ========================================================================== */

.dhkc-range-slider-container {
  padding: 8px 0;
}

.dhkc-range-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a174e;
}

.dhkc-range-slider-track {
  position: relative;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  margin: 16px 0;
}

.dhkc-range-slider-range {
  position: absolute;
  height: 100%;
  background: #0a174e;
  border-radius: 4px;
  pointer-events: none;
}

/* Dual range slider inputs */
.dhkc-range-slider-track input[type="range"] {
  position: absolute;
  width: 100%;
  height: 8px;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  margin: 0;
}

.dhkc-range-slider-track input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #0a174e;
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  margin-top: -6px;
}

.dhkc-range-slider-track input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.dhkc-range-slider-track input[type="range"]::-webkit-slider-thumb:active {
  transform: scale(1.15);
  background: #0d1f6b;
}

.dhkc-range-slider-track input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #0a174e;
  border: 3px solid white;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.dhkc-range-slider-track input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.dhkc-range-slider-track input[type="range"]::-moz-range-thumb:active {
  transform: scale(1.15);
  background: #0d1f6b;
}

/* Firefox track styling */
.dhkc-range-slider-track input[type="range"]::-moz-range-track {
  background: transparent;
  border: none;
}

/* Focus styles for accessibility */
.dhkc-range-slider-track input[type="range"]:focus {
  outline: none;
}

.dhkc-range-slider-track input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(10, 23, 78, 0.2), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.dhkc-range-slider-track input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(10, 23, 78, 0.2), 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* Loading message for power slider */
.dhkc-range-slider-container .dhkc-filter-loading {
  margin-top: 8px;
  text-align: center;
}

/* Filter Footer */
.dhkc-filter-footer {
  display: flex;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid #e9ecef;
  background: #f8f9fa;
}

.dhkc-filter-reset-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #666;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dhkc-filter-reset-btn:hover {
  border-color: #dc3545;
  color: #dc3545;
}

.dhkc-filter-apply-btn {
  flex: 1;
  padding: 12px 16px;
  background: #0a174e;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dhkc-filter-apply-btn:hover {
  background: #0d1f6b;
}

/* Active Filters Display */
.dhkc-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  margin-bottom: 12px;
  align-items: center;
}

.dhkc-active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: #f0f4ff;
  border: 1px solid #0a174e;
  border-radius: 20px;
  font-size: 0.85rem;
  color: #0a174e;
}

.dhkc-active-filter-tag button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #0a174e;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.dhkc-active-filter-tag button:hover {
  opacity: 1;
}

.dhkc-clear-all-filters {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 6px 10px;
  transition: all 0.2s ease;
}

.dhkc-clear-all-filters:hover {
  text-decoration: underline;
}

/* Search Layout */
.dhkc-search-layout {
  width: 100%;
}

.dhkc-search-results-container {
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .dhkc-filter-toggle-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .dhkc-filter-toggle-text {
    display: none;
  }
  
  .dhkc-filter-sidebar {
    width: 100%;
    max-width: 100%;
    right: -100%;
  }
  
  .dhkc-filter-header {
    padding: 16px 20px;
  }
  
  .dhkc-filter-section-header {
    padding: 14px 20px;
  }
  
  .dhkc-filter-section-content {
    padding: 0 20px 14px;
  }
  
  .dhkc-filter-footer {
    padding: 14px 20px;
  }
  
  .dhkc-active-filters {
    padding: 8px 0;
  }
  
  .dhkc-active-filter-tag {
    font-size: 0.8rem;
    padding: 4px 8px;
  }
}

/* Scrollbar styling for filter options */
.dhkc-filter-options::-webkit-scrollbar {
  width: 6px;
}

.dhkc-filter-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.dhkc-filter-options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.dhkc-filter-options::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
/* ============================================================================
 * SEO INTRO (productadvies landingspagina)
 * ========================================================================== */
.dhkc-seo-intro {
  margin: 16px 0;
  padding: 0 4px;
}

.dhkc-seo-intro p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* ============================================================================
 * FAQ SECTION (datagedreven, matcht FAQPage JSON-LD)
 * ========================================================================== */
.dhkc-faq-section {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

.dhkc-faq-title {
  font-size: 1.4rem;
  color: #0a174e;
  margin: 0 0 16px 0;
}

.dhkc-faq-item {
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #f8f9fa;
}

.dhkc-faq-item[open] {
  background: #fff;
  border-color: #0a174e;
}

.dhkc-faq-question {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 600;
  color: #0a174e;
  list-style-position: inside;
}

.dhkc-faq-question:hover {
  color: #061030;
}

.dhkc-faq-answer {
  padding: 0 16px 14px 16px;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

/* ============================================================================
 * PRINT BUTTON
 * ========================================================================== */
.dhkc-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dhkc-print-icon {
  flex-shrink: 0;
}

/* Dedicated printdocument: verborgen op scherm (zie PRINT STYLESHEET onderaan) */
.dhkc-print-document {
  display: none;
}

/* ============================================================================
 * WOOCOMMERCE BESTELKNOP
 * Bescheiden knop op de productkaart, alleen gerenderd bij een productmatch
 * ========================================================================== */
.dhkc-wc-btn {
  display: inline-block;
  padding: 6px 16px;
  background: #0a174e;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dhkc-wc-btn:hover {
  background: #061030;
  color: #fff;
  text-decoration: none;
}

/* ============================================================================
 * HUISSTIJL DEN HARTOG (tokens uit denhartogbv.com / Avada-theme)
 * Fallback-styling met exact de productiewaarden, zodat de plugin er op
 * ELK theme uitziet zoals op denhartogbv.com. Op productie (Avada) zijn
 * deze waarden identiek aan de themestijlen en dus visueel neutraal.
 * ========================================================================== */
.dhkc-kentekenchecker-wrapper,
.dhkc-filter-sidebar,
.dhkc-favorites-overlay,
.dhkc-favorites-page {
  --dhkc-blue: #000049;        /* koppen en outline-knoppen */
  --dhkc-blue-mid: #0a174e;    /* knopvlakken en accenten */
  --dhkc-accent: #d3a42d;      /* goud-highlight (highlightdh-lu) */
  --dhkc-font-heading: helvetica-lt-pro, Arial, Helvetica, sans-serif;
}

/* Koppen in plugin-context: huisstijlfont + donkerblauw */
.dhkc-advies-page h1,
.dhkc-advies-page h2,
.dhkc-advies-page h3,
.dhkc-component-title,
.dhkc-faq-title,
.dhkc-favorites-page h2 {
  font-family: var(--dhkc-font-heading);
  color: var(--dhkc-blue);
}

/* Titelformaten exact zoals op denhartogbv.com (Avada): voorkomt dat andere
   themes (bijv. enorme TT-koppen) de paginatitel uit de layout drukken */
.dhkc-title-section h1 {
  font-size: 40px;
  line-height: 36px;
  font-weight: 700;
}

.dhkc-advies-page .dhkc-subtitle {
  font-size: 20.8px;
  line-height: 1.5;
}

.dhkc-advies-page .dhkc-component-title {
  font-size: 27.2px;
  line-height: 1.15;
  font-weight: 700;
}

@media (max-width: 768px) {
  .dhkc-title-section h1 {
    font-size: 30px;
    line-height: 1.1;
  }
}

/* Goud-accent in de paginatitel ("Den Hartog <span>productadvies</span>") */
.dhkc-kentekenchecker-wrapper .highlightdh-lu {
  color: var(--dhkc-accent);
}

/* Huisstijl-knoppen: pill-vorm, lowercase, bold — waarden 1-op-1 van productie */
.dhkc-kentekenchecker-wrapper .denhartogbutton,
.dhkc-favorites-page .denhartogbutton,
.dhkc-favorites-overlay .denhartogbutton {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--dhkc-blue-mid);
  color: #fff;
  border: 3px solid var(--dhkc-blue-mid);
  border-radius: 130px;
  font-family: var(--dhkc-font-heading);
  font-weight: 700;
  font-size: 17px;
  text-transform: lowercase;
  padding: 2px 14px 3px 18px;
  text-decoration: none;
  cursor: pointer;
}

.dhkc-kentekenchecker-wrapper .denhartogbuttonoutlineblauw,
.dhkc-favorites-page .denhartogbuttonoutlineblauw,
.dhkc-favorites-overlay .denhartogbuttonoutlineblauw {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  color: var(--dhkc-blue);
  border: 3px solid var(--dhkc-blue);
  border-radius: 130px;
  font-family: var(--dhkc-font-heading);
  font-weight: 700;
  font-size: 17px;
  text-transform: lowercase;
  padding: 2px 14px 3px 18px;
  text-decoration: none;
  cursor: pointer;
}

.dhkc-kentekenchecker-wrapper .denhartogbutton:hover,
.dhkc-favorites-page .denhartogbutton:hover,
.dhkc-favorites-overlay .denhartogbutton:hover {
  background-color: var(--dhkc-blue);
  border-color: var(--dhkc-blue);
  color: #fff;
}

.dhkc-kentekenchecker-wrapper .denhartogbuttonoutlineblauw:hover,
.dhkc-favorites-page .denhartogbuttonoutlineblauw:hover,
.dhkc-favorites-overlay .denhartogbuttonoutlineblauw:hover {
  background-color: var(--dhkc-blue);
  color: #fff;
}

/* Subtiele tertiaire link ("nieuw advies"): bewust lichter dan de pill-knoppen
   ernaast, zodat hij niet als dubbele/print-knop oogt maar als rustige link. */
.dhkc-kentekenchecker-wrapper .dhkc-advies-link {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 4px;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 2px 4px !important;
  color: var(--dhkc-blue) !important;
  font-family: var(--dhkc-font-heading);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  text-transform: lowercase;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.dhkc-kentekenchecker-wrapper .dhkc-advies-link i {
  font-size: 12px;
  transition: transform 0.15s ease;
}

.dhkc-kentekenchecker-wrapper .dhkc-advies-link:hover {
  color: var(--dhkc-blue-mid) !important;
  text-decoration: none !important;
}

.dhkc-kentekenchecker-wrapper .dhkc-advies-link:hover i {
  transform: translateX(2px);
}

/* ============================================================================
 * PRINT STYLESHEET - DEDICATED PRINTDOCUMENT
 * Bij printen wordt UITSLUITEND het .dhkc-print-document getoond
 * (Olyslager-stijl: headerband, info-blok met QR, componentkaarten, voetregel)
 * ========================================================================== */
/* Alleen verticale paginamarges via @page; de horizontale "marge" wordt
   binnen het document zelf als padding gezet (zie .dhkc-print-document).
   Reden: bij de pre-:has fallback (position:absolute; width:100%) rekent
   Firefox/oudere Safari width:100% t.o.v. het VOLLE vel (incl. marges),
   waardoor het document een marge-breedte naar rechts uitliep en de QR
   eraf viel. Zonder horizontale @page-marge is er niets om over oneens te
   zijn: width:100% == velbreedte in elke browser, padding regelt de marge. */
@page {
  margin: 12mm 0;
}

@media print {
  /* Neutraliseer theme-layout zodat het document linksboven start */
  html, body {
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    overflow: visible !important;
    /* Forceer een schone witte pagina: sommige themes (Avada e.a.) zetten een
       donkere body-/sectie-achtergrond die anders onder het document doorloopt. */
    background: #fff !important;
  }

  /* Verberg de hele pagina, toon alleen het printdocument */
  body * {
    visibility: hidden;
  }

  .dhkc-print-document,
  .dhkc-print-document * {
    visibility: visible;
  }

  /* Moderne browsers (:has): alles wat het printdocument niet bevat ook
     qua LAYOUT laten verdwijnen — verborgen schermcontent nam anders
     ruimte in en veroorzaakte lege vervolgpagina's in de printuitvoer.
     Browsers zonder :has vallen terug op de visibility-techniek hierboven. */
  body *:not(:has(.dhkc-print-document)):not(.dhkc-print-document):not(.dhkc-print-document *) {
    display: none !important;
  }

  /* Normaliseer de voorouder-keten van het printdocument: themes geven hun
     containers breedtes/padding/position, waardoor het document zich daaraan
     verankerde i.p.v. aan de pagina — dat gaf scheve marges in de uitvoer.
     Na deze reset bepalen uitsluitend de @page-marges de paginarand. */
  body *:has(.dhkc-print-document) {
    display: block !important;
    position: static !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    float: none !important;
    transform: none !important;
    overflow: visible !important;
  }

  /* Het document zelf in de normale flow: @page regelt alle vier de marges.
     Alleen voor browsers met :has — daarbuiten blijft de absolute fallback
     nodig omdat de verborgen schermcontent daar nog hoogte inneemt. */
  body:has(.dhkc-print-document) .dhkc-print-document {
    position: static !important;
  }

  .dhkc-print-document {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    /* Horizontale marge als padding i.p.v. @page (zie @page-comment hierboven):
       met box-sizing:border-box blijft de inhoud altijd binnen de velbreedte,
       ongeacht hoe de browser width:100% bij absolute positionering berekent. */
    padding: 0 12mm;
    background: #fff;
    font-size: 10pt;
    line-height: 1.45;
    color: #1a1a1a;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  /* Niets binnen het printdocument mag door eigen padding/border breder dan
     de kolom worden: border-box dwingt af dat breedtes inclusief box-model zijn. */
  .dhkc-print-document *,
  .dhkc-print-document *::before,
  .dhkc-print-document *::after {
    box-sizing: border-box;
  }

  /* Huisstijlfont voor alle nadruk-elementen in het printdocument */
  .dhkc-print-headerband,
  .dhkc-print-component-name,
  .dhkc-print-wordmark,
  .dhkc-print-usage strong {
    font-family: helvetica-lt-pro, Arial, Helvetica, sans-serif;
  }

  /* Voorkom dat themes (TT21, Avada e.a.) de link-URL achter links printen */
  .dhkc-kentekenchecker-wrapper a::after {
    content: none !important;
  }

  /* --- 1. HEADERBAND ------------------------------------------------------ */
  .dhkc-print-headerband {
    border: 2px solid #0a174e;
    border-radius: 8px;
    background: #eef2fa;
    padding: 8px 14px;
    margin-bottom: 12px;
    font-size: 12pt;
  }

  .dhkc-print-headerband strong {
    color: #0a174e;
    font-weight: 700;
  }

  .dhkc-print-headerband em {
    font-style: italic;
    color: #333;
  }

  .dhkc-print-sep {
    color: #0a174e;
  }

  /* --- 2. INFO-BLOK: logo | specs | QR ------------------------------------ */
  .dhkc-print-info {
    display: grid;
    /* minmax(0, 1fr) zodat de middenkolom mag krimpen i.p.v. de QR-kolom
       (rechts) van de pagina te duwen bij lange specwaarden. */
    grid-template-columns: 44mm minmax(0, 1fr) 26mm;
    gap: 6mm;
    align-items: center;
    border: 2px solid #0a174e;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .dhkc-print-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 50mm;
  }

  /* Het standaardlogo is de witte huisstijlvariant ("op donkere achtergrond"):
     op een donkerblauw paneel, conform de Den Hartog-huisstijl.
     width expliciet (niet alleen max-width): themes zetten img{max-width:100%}
     met hogere specificiteit, wat de afbeelding in de grid-kolom liet collapsen */
  .dhkc-print-logo-img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    background: #000049;
    border-radius: 8px;
    padding: 4mm 5mm;
    box-sizing: border-box;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .dhkc-print-wordmark {
    font-size: 16pt;
    font-weight: 800;
    color: #0a174e;
    line-height: 1.1;
    white-space: nowrap;
  }

  .dhkc-print-wordmark-sub {
    font-size: 9pt;
    color: #0a174e;
    letter-spacing: 0.08em;
  }

  /* Specs als puntjeslijnen: label links, gestippelde leader, waarde rechts */
  .dhkc-print-spec-row {
    display: flex;
    align-items: baseline;
    font-size: 9pt;
    padding: 1px 0;
  }

  .dhkc-print-spec-label {
    flex: 1;
    display: flex;
    align-items: baseline;
    color: #333;
  }

  .dhkc-print-spec-label::after {
    content: "";
    flex: 1;
    border-bottom: 1px dotted #8a93b5;
    margin: 0 6px 2px 6px;
    min-width: 8px;
  }

  .dhkc-print-spec-value {
    font-weight: 600;
    color: #0a174e;
    white-space: nowrap;
  }

  .dhkc-print-qr-col {
    width: 26mm;
    max-width: 100%;
  }

  .dhkc-print-qr {
    width: 26mm;
    height: 26mm;
    max-width: 100%;
  }

  .dhkc-print-qr svg,
  .dhkc-print-qr img {
    width: 26mm;
    height: 26mm;
    max-width: 100%;
    display: block;
  }

  /* --- 3. COMPONENTKAARTEN ------------------------------------------------ */
  .dhkc-print-component {
    border: 2px solid #0a174e;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .dhkc-print-component-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    background: #eef2fa;
    padding: 6px 12px;
    border-bottom: 1px solid #c6d0e8;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .dhkc-print-component-icon {
    display: inline-flex;
    align-items: center;
    color: #0a174e;
    flex-shrink: 0;
  }

  .dhkc-print-component-icon svg {
    width: 18px;
    height: 18px;
  }

  .dhkc-print-component-title {
    font-weight: 700;
    color: #0a174e;
    font-size: 11pt;
  }

  .dhkc-print-pills {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-left: auto;
  }

  .dhkc-print-pill {
    display: inline-block;
    background: #e3e9f5;
    color: #0a174e;
    border-radius: 999px;
    padding: 1px 10px;
    font-size: 8pt;
    white-space: nowrap;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .dhkc-print-component-body {
    padding: 8px 12px;
  }

  .dhkc-print-usage-group {
    margin-bottom: 6px;
  }

  .dhkc-print-usage-group:last-child {
    margin-bottom: 0;
  }

  .dhkc-print-usage-head {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 12px;
    font-size: 9pt;
    margin-bottom: 3px;
  }

  .dhkc-print-usage-label strong {
    color: #0a174e;
  }

  .dhkc-print-usage-intervals {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px;
    color: #333;
  }

  /* Compacte tweekoloms bulletlijst met productnamen (geen afbeeldingen) */
  .dhkc-print-products {
    columns: 2;
    column-gap: 8mm;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .dhkc-print-products li {
    break-inside: avoid;
    page-break-inside: avoid;
    padding-left: 12px;
    position: relative;
    font-size: 9.5pt;
  }

  .dhkc-print-products li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #0a174e;
    font-weight: 700;
  }

  .dhkc-print-no-products {
    font-style: italic;
    color: #444;
    margin: 0;
    font-size: 9.5pt;
  }

  /* --- 4. VOETREGEL ------------------------------------------------------- */
  .dhkc-print-footer {
    width: 100%;
    margin-top: 10px;
    padding-top: 6px;
    border-top: 1px solid #ccc;
    font-size: 7.5pt;
    color: #777;
  }
}

/* ============================================================================
 * KENTEKENCHECKER FORMULIER — theme-onafhankelijke isolatie & polish (v4.3)
 * Alles gescoped onder .dhkc-checker met voldoende specificiteit (+ !important
 * op de props die WordPress-themes agressief overschrijven: background/color/
 * border/radius/font), zodat de plugin er op ELK theme hetzelfde uitziet.
 * ========================================================================== */
.dhkc-kentekenchecker-wrapper.dhkc-checker {
    max-width: 940px;
    margin: 0 auto;
    font-family: var(--dhkc-font-heading, helvetica-lt-pro, Arial, Helvetica, sans-serif);
    color: #1a1a1a;
}

.dhkc-checker .dhkc-checker-heading {
    margin: 22px 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dhkc-blue, #000049);
}
.dhkc-checker .dhkc-checker-heading:first-child { margin-top: 0; }

/* Kenteken-hint (was inline style) */
.dhkc-checker .dhkc-kenteken-hint {
    display: none;
    margin-top: 6px;
    font-size: 0.9em;
    color: #6c757d;
}

/* Zoekrij: input + filterknop (was inline style) */
.dhkc-checker .dhkc-search-row {
    display: flex;
    gap: 12px;
    align-items: stretch;
    margin: 0 0 4px 0;
}
.dhkc-checker .dhkc-search-row #zoekveld { flex: 1; margin: 0; }

.dhkc-checker .dhkc-zoek-resultaten {
    list-style: none;
    padding: 0;
    margin: 1em 0;
    max-height: 460px;
    overflow-y: auto;
}

/* --- Zoekveld + kenteken-select: licht, huisstijl --------------------------- */
.dhkc-checker #zoekveld,
.dhkc-checker .kenteken-country-selector select {
    background: #fff !important;
    color: #1a1a1a !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 15px !important;
}
.dhkc-checker #zoekveld:focus-visible,
.dhkc-checker .kenteken-country-selector select:focus-visible {
    border-color: var(--dhkc-blue, #000049) !important;
    outline: 2px solid rgba(10, 23, 78, 0.35);
    outline-offset: 1px;
}

/* --- Stap-voor-stap selector: nette kaart ---------------------------------- */
.dhkc-checker .dhkc-step-selector {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px 22px 22px;
    box-shadow: 0 1px 3px rgba(10, 23, 78, 0.06);
    margin-top: 8px;
}

.dhkc-checker .dhkc-combo-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--dhkc-blue, #000049);
    text-transform: none;
    letter-spacing: 0;
}

/* --- Categorie-tegels: licht, navy icoon, duidelijke actief-staat ---------- */
.dhkc-checker .dhkc-cat-tile {
    background: #fff !important;
    color: var(--dhkc-blue, #000049) !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    min-height: 110px;
    height: 100%;
    justify-content: center;
    gap: 10px;
    font-family: inherit !important;
}
.dhkc-checker .dhkc-cat-tile:hover {
    border-color: var(--dhkc-blue, #000049) !important;
    background: #f6f8ff !important;
}
.dhkc-checker .dhkc-cat-tile-active {
    border-color: var(--dhkc-blue, #000049) !important;
    background: #eef2fb !important;
    box-shadow: inset 0 -3px 0 var(--dhkc-accent, #d3a42d), 0 2px 8px rgba(0, 0, 73, 0.12);
}
/* Subtiel rond vlak achter het icoon (premium look) */
.dhkc-checker .dhkc-cat-tile-icon {
    background: #f3f5fb;
}
.dhkc-checker .dhkc-cat-tile:hover .dhkc-cat-tile-icon,
.dhkc-checker .dhkc-cat-tile-active .dhkc-cat-tile-icon {
    background: #e3e9f7;
}
.dhkc-checker .dhkc-cat-tile-icon,
.dhkc-checker .dhkc-cat-tile-label { color: var(--dhkc-blue, #000049) !important; }
/* Label heel houden (geen lelijke afbreking van 'Personenwagens') */
.dhkc-checker .dhkc-cat-tile-label {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}
.dhkc-checker .dhkc-cat-tile:focus-visible {
    outline: 3px solid rgba(10, 23, 78, 0.35);
    outline-offset: 2px;
}

/* --- Combo (merk/model/type): licht, dark tekst ---------------------------- */
.dhkc-checker .dhkc-combo-trigger {
    background: #fff !important;
    color: #1a1a1a !important;
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    min-height: 46px;
}
.dhkc-checker .dhkc-combo-trigger:hover:not(:disabled) { border-color: var(--dhkc-blue, #000049) !important; }
.dhkc-checker .dhkc-combo-trigger:focus-visible {
    border-color: var(--dhkc-blue, #000049) !important;
    outline: 3px solid rgba(10, 23, 78, 0.35);
    outline-offset: 1px;
}
.dhkc-checker .dhkc-combo-disabled .dhkc-combo-trigger,
.dhkc-checker .dhkc-combo-trigger:disabled {
    background: #f1f3f5 !important;
    color: #9aa0a6 !important;
    border-color: #e9ecef !important;
}
.dhkc-checker .dhkc-combo-search {
    background: #fff !important;
    color: #1a1a1a !important;
    border-bottom: 1px solid #e9ecef !important;
    border-radius: 0 !important;
}
.dhkc-checker .dhkc-combo-option { font-family: inherit; }
.dhkc-checker .dhkc-combo-panel { color: #1a1a1a; }

/* --- "toon productadvies"-knop: huisstijl pill (wint van theme) ------------ */
.dhkc-checker .dhkc-selector-go {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 16px !important;
    padding: 10px 26px !important;
    background: var(--dhkc-blue-mid, #0a174e) !important;
    color: #fff !important;
    border: 2px solid var(--dhkc-blue-mid, #0a174e) !important;
    border-radius: 130px !important;
    font-family: var(--dhkc-font-heading, helvetica-lt-pro, Arial, Helvetica, sans-serif) !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: lowercase !important;
    cursor: pointer !important;
    opacity: 1 !important;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.dhkc-checker .dhkc-selector-go:hover:not(:disabled) {
    background: var(--dhkc-blue, #000049) !important;
    border-color: var(--dhkc-blue, #000049) !important;
}
.dhkc-checker .dhkc-selector-go:focus-visible {
    outline: 3px solid rgba(10, 23, 78, 0.35);
    outline-offset: 2px;
}
.dhkc-checker .dhkc-selector-go:disabled {
    background: #e9ecef !important;
    border-color: #e9ecef !important;
    color: #9aa0a6 !important;
    cursor: not-allowed !important;
}

/* Respecteer prefers-reduced-motion (richtlijn) */
@media (prefers-reduced-motion: reduce) {
    .dhkc-kentekenchecker-wrapper *,
    #zoek-resultaten > li,
    #variant-list > li {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================================================
 * DASHBOARD-PANEEL + TABS (v4.4) — één samenhangende kaart i.p.v. losse blokken
 * Doel: overzichtelijk "dashboard", compact above the fold, en minder layout
 * shift (één zoekmethode tegelijk; resultaten in een stabiele zone eronder).
 * ========================================================================== */
@keyframes dhkcPanelFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* De kaart zelf — overflow zichtbaar zodat de landdropdown niet wordt afgekapt;
   de tabs zijn inset (margin) en hebben een eigen radius, dus geen clip nodig. */
.dhkc-checker .dhkc-panel {
    background: #fff;
    border: 1px solid #e7e9f0;
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(10, 23, 78, 0.12), 0 2px 6px rgba(10, 23, 78, 0.05);
    overflow: visible;
}

/* Segmented tab-control bovenin de kaart */
.dhkc-checker .dhkc-tabs {
    display: flex;
    gap: 4px;
    padding: 6px;
    margin: 16px 16px 0;
    background: #eef1f7;
    border-radius: 13px;
}
.dhkc-checker .dhkc-tab {
    flex: 1 1 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: 0 !important;
    border-radius: 10px !important;
    background: transparent !important;
    color: var(--dhkc-blue, #000049) !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.dhkc-checker .dhkc-tab .dhkc-tab-icon { flex-shrink: 0; }
.dhkc-checker .dhkc-tab:hover:not(.dhkc-tab-active) {
    background: rgba(255, 255, 255, 0.65) !important;
    color: var(--dhkc-blue-mid, #0a174e) !important;
}
.dhkc-checker .dhkc-tab-active {
    background: var(--dhkc-blue-mid, #0a174e) !important;
    color: #fff !important;
    box-shadow: 0 3px 10px rgba(10, 23, 78, 0.28);
}
.dhkc-checker .dhkc-tab:focus-visible {
    outline: 3px solid rgba(10, 23, 78, 0.35);
    outline-offset: 2px;
}

/* Tab-body: ruime, consistente padding */
.dhkc-checker .dhkc-tab-body {
    padding: 20px 22px 22px;
}
.dhkc-checker .dhkc-tabpanel-active {
    animation: dhkcPanelFade 0.22s ease;
}

/* Helptekst onder het kentekenveld */
.dhkc-checker .dhkc-tab-help {
    margin: 14px 0 2px;
    font-size: 13px;
    line-height: 1.5;
    color: #6c757d;
}

/* --- Kentekenrij: compacter zodat plaat + landknop één geheel vormen -------- */
.dhkc-checker .dhkc-kenteken-row {
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
}
.dhkc-checker .kenteken-wrapper { max-width: 100%; }
.dhkc-checker .kenteken-box {
    height: 78px;
    margin-bottom: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
    font-size: clamp(1.4rem, 2.2vw, 2.4rem);
}

/* --- Compacte custom landenkiezer (vlag + landcode) ------------------------ */
.dhkc-checker .kenteken-country-selector {
    position: relative;
    display: flex;
    flex: 0 0 auto;
}
/* native <select> verborgen maar bereikbaar voor assistive tech */
.dhkc-country-native-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    border: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
}
.dhkc-checker .dhkc-country-trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    height: 78px;
    padding: 0 16px;
    border: 2px solid #e7e9f0 !important;
    border-radius: 12px !important;
    background: #fff !important;
    color: var(--dhkc-blue, #000049) !important;
    font-family: inherit !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.dhkc-checker .dhkc-country-trigger:hover {
    border-color: var(--dhkc-blue, #000049) !important;
}
.dhkc-checker .dhkc-country-open .dhkc-country-trigger {
    border-color: var(--dhkc-blue, #000049);
    box-shadow: 0 0 0 3px rgba(10, 23, 78, 0.12);
}
.dhkc-checker .dhkc-country-trigger:focus-visible {
    outline: 3px solid rgba(10, 23, 78, 0.35);
    outline-offset: 2px;
}
.dhkc-country-trigger-flag { font-size: 26px; line-height: 1; }
.dhkc-country-trigger-code { font-size: 17px; letter-spacing: 0.04em; }
.dhkc-country-caret {
    width: 0;
    height: 0;
    margin-left: 2px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    opacity: 0.55;
    transition: transform 0.18s ease;
}
.dhkc-country-open .dhkc-country-caret { transform: rotate(180deg); }

.dhkc-checker .dhkc-country-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 1200;
    min-width: 250px;
    max-height: 320px;
    overflow-y: auto;
    padding: 6px;
    background: #fff;
    border: 1px solid #e7e9f0;
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(10, 23, 78, 0.20);
}
.dhkc-country-option {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border-radius: 8px;
    cursor: pointer;
    color: #1a1a1a;
}
.dhkc-country-option:hover,
.dhkc-country-option.dhkc-country-option-active { background: #f0f4ff; }
.dhkc-country-option[aria-selected="true"] { background: #e8ecf8; }
.dhkc-country-option-flag { font-size: 21px; line-height: 1; flex-shrink: 0; }
.dhkc-country-option-code {
    flex-shrink: 0;
    width: 26px;
    font-weight: 700;
    font-size: 13px;
    color: var(--dhkc-blue, #000049);
}
.dhkc-country-option-name { font-size: 14px; color: #333; white-space: nowrap; }

/* --- Zoekrij + "of stap voor stap"-divider in de Merk-tab ------------------ */
.dhkc-checker .dhkc-search-row { margin: 0; }

/* Zoekveld: normale schrijfwijze (placeholder niet als 'Zoek Op Merk Of Model') */
.dhkc-checker #zoekveld,
.dhkc-checker #zoekveld::placeholder {
    text-transform: none !important;
}

/* Filters-knop: licht/outline (thema overschrijft anders de witte achtergrond) */
.dhkc-checker .dhkc-filter-toggle-btn {
    background: #fff !important;
    color: #333 !important;
    border: 2px solid #e7e9f0 !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-weight: 600 !important;
}
.dhkc-checker .dhkc-filter-toggle-btn:hover {
    background: #f6f8ff !important;
    border-color: var(--dhkc-blue, #000049) !important;
}
.dhkc-checker .dhkc-filter-toggle-btn.has-filters {
    border-color: var(--dhkc-blue, #000049) !important;
    background: #f0f4ff !important;
}
.dhkc-checker .dhkc-step-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 16px;
    color: #9aa0a6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.dhkc-checker .dhkc-step-divider::before,
.dhkc-checker .dhkc-step-divider::after {
    content: "";
    flex: 1 1 auto;
    height: 1px;
    background: #e7e9f0;
}
.dhkc-checker .dhkc-step-divider span { flex: 0 0 auto; }

/* Step-selector binnen de kaart: plat (geen geneste kaart meer) */
.dhkc-checker .dhkc-step-selector {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

/* --- Resultatenzone: stabiel, met luchtruimte onder de kaart --------------- */
.dhkc-checker .dhkc-search-layout { margin-top: 18px; }
.dhkc-checker .dhkc-zoek-resultaten { margin: 0; }
.dhkc-checker .dhkc-zoek-resultaten:empty,
.dhkc-checker #kenteken-result:empty { display: none; }

/* --- Mobiel: landknop boven de plaat, alles vol breedte -------------------- */
@media (max-width: 768px) {
    .dhkc-checker .dhkc-tab-body { padding: 16px; }
    .dhkc-checker .dhkc-tab span { font-size: 13px; }
    .dhkc-checker .dhkc-kenteken-row { gap: 8px; }
    .dhkc-checker .kenteken-country-selector { width: 100%; }
    .dhkc-checker .dhkc-country-trigger {
        width: 100%;
        height: 54px;
        justify-content: flex-start;
    }
    .dhkc-checker .dhkc-country-caret { margin-left: auto; }
    .dhkc-checker .dhkc-country-panel { min-width: 100%; right: 0; }
}

/* ============================================================================
 * INLINE FILTERPANEEL (v4.4) — vervangt de off-canvas sidebar
 * Klapt onder de zoekrij uit, binnen de dashboard-kaart. Filtergroepen in een
 * responsive grid; op mobiel één kolom. Geen overlay / body-scroll-lock meer.
 * (Off-canvas-basisregels gebruiken !important, dus hier ook.)
 * ========================================================================== */
.dhkc-checker .dhkc-filter-sidebar {
    position: static !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    z-index: auto !important;
    background: #f7f8fb !important;
    border: 1px solid #e7e9f0;
    border-radius: 12px;
    margin: 12px 0 0;
    display: none;          /* standaard ingeklapt */
    overflow: hidden;
}
.dhkc-checker .dhkc-filter-sidebar.open {
    display: block;
    animation: dhkcPanelFade 0.2s ease;
}

/* Toggle-knop: duidelijke "actief"-staat als het paneel openstaat */
.dhkc-checker .dhkc-filter-toggle-btn[aria-expanded="true"] {
    background: #eef2fb !important;
    border-color: var(--dhkc-blue, #000049) !important;
    color: var(--dhkc-blue, #000049) !important;
}

/* Header van het inline paneel */
.dhkc-checker .dhkc-filter-header {
    padding: 12px 16px !important;
    background: transparent !important;
    border-bottom: 1px solid #e7e9f0 !important;
}
.dhkc-checker .dhkc-filter-header h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dhkc-blue, #000049);
}
.dhkc-checker .dhkc-filter-close {
    background: transparent !important;
    border: 0 !important;
    color: #6c757d !important;
}
.dhkc-checker .dhkc-filter-close:hover { color: var(--dhkc-blue, #000049) !important; }

/* Inhoud als responsive grid van filtergroepen */
.dhkc-checker .dhkc-filter-content {
    flex: none !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 6px 16px 8px !important;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0 28px;
}

/* Elke groep: geen volle-breedte-scheidingslijn meer (we staan in een grid) */
.dhkc-checker .dhkc-filter-section { border-bottom: 0 !important; }
.dhkc-checker .dhkc-filter-section-header {
    padding: 14px 0 8px !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--dhkc-blue, #000049) !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.dhkc-checker .dhkc-filter-section-header:hover { color: var(--dhkc-blue-mid, #0a174e) !important; }
.dhkc-checker .dhkc-filter-section-content { padding: 0 0 12px !important; }

/* Footer: knoppen branded (thema overschrijft anders de achtergrond) */
.dhkc-checker .dhkc-filter-footer {
    padding: 14px 16px !important;
    background: transparent !important;
    border-top: 1px solid #e7e9f0 !important;
}
.dhkc-checker .dhkc-filter-reset-btn {
    background: #fff !important;
    border: 2px solid #e7e9f0 !important;
    border-radius: 8px !important;
    color: #6c757d !important;
    font-family: inherit !important;
    font-weight: 600 !important;
}
.dhkc-checker .dhkc-filter-reset-btn:hover {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}
.dhkc-checker .dhkc-filter-apply-btn {
    background: var(--dhkc-blue-mid, #0a174e) !important;
    border: 2px solid var(--dhkc-blue-mid, #0a174e) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-family: inherit !important;
    font-weight: 700 !important;
}
.dhkc-checker .dhkc-filter-apply-btn:hover {
    background: var(--dhkc-blue, #000049) !important;
    border-color: var(--dhkc-blue, #000049) !important;
}

/* Mobiel: filtergroepen onder elkaar, knoppen vol breedte */
@media (max-width: 600px) {
    .dhkc-checker .dhkc-filter-content { grid-template-columns: 1fr; gap: 0; }
    .dhkc-checker .dhkc-filter-footer { flex-direction: column; }
    .dhkc-checker .dhkc-filter-reset-btn,
    .dhkc-checker .dhkc-filter-apply-btn { width: 100%; }
}

/* ============================================================================
 * ZOEK- EN KENTEKENRESULTATEN (v4.4) — dashboard-stijl doorgetrokken
 * Eén consistente kaart-taal: witte afgeronde kaarten, navy accenten, zachte
 * hover. Geldt voor kenteken-typekeuze, zoekresultaten, modelgroepen en
 * varianten. Resultaten staan in een eigen afgeronde "resultatenkaart".
 * ========================================================================== */

/* Resultatenzone als eigen kaart (consistent met het dashboard-paneel) */
.dhkc-checker .dhkc-search-results-container:not(:empty) {
    margin-top: 18px;
}
.dhkc-checker #zoek-resultaten:not(:empty),
.dhkc-checker #kenteken-result:not(:empty) {
    background: #fff;
    border: 1px solid #e7e9f0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10, 23, 78, 0.08);
    padding: 16px;
    margin: 0;
}
.dhkc-checker #kenteken-result:not(:empty) { margin-top: 14px; }

/* "Kies het juiste type"-kop (inline white → leesbaar navy, op elke achtergrond) */
.dhkc-checker #kenteken-result h5 {
    margin: 2px 4px 14px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em;
    color: var(--dhkc-blue, #000049) !important;
}
.dhkc-checker #kenteken-result h5 span { color: var(--dhkc-accent, #d3a42d) !important; }

/* Categorie-header in zoekresultaten: navy pill, ronder */
.dhkc-checker #zoek-resultaten .dhkc-category-header {
    background: var(--dhkc-blue-mid, #0a174e) !important;
    color: #fff !important;
    padding: 11px 16px !important;
    border-radius: 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em;
    margin: 10px 0 8px !important;
}
.dhkc-checker #zoek-resultaten .dhkc-category-header:first-child { margin-top: 0 !important; }

/* Merk-header: lichte navy tint, ronder, nette accentrand */
.dhkc-checker .dhkc-make-header {
    background: #eef2fb !important;
    color: var(--dhkc-blue, #000049) !important;
    border-left: 4px solid var(--dhkc-blue-mid, #0a174e) !important;
    border-radius: 10px !important;
    padding: 8px 14px !important;
    margin: 10px 0 6px 14px !important;
    font-weight: 700 !important;
}

/* Inspringing modelrijen iets ruimer/consistenter */
.dhkc-checker #zoek-resultaten .dhkc-search-result-item { margin-left: 14px !important; }

/* Gedeelde kaart-look voor alle resultaatknoppen */
.dhkc-checker #zoek-resultaten .dhkc-search-result-btn,
.dhkc-checker #zoek-resultaten .dhkc-search-group-btn,
.dhkc-checker #kenteken-result .dhkc-kenteken-result-btn,
.dhkc-checker #kenteken-result .dhkc-variant-btn {
    background: #fff !important;
    border: 1.5px solid #e7e9f0 !important;
    border-radius: 14px !important;
    padding: 12px 16px !important;
    color: #1a1a1a !important;
    font-family: inherit !important;
    font-size: 14px !important;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.12s ease !important;
}
.dhkc-checker #zoek-resultaten .dhkc-search-group-btn {
    border-color: #d9deec !important;
    font-weight: 600 !important;
}
.dhkc-checker #zoek-resultaten .dhkc-search-result-btn:hover,
.dhkc-checker #zoek-resultaten .dhkc-search-group-btn:hover,
.dhkc-checker #kenteken-result .dhkc-kenteken-result-btn:hover,
.dhkc-checker #kenteken-result .dhkc-variant-btn:hover {
    border-color: var(--dhkc-blue-mid, #0a174e) !important;
    background: #f6f8ff !important;
    box-shadow: 0 6px 16px rgba(10, 23, 78, 0.12) !important;
    transform: translateY(-1px);
}

/* Thumbnails en logo's iets ronder, in lijn met de kaarten */
.dhkc-checker .dhkc-search-thumb,
.dhkc-checker .dhkc-search-thumb-placeholder { border-radius: 8px !important; }
.dhkc-checker .dhkc-make-logo { border-radius: 8px !important; }

/* Kenteken-typekeuze: ruimte tussen kaarten */
.dhkc-checker #kenteken-result .dhkc-result-item { margin-bottom: 10px !important; }
.dhkc-checker #kenteken-result .dhkc-result-item:last-child { margin-bottom: 0 !important; }

/* Scrollbar in de resultatenkaart subtieler */
.dhkc-checker #zoek-resultaten:not(:empty) {
    max-height: 460px;
    overflow-y: auto;
}

/* ============================================================================
 * PRODUCTADVIES — HEADER-ACTIES (v4.4) — dashboard-stijl knoppen
 * Verticale stack: Print bovenaan (primair), Mijn favorieten in het midden
 * (met hartje), Nieuw advies onderaan (subtiel). Iconen zijn inline SVG.
 * Gescoped onder .dhkc-advies-page + !important op thema-gevoelige props.
 * ========================================================================== */
/* Titel + acties naast elkaar; wrapt netjes (acties onder de titel) als de
   beschikbare breedte krap is, zodat knoppen nooit worden afgekapt. */
.dhkc-advies-page .dhkc-title-row { flex-wrap: wrap; }
.dhkc-advies-page .dhkc-title-row > div:first-child { flex: 1 1 260px; min-width: 0; }

.dhkc-advies-page .dhkc-header-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    flex: 0 1 auto;
    min-width: 210px;
    margin: 0;
}

.dhkc-advies-page .dhkc-action-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 18px !important;
    border-radius: 14px !important;
    border: 2px solid transparent !important;
    font-family: var(--dhkc-font-heading, helvetica-lt-pro, Arial, Helvetica, sans-serif) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease !important;
}
.dhkc-advies-page .dhkc-action-btn:hover { transform: translateY(-1px); }
.dhkc-advies-page .dhkc-action-btn:focus-visible {
    outline: 3px solid rgba(10, 23, 78, 0.35);
    outline-offset: 2px;
}
.dhkc-advies-page .dhkc-action-icon { flex-shrink: 0; }
.dhkc-advies-page .dhkc-action-text { white-space: nowrap; }

/* Print — primair (navy gevuld) */
.dhkc-advies-page .dhkc-action-print {
    background: var(--dhkc-blue-mid, #0a174e) !important;
    border-color: var(--dhkc-blue-mid, #0a174e) !important;
    color: #fff !important;
}
.dhkc-advies-page .dhkc-action-print:hover {
    background: var(--dhkc-blue, #000049) !important;
    border-color: var(--dhkc-blue, #000049) !important;
    box-shadow: 0 6px 16px rgba(10, 23, 78, 0.25) !important;
}

/* Mijn favorieten — outline; actief = gevuld hart + lichte navy tint */
.dhkc-advies-page .dhkc-action-fav {
    background: #fff !important;
    border-color: #e7e9f0 !important;
    color: var(--dhkc-blue, #000049) !important;
}
.dhkc-advies-page .dhkc-action-fav:hover {
    border-color: var(--dhkc-blue, #000049) !important;
    background: #f6f8ff !important;
    box-shadow: 0 6px 16px rgba(10, 23, 78, 0.12) !important;
}
.dhkc-advies-page .dhkc-fav-heart {
    fill: none;
    color: var(--dhkc-accent, #d3a42d);
    transition: fill 0.18s ease, transform 0.12s ease;
}
.dhkc-advies-page .dhkc-action-fav.dhkc-fav-active {
    border-color: var(--dhkc-accent, #d3a42d) !important;
    background: #fff8e9 !important;
}
.dhkc-advies-page .dhkc-action-fav.dhkc-fav-active .dhkc-fav-heart {
    fill: var(--dhkc-accent, #d3a42d);
}

/* Nieuw advies — subtiel (ghost), onderaan */
.dhkc-advies-page .dhkc-action-new {
    background: transparent !important;
    border-color: #e7e9f0 !important;
    color: var(--dhkc-blue-mid, #0a174e) !important;
}
.dhkc-advies-page .dhkc-action-new:hover {
    background: #f1f3f8 !important;
    border-color: #d9deec !important;
}

/* Schonere subtitle: type + jaren netjes uitgelijnd */
.dhkc-advies-page .dhkc-subtitle .dhkc-subtitle-years {
    color: #5b6270;
    font-weight: 600;
    white-space: nowrap;
}

/* SEO-intro nu als paragraaf direct onder de titelzin (in de titelkaart) */
.dhkc-advies-page p.dhkc-seo-intro {
    margin: 12px 0 4px;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #44494f;
    max-width: 62ch;
}
.dhkc-advies-page p.dhkc-seo-intro strong { color: var(--dhkc-blue, #000049); }

/* Mobiel: titel + acties als nette verticale stack onder elkaar.
   BELANGRIJK: title-row staat op mobiel in flex-direction:column (themaregel).
   In een column-flex is flex-basis de HOOGTE — dus géén flex-wrap + géén
   basis:100% gebruiken (anders wrappen de knoppen naar een 2e kolom buiten
   beeld). We forceren nowrap en laten de items als gewone blokken stapelen. */
@media (max-width: 768px) {
    .dhkc-advies-page .dhkc-title-row {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
    }
    .dhkc-advies-page .dhkc-title-row > div:first-child {
        flex: 0 0 auto !important;
        width: 100%;
        min-width: 0;
    }
    .dhkc-advies-page .dhkc-header-actions {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin: 4px 0 16px !important;
        width: 100%;
        flex: 0 0 auto !important;
        min-width: 0;
    }
    .dhkc-advies-page .dhkc-action-btn {
        justify-content: center !important;
        font-size: 14px !important;
    }
}
