header .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  vertical-align: middle;
  margin-left: 12.5px;
}

/* Keep nav items and lang-switch on same line */
header nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

header nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

header .lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  line-height: 1;
  border-radius: 9999px;
  padding: 1px 2px;
  transition: all 0.2s ease;
}

header .lang-switch .flag {
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  margin: 0;
  letter-spacing: -4px;
}

header .lang-switch a.inactive {
  opacity: 0.7;
  filter: grayscale(1);
}

header .lang-switch a.active {
  opacity: 1;
  filter: none;
}

/* ✅ nieuwe toevoeging – alleen voor de NL contactpagina */
body.contact-nl .lang-switch a[data-lang="en"] .flag {
  filter: grayscale(100%);
  opacity: 0.5;
}

/* overige beeldstijlen */
img[src*="assets/images/placeholders/"] {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: box-shadow .25s ease;
}
img[src*="assets/images/placeholders/"]:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}
img[src*="assets/images/"] {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease;
}
img[src*="assets/images/"]:hover {
  box-shadow: 0 12px 34px rgba(0,0,0,0.08);
}
img[class*="ph_"],
img[src*="assets/images/"],
figure img {
  background-color: #fff;
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: box-shadow .25s ease;
}
img[class*="ph_"]:hover,
img[src*="assets/images/"]:hover,
figure img:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
header img,
footer img,
img[src*="logo"],
img[src*="icon"],
img[src*="whatsapp"],
img.whatsapp-icon {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
