/* =========================================================
   DirectClinics — Desktop header (>= 1100px)
   Standalone, explicitly enqueued. Two modes:
   - default            -> solid white header
   - body.dc-header-transparent -> transparent overlay, hero behind nav
   Mobile (< 1100px) keeps the existing mobile header untouched.
========================================================= */

/* Tokens staan sinds 21-09-2026 uitsluitend in dc-base.css (sectie 1).
   Dit bestand definieerde ze een tweede keer en won, omdat het na dc-base
   laadt. Niet opnieuw invoeren: schuif in dc-base.css. */
.dc-pbhero__text {
    padding-top: 20px;
}
/* ---- Show/hide: desktop from 1100px, mobile below ---- */
.dc-desktop-header { display: none; }

@media (min-width: 1100px) {
  .dc-desktop-header { display: block; }
  .dc-mobile-header,
  .dc-mobile-menu { display: none !important; }
}

/* =========================================================
   SHARED LAYOUT
========================================================= */
.dc-desktop-header *,
.dc-desktop-header *::before,
.dc-desktop-header *::after { box-sizing: border-box; }

.dc-dh-usp__inner,
.dc-dh-util__inner,
.dc-dh-nav__inner {
  display: flex;
  align-items: center;
}

/* ---- USP strip ---- */
.dc-dh-usp {
  background: var(--dc-dark);
  font-family: Inter, sans-serif;
}
.dc-dh-usp__inner { min-height: 36px; }
.dc-dh-usp__list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dc-dh-usp__list li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
}
.dc-dh-usp__list i {
  font-size: 16px;
  opacity: .85;
}

/* ---- Utility strip (Service / Locaties / phone / language) ---- */
.dc-dh-util {
  background: var(--dc-cream);
  //border-top: 1px solid var(--dc-line);
  font-family: Inter, sans-serif;
}
.dc-dh-util__inner {
  min-height: 44px;
  justify-content: flex-end;
  gap: 26px;
}
.dc-dh-util__menu {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.dc-dh-util__menu > li > a,
.dc-dh-phone {
  color: var(--dc-navy);
  text-decoration: none;
  font-size: 15px;
  transition: color .2s ease;
}
.dc-dh-util__menu > li > a:hover { color: var(--dc-teal); }

.dc-dh-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dc-navy);
  font-weight: 500;
}
.dc-dh-phone i { color: var(--dc-teal); font-size: 15px; }

.dc-dh-lang .wpml-ls,
.dc-dh-lang .wpml-ls-legacy-list-horizontal {
  margin: 0; padding: 0; background: transparent; border: 0;
}
.dc-dh-lang a { color: var(--dc-navy) !important; font-size: 15px; }

/* ---- Main nav row ---- */
.dc-dh-nav { background: #fff; transition: background .2s ease; }
.dc-dh-nav__inner {
  min-height: var(--dc-nav-h);
  justify-content: space-between;
  gap: 24px;
}

/* Logo: dark by default, light variant hidden */
.dc-dh-logo { display: inline-flex; align-items: center; }
.dc-dh-logo img { max-height: 35px; width: auto; display: block; }
.dc-dh-logo .dc-dh-logo--light { display: none; }
a.js-wpml-ls-item-toggle.wpml-ls-item-toggle {
    padding: 0;
}
/* Menu */
.dc-dh-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
	justify-content: flex-end;
}
.dc-dh-menu {
    min-width: 650px;
}
.dc-dh-menu > li { position: relative; }
.dc-dh-menu > li > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 3px;
  font-family: Inter, sans-serif;
  font-size: 15px;
  color: var(--dc-navy);
  text-decoration: none;
  transition: color .2s ease;
	    font-weight: 400;
}
.dc-dh-menu > li > a:hover,
.dc-dh-menu > li.current-menu-item > a { color: var(--dc-teal); }

/* CTA button */
.dc-dh-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 8px 30px;
  border-radius: 999px;
  background: var(--dc-cta-trans);
  color: #fff !important;
  font-size: 16px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.dc-dh-cta:hover {
  transform: translateY(-1px);
}

/* =========================================================
   TRANSPARENT MODE  (hero behind the nav)
========================================================= */
body.dc-header-transparent .dc-dh-usp {
  background: var(--dc-dark);
}
body.dc-header-transparent .dc-dh-usp__list li { color: rgba(255,255,255,.92); }
body.dc-header-transparent .dc-dh-usp__list i  { color: rgba(255,255,255,.92); opacity: 1; }

/* utility strip stays cream in transparent mode (matches mockup) */
body.dc-header-transparent .dc-dh-util { border-top: 0; }

/* nav overlays the hero: pull the following hero up under it */
body.dc-header-transparent .dc-dh-nav {
  position: relative;
  z-index: 30;
  background: transparent;
  margin-bottom: calc(-1 * var(--dc-nav-h));
}
body.dc-header-transparent .dc-dh-logo .dc-dh-logo--dark  { display: none; }
body.dc-header-transparent .dc-dh-logo .dc-dh-logo--light { display: block; }

body.dc-header-transparent .dc-dh-menu > li > a { color: #fff; }
body.dc-header-transparent .dc-dh-menu > li > a:hover,
body.dc-header-transparent .dc-dh-menu > li.current-menu-item > a { color: rgba(255,255,255,.75); }

body.dc-header-transparent .dc-dh-cta {
  background: var(--dc-cta-trans);
}

/* =========================================================
   STICKY + HIDE-ON-SCROLL  (desktop only)
   - #masthead is sticky (its parent #page is tall enough)
   - topbar (USP + utility) hides on scroll down via a transform
     on #masthead, so content below never reflows -> no flicker
   - when scrolled, the header is always solid white, also in
     transparent mode
========================================================= */
@media (min-width: 1100px) {
  #masthead {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform .3s ease;
    will-change: transform;
  }

  /* subtle shadow once scrolled (both modes) */
  .dc-desktop-header.dc-dh-scrolled .dc-dh-nav {
    box-shadow: 0 1px 5px rgba(0, 0, 0, .06);
  }

  /* compacter nav + kleiner logo in sticky */
  .dc-dh-nav__inner { transition: min-height .3s ease; }
  .dc-dh-logo img   { transition: height .3s ease; }
  .dc-desktop-header.dc-dh-scrolled .dc-dh-nav__inner { min-height: 72px; }
  .dc-desktop-header.dc-dh-scrolled .dc-dh-logo img   { height: 60px; }

  /* scrolled -> force transparent header to solid white */
  body.dc-header-transparent .dc-desktop-header.dc-dh-scrolled .dc-dh-nav {
    background: #fff;
  }
  body.dc-header-transparent .dc-desktop-header.dc-dh-scrolled .dc-dh-logo--dark  { display: block; }
  body.dc-header-transparent .dc-desktop-header.dc-dh-scrolled .dc-dh-logo--light { display: none; }
  body.dc-header-transparent .dc-desktop-header.dc-dh-scrolled .dc-dh-menu > li > a { color: var(--dc-navy); }
  body.dc-header-transparent .dc-desktop-header.dc-dh-scrolled .dc-dh-menu > li > a:hover,
  body.dc-header-transparent .dc-desktop-header.dc-dh-scrolled .dc-dh-menu > li.current-menu-item > a { color: var(--dc-teal); }

  /* megamenu open -> transparante header wit thema (zolang een mega-item gehoverd is) */
  body.dc-header-transparent .dc-desktop-header.dc-dh-mega-open .dc-dh-nav { background: #fff; }
  body.dc-header-transparent .dc-desktop-header.dc-dh-mega-open .dc-dh-logo--dark  { display: block; }
  body.dc-header-transparent .dc-desktop-header.dc-dh-mega-open .dc-dh-logo--light { display: none; }
  body.dc-header-transparent .dc-desktop-header.dc-dh-mega-open .dc-dh-menu > li > a { color: var(--dc-navy); }
  body.dc-header-transparent .dc-desktop-header.dc-dh-mega-open .dc-dh-menu > li > a:hover,
  body.dc-header-transparent .dc-desktop-header.dc-dh-mega-open .dc-dh-menu > li.current-menu-item > a { color: var(--dc-teal); }
}


/* =========================================================
   MEGA MENU + DROPDOWNS (desktop only)
========================================================= */
@media (min-width: 1100px) {
  .dc-dh-nav { position: relative; }            /* containing block for the mega panel */
  .dc-dh-mi { position: relative; }
  .dc-dh-mi.dc-dh-has-mega { position: static; }  /* mega spans the full nav width */

  /* chevron icon on parent items */
  .dc-dh-caret { font-size: 12px; margin-left: 6px; transition: transform .2s ease; color: #6ba8ae;}
  .dc-dh-mi:hover > a .dc-dh-caret { transform: rotate(180deg); }

  /* shared panel base + hover reveal */
  .dc-mega,
  .dc-dh-dropdown {
    position: absolute;
    top: 100%;
    opacity: 0; visibility: hidden;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 50;
  }
  .dc-dh-mi:hover > .dc-mega,
  .dc-dh-mi:hover > .dc-dh-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
  }

  /* ---- nice dropdown (non-mega) ---- */
  .dc-dh-dropdown {
    left: 0;
    min-width: 240px;
    list-style: none;
    margin: 0; padding: 10px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }
  .dc-dh-dropdown__li { position: relative; }
  .dc-dh-dropdown__a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 10px 14px; border-radius: 8px;
    color: var(--dc-navy); text-decoration: none; font-size: 15px;
    transition: background .15s ease, color .15s ease;
  }
  .dc-dh-dropdown__a:hover { background: var(--dc-cream); color: var(--dc-teal); }
  .dc-dh-dropdown--sub { top: 0; left: 100%; margin-left: 4px; }
  .dc-dh-dropdown__li:hover > .dc-dh-dropdown--sub { opacity: 1; visibility: visible; transform: translateY(0); }
  .dc-dh-caret-sm { font-size: 11px; opacity: .7; }

  /* utility-strip dropdowns: anchor right so they don't run off the viewport edge */
  .dc-dh-util__menu .dc-dh-dropdown { left: auto; right: 0; }
  .dc-dh-util__menu .dc-dh-dropdown--sub { left: auto; right: 100%; margin-left: 0; margin-right: 4px; }

  /* ---- mega panel ---- */
  .dc-mega {
    left: 0; width: 100%;
    background: #2a2a2a;
    color: #fff;
    box-shadow: 0 24px 50px rgba(0,0,0,.25);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .dc-mega__inner {
    display: flex; gap: 48px; align-items: flex-start;
    padding-top: 42px; padding-bottom: 42px;
  }
  .dc-mega__left { flex: 1; display: flex; gap: 44px; }
  .dc-mega__quote {
    flex: 0 0 220px;
    font-family: lora, Georgia, serif;
    font-size: 22px; line-height: 1.35; color: #fff;
  }
  .dc-mega__colswrap { flex: 1; }
  .dc-mega__cols {
    display: grid;
    grid-template-columns: repeat(var(--mega-cols, 3), 1fr);
    gap: 26px 40px;
  }
  .dc-mega__col-title { color: #fff; font-size: 15px; font-weight: 600; margin: 0 0 14px; font-family: Inter, sans-serif !important; }
  .dc-mega__links { list-style: none; margin: 0; padding: 0; }
  .dc-mega__links li { margin-bottom: 10px; }
  .dc-mega__link { color: rgba(255,255,255,.72); text-decoration: none; font-size: 15px; transition: color .15s ease; }
  .dc-mega__link:hover { color: #fff; }
  .dc-mega__all { display: inline-block; margin-top: 10px; color: #fff; font-weight: 600; font-size: 14px; text-decoration: none; }
  .dc-mega__all i, .dc-mega__bottom i { font-size: 11px; }
  .dc-mega__all:hover, .dc-mega__bottom:hover { opacity: .8; }
  .dc-mega__bottom { display: inline-block; margin-top: 30px; font-family: lora, Georgia, serif; font-size: 20px; color: #fff; text-decoration: none; }

  /* standard contact card */
  .dc-mega__contact {
    flex: 0 0 360px;
    background: var(--dc-cream);
    color: var(--dc-navy);
    border-radius: 16px;
    padding: 28px 30px;
  }
  .dc-mega__contact-title { font-family: lora, Georgia, serif; font-size: 24px; margin: 0 0 20px; color: var(--dc-navy); }
  .dc-mega__contact-row { display: flex; align-items: center; gap: 12px; color: var(--dc-navy); text-decoration: none; font-weight: 500; margin-bottom: 14px; font-size: 16px;}
  .dc-mega__contact-row i { color: var(--dc-teal); }
  .dc-mega__contact-links { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
  .dc-mega__contact-links a { color: var(--dc-teal); text-decoration: none; font-size: 15px; }
  .dc-mega__contact-links a:hover { text-decoration: underline; }
}

.wpml-ls-legacy-dropdown a.wpml-ls-item-toggle:after {
    content: "\f282";
    display: inline-block;
    font-family: bootstrap-icons !important;
    font-style: normal;
    font-weight: normal !important;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: -.225em;
    -webkit-font-smoothing: antialiased;
    margin-left: 8px;
    font-size: 13px;
    color: #6ba8ae;
	border: none;
    border-top: none;
    position: relative;
    top: auto;
    right: auto;

}
/* =========================================================
   DirectClinics — Tablet & mobiele header (< 1100px)
   Sticky midbar; topbar alleen bovenaan; zoekbalk klapt weg
   bij scroll-down en terug bij scroll-up.
========================================================= */
@media (max-width: 1099px) {

  /* Sticky: het hele masthead plakt; topbar + zoekbalk klappen dicht,
     midbar blijft zichtbaar. #page is hoog genoeg -> geen reflow. */
  #masthead { position: sticky; top: 0; z-index: 999; }

  .dc-mobile-header {
    background: #fff;
    font-family: Inter, sans-serif;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
    position: sticky;
    top: 0;
    z-index: 999;
  }

  /* ---- Topbar: USP-carrousel (donker) — verbergt op scroll-down ---- */
  .dc-mobile-topbar-wrapper {
    overflow: hidden;
    max-height: 46px;
    background: var(--dc-dark);
    transition: max-height .3s ease, opacity .25s ease;
  }
  .dc-mobile-topbar-wrapper.dc-hide { max-height: 0; opacity: 0; }
  .dc-mobile-topbar { background: var(--dc-dark); }
  /* voorkom witte-balk-flash: toon alleen de eerste USP tot Swiper geinitialiseerd is */
  .dc-mobile-usp:not(.swiper-initialized) .swiper-slide ~ .swiper-slide { display: none; }
  .dc-mobile-usp { padding: 0 14px; }
  .dc-mobile-usp .dc-mobile-usp__item {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 46px; color: rgba(255, 255, 255, .92); font-size: 13px; font-weight: 500;
  }
  .dc-mobile-usp .dc-dh-usp__ico   { width: 1em; height: 1em; flex: 0 0 auto; }
  .dc-mobile-usp .dc-dh-usp__ring  { fill: rgba(255, 255, 255, .9); }
  .dc-mobile-usp .dc-dh-usp__check { fill: rgba(255, 255, 255, .9); }

  /* ---- Header bar (wit): logo links, telefoon + hamburger rechts ---- */
  .dc-mobile-midbar {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 10px 14px; min-height: 60px; 
  }
  .dc-mobile-midbar .dc-logo { display: inline-flex; align-items: center; flex: 0 1 auto; min-width: 0; }
  .dc-mobile-midbar .dc-logo img { height: 30px !important; width: auto; }
  .dc-mobile-midbar .dc-dh-logo--dark  { display: block; }
  .dc-mobile-midbar .dc-dh-logo--light { display: none; }
  .dc-mobile-actions { display: flex; align-items: center; gap: 4px; flex: 0 0 auto; }
  .dc-mobile-actions .call-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 50%; background: transparent; flex: 0 0 auto;
  }
  .dc-mobile-actions .call-icon svg { width: 20px; height: 20px; }
  .dc-mobile-actions .call-icon svg path { stroke: #D8CFC4; fill: #D8CFC4; }
  .dc-mobile-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer;
    flex: 0 0 auto;
  }
  .dc-mobile-toggle span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--dc-navy); }

  /* ---- Transparante header (mobiel) ----
     Topbar blijft (donker); de header bar wordt transparant en de hero schuift
     eronder (pull op de header bar). Telefoon + hamburger wit. Zodra gescrold
     (.dc-mobile-scrolled) is de header bar weer solide wit. */
  body.dc-header-transparent .dc-mobile-header { background: transparent; box-shadow: none; }
  body.dc-header-transparent .dc-mobile-midbar {
    background: transparent;
    position: relative;
    z-index: 1000;
    margin-bottom: calc(-1 * var(--dc-mb-h, 60px));
  }
  body.dc-header-transparent .dc-mobile-midbar .dc-dh-logo--dark  { display: none; }
  body.dc-header-transparent .dc-mobile-midbar .dc-dh-logo--light { display: block; }
  body.dc-header-transparent .dc-mobile-header.dc-mobile-scrolled .dc-mobile-midbar .dc-dh-logo--dark  { display: block; }
  body.dc-header-transparent .dc-mobile-header.dc-mobile-scrolled .dc-mobile-midbar .dc-dh-logo--light { display: none; }
  body.dc-header-transparent .dc-mobile-toggle span { background: #fff; }
  body.dc-header-transparent .dc-mobile-actions .call-icon svg path { stroke: #fff; fill: #fff; }

  body.dc-header-transparent .dc-mobile-header.dc-mobile-scrolled { background: #fff; }
  body.dc-header-transparent .dc-mobile-header.dc-mobile-scrolled .dc-mobile-midbar { background: #fff; }
  body.dc-header-transparent .dc-mobile-header.dc-mobile-scrolled .dc-mobile-toggle span { background: var(--dc-navy); }
  body.dc-header-transparent .dc-mobile-header.dc-mobile-scrolled .dc-mobile-actions .call-icon svg path { stroke: #D8CFC4; fill: #D8CFC4; }

  /* =======================================================
     Mobiel menu (custom paneel onder de header)
  ======================================================= */
  .dc-mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 990;
    background: var(--dc-cream);
    display: flex; flex-direction: column;
    padding-top: var(--dc-header-h, 110px);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  body.dc-menu-open { overflow: hidden; }
  body.dc-menu-open .dc-mobile-menu { opacity: 1; visibility: visible; transform: translateY(0); }

  /* header solide wit zolang het menu open is (ook op transparante paginas) */
  body.dc-menu-open .dc-mobile-header,
  body.dc-menu-open .dc-mobile-midbar { background: #fff !important; }
  body.dc-menu-open .dc-mobile-midbar { margin-bottom: 0 !important; }
  body.dc-menu-open .dc-mobile-toggle span { background: var(--dc-navy); }
  body.dc-menu-open .dc-mobile-actions .call-icon svg path { stroke: #D8CFC4; fill: #D8CFC4; }
  body.dc-menu-open .dc-mobile-midbar .dc-dh-logo--dark  { display: block; }
  body.dc-menu-open .dc-mobile-midbar .dc-dh-logo--light { display: none; }

  /* navigatie-deel: drill-down panels */
  .dc-mobile-menu__body { flex: 1 1 auto; position: relative; overflow: hidden; }
  .dc-mobile-panels { position: absolute; inset: 0; }
  .dc-mobile-panel {
    position: absolute; inset: 0; overflow-y: auto;
    padding: 6px 22px 22px;
    background: var(--dc-cream);
    transform: translateX(100%);
    transition: transform .3s ease;
  }
  .dc-mobile-panel.is-active { transform: translateX(0); }
  .dc-mobile-panel.is-past   { transform: translateX(-100%); }

  .dc-mobile-menu .dc-mobile-nav { list-style: none; margin: 0; padding: 0; }
  .dc-mobile-menu .dc-mobile-item { border-bottom: 0; }
  .dc-mobile-menu .dc-mobile-row { display: flex; align-items: center; justify-content: space-between; }
  .dc-mobile-menu .dc-mobile-link {
    flex: 1; display: block; padding: 10px 2px; text-decoration: none;
    color: var(--dc-navy); font-size: 16px;
  }
  .dc-mobile-menu .dc-mobile-link:hover { color: var(--dc-teal); }
  .dc-mobile-menu .dc-open-sub {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 0; background: transparent; cursor: pointer; color: var(--dc-teal);
  }
  .dc-mobile-menu .dc-open-sub .dashicons { font-size: 24px; }
  .dc-mobile-menu .dc-mobile-sub { display: none; }

  .dc-mm-subhead { display: flex; align-items: center; gap: 12px; padding: 6px 0 8px; }
  .dc-mm-back {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--dc-cream);
    cursor: pointer; color: var(--dc-navy); flex: 0 0 auto;
  }
  .dc-mm-back .dashicons { font-size: 22px; }
  .dc-mm-subhead h3 { margin: 0; font-family: lora, Georgia, serif; font-size: 22px; color: var(--dc-navy); }
  .dc-mm-all-item .dc-mobile-link { color: var(--dc-teal); font-weight: 600; }
  .dc-mobile-menu .dc-mobile-link.is-current { color: var(--dc-teal); font-weight: 600; }

  /* vaste onderkant: buttons + zoeken + bottom-bar */
  .dc-mobile-menu__foot { flex: 0 0 auto; }
  .dc-mobile-menu__cta { display: flex; gap: 12px; padding: 16px 22px 10px; }
  .dc-mm-plan {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 15px; border-radius: 999px; background: #32666B; color: #fff !important;
    text-decoration: none; font-family: lora, Georgia, serif; font-size: 16px;
    transition: background .2s ease;
  }
  .dc-mm-plan:hover { background: #295258; }
  .dc-mm-call {
    flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
    width: 100px; border-radius: 999px; background: #32666B;
    transition: background .2s ease;
  }
  .dc-mm-call:hover { background: #295258; }
  .dc-mm-call svg { width: 24px; height: 24px; }
  .dc-mm-call svg path { stroke: #fff; fill: #fff; }

  .dc-mobile-menu__search { padding: 4px 22px 14px; }
  .dc-mobile-menu__search .dc-specialisme-search { margin: 0; }
  .dc-mobile-menu__search .dc-search-wrap { position: relative; display: flex; align-items: center; }
  .dc-mobile-menu__search .dc-search-input,
  .dc-mobile-menu__search input.form-control.dc-search-input {
    width: 100%; border: 1.5px solid var(--dc-teal); border-radius: 999px;
    padding: 8px 48px 8px 20px; background: #fff; color: var(--dc-teal); font-size: 16px;
    outline: none; box-shadow: none; height: auto;
  }
  .dc-mobile-menu__search .dc-search-input::placeholder { color: var(--dc-teal); opacity: .9; }
  .dc-mobile-menu__search .dc-search-btn {
    position: absolute; right: 10px; border: 0; background: none; cursor: pointer;
    color: var(--dc-teal); display: inline-flex; align-items: center; padding: 6px;
  }
  .dc-mobile-menu__search .dc-search-btn .dashicons { font-size: 22px; width: 22px; height: 22px; }

  .dc-mobile-menu__bottom {
    display: flex; align-items: center; justify-content: space-around; gap: 8px;
    padding: 16px 20px; background: #D8CFC4;
  }
  .dc-mm-bottom-nav { display: flex; align-items: center; gap: 22px; margin: 0; padding: 0; list-style: none; }
  .dc-mm-bottom-nav a { color: var(--dc-navy); text-decoration: none; font-size: 15px; font-weight: 500; }
  .dc-mm-bottom-nav a:hover { color: var(--dc-teal); }
  .dc-mm-lang .wpml-ls { margin: 0; padding: 0; }
  .dc-mm-lang .wpml-ls a { color: var(--dc-navy) !important; font-size: 15px; font-weight: 500; background: transparent !important; padding: 0 !important; }

  /* bottom-nav (DC_Mobile_Walker): top-level plat inline; chevron drilt in het hoofdpaneel */
  .dc-mm-bottom-nav > .dc-mobile-item { border: 0; }
  .dc-mm-bottom-nav .dc-mobile-row { display: inline-flex; align-items: center; gap: 0; }
  .dc-mm-bottom-nav .dc-mobile-link { padding: 0; font-size: 15px; font-weight: 500; color: var(--dc-navy); }
  .dc-mm-bottom-nav .dc-mobile-link:hover { color: var(--dc-teal); }
  .dc-mm-bottom-nav .dc-open-sub { width: auto; height: auto; padding: 0 0 0 2px; color: var(--dc-navy); }
  .dc-mm-bottom-nav .dc-open-sub .dashicons { font-size: 18px; }
  .dc-mm-bottom-nav .dc-mobile-sub { display: none; }

  /* taalkiezer: drilt (net als Service) in het hoofdpaneel */
  .dc-mm-lang-toggle {
    display: inline-flex; align-items: center; gap: 2px; text-decoration: none;
    color: var(--dc-navy); font-size: 15px; font-weight: 500;
  }
  .dc-mm-lang-toggle:hover { color: var(--dc-teal); }
  .dc-mm-lang-toggle .dashicons { font-size: 16px; color: var(--dc-teal); }

  /* hamburger -> X wanneer open */
  .dc-mobile-toggle span { transition: transform .25s ease, opacity .2s ease; }
  .dc-mobile-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .dc-mobile-toggle.is-open span:nth-child(2) { opacity: 0; }
  .dc-mobile-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Zeer smalle telefoons: belknop verbergen zodat logo + Afspraak passen */
@media (max-width: 400px) {
  .dc-mobile-cta, .dc-mobile-cta.btn.btn-primary { padding: 8px 14px; }
}

.dc-dh-usp__ico { width: 1em; height: 1em; vertical-align: -.125em; flex: 0 0 auto; }
/* Vinkje leest z'n kleuren uit variabelen */
.dc-dh-usp__ring  { fill: var(--dc-usp-ring); }
.dc-dh-usp__check { fill: var(--dc-usp-check); }

/* Lichte topbar (standaard) */
.dc-dh-usp {
    --dc-usp-ring:  #D8CFC4; /* cirkel */
    --dc-usp-check: #D8CFC4; /* vinkje */
}

/* Donkere topbar (transparante header) */
body.dc-header-transparent .dc-dh-usp {
    --dc-usp-ring:  #D8CFC4; /* cirkel */
    --dc-usp-check: #D8CFC4; /* vinkje */
}
a.dc-mega__contact-row span {
    color: #000;
}