/* Als je ?customcss=true achter de url, kan je testen zonder dat het live staat  */
/* Gebruik .customcss als eerste element op de test omgeving. */

/* Nieuwe blogpagina */
/* ===== INLINE FEATURED PRODUCT BLOK ===== */

.blog-product-inline {
  padding: 1.5rem 1rem;
  box-sizing: border-box;
}

.blog-product-inline-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* mobiel standaard */
  gap: 1rem;
  align-items: flex-start;
}

/* Afbeelding */
.blog-product-inline-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Content */
.blog-product-inline-content {
  flex: 1;
}

/* CTA */
.blog-product-inline-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  background-color: #0099e5;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.blog-product-inline-cta:hover,
.blog-product-inline-cta:focus {
  background-color: #007fc0;
  transform: translateY(-1px);
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 768px) {

  .blog-product-inline-inner {
    flex-direction: row;       /* afbeelding links, tekst rechts */
    gap: 2rem;
    align-items: center;
  }

  .blog-product-inline-image {
    flex: 0 0 30%;             /* afbeelding 30% */
  }

  .blog-product-inline-content {
    flex: 1;                   /* tekst 70% */
  }
}

/* ===== UITGELICHT PRODUCT BLOK ===== */

.blog-product-section {
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.blog-product-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* mobiel */
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #f7f8fa;
  border-radius: 16px;
  box-sizing: border-box;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Afbeeldingblok */
.blog-product-image {
  flex: 0 0 auto;
}

.blog-product-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Tekstblok */
.blog-product-content {
  flex: 1 1 auto;
}

/* CTA-knop */
.blog-product-cta {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background-color: #0099e5;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.blog-product-cta:hover,
.blog-product-cta:focus {
  background-color: #007fc0;
  transform: translateY(-1px);
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 768px) {
  .blog-product-inner {
    flex-direction: row;       /* afbeelding links, tekst rechts */
    align-items: center;
    gap: 2rem;
  }

  .blog-product-image {
    flex: 0 0 35%;             /* ±35% afbeelding */
  }

  .blog-product-content {
    flex: 1 1 65%;             /* ±65% tekst/CTA */
  }
}

/* ====== BLOG TIPS SECTIE ====== */

.blog-tips-section {
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.blog-tips-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Lijst met tips */
.blog-tips-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

/* Individuele tip */
.blog-tips-item {
  display: flex;
  flex-direction: column; /* mobiel: afbeelding boven tekst */
  gap: 1rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Afbeeldingscontainer */
.blog-tips-image {
  flex: 0 0 auto;
}

/* Verberg de hele container als er geen afbeelding in staat */
.blog-tips-image:empty {
  display: none;
}

/* Afbeelding zelf */
.blog-tips-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Tekstblok */
.blog-tips-content {
  flex: 1;
}

/* ====== DESKTOP ====== */
@media (min-width: 768px) {

  .blog-tips-item {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  /* Variant: afbeelding rechts */
  .blog-tips-item--right {
    flex-direction: row-reverse;
  }

  /* Afbeelding 40% breed als hij aanwezig is */
  .blog-tips-image:not(:empty) {
    flex: 0 0 40%;
  }

  /* Als er geen afbeelding is → content vult 100% */
  .blog-tips-image:empty + .blog-tips-content {
    flex: 1 1 100%;
  }
}


/* ====== BLOG VIDEO + TEKST LAYOUT ====== */

.blog-video-tekst-section {
  padding-top: 1rem;
  box-sizing: border-box;
  width: 100%;
  overflow: visible; /* voorkomt dat video wordt afgeknipt */
}

.blog-video-tekst-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  width: 100%;
}

/* 50/50 — desktop */
.blog-video-tekst-tekst,
.blog-video-tekst-video {
  flex: 1 1 50%;
  min-width: 0; /* belangrijk! voorkomt dat iframe verdwijnt in flexbox */
}

/* Responsive video */
.blog-video-tekst-video-ratio {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
  overflow: hidden; /* alleen de video container, niet de sectie */
}

.blog-video-tekst-video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* ====== MOBIEL ====== */
@media (max-width: 768px) {

  .blog-video-tekst-inner {
    flex-direction: column;
  }

  .blog-video-tekst-tekst,
  .blog-video-tekst-video {
    flex: 1 1 100%;
    width: 100%;
  }

  .blog-video-tekst-video {
    display: block; /* forceert zichtbaarheid */
  }
}

/* Nieuwe categoriepagina */
.service-banner {
  display: none !important;
}

/* =========================
   Kleurhulp services
   ========================= */

.kleurhulp-services {
  margin: 32px 0;
}

.kleurhulp-services__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.kleurhulp-services__intro {
  max-width: 760px;
  margin-bottom: 20px;
}

.kleurhulp-services__intro h2 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.kleurhulp-services__intro p {
  margin: 0;
  line-height: 1.6;
}

.kleurhulp-services__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================
   ITEM
   ========================= */

.kleurhulp-service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 16px;
  box-sizing: border-box;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.kleurhulp-service-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

/* =========================
   AFBEELDING (NIEUW)
   ========================= */

.kleurhulp-service-item__image-wrap {
  flex: 0 0 120px; /* kleiner */
  max-width: 120px;
}

.kleurhulp-service-item__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

/* =========================
   CONTENT
   ========================= */

.kleurhulp-service-item__content {
  flex: 1;
  min-width: 0;
}

.kleurhulp-service-item__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.3;
}

.kleurhulp-service-item__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
}

/* knop blijft in lijn met rest site */
.kleurhulp-service-item__link {
  display: inline-block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #0099e5;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 153, 229, 0.3);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.kleurhulp-service-item__link:hover,
.kleurhulp-service-item__link:focus {
  color: #0086c8;
  border-bottom-color: rgba(0, 134, 200, 0.6);
}

/* =========================
   MOBIEL
   ========================= */

@media (max-width: 768px) {
  .kleurhulp-service-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
  }

  .kleurhulp-service-item__image-wrap {
    flex: 0 0 84px;
    max-width: 84px;
  }

  .kleurhulp-service-item__title {
    font-size: 16px;
  }

  .kleurhulp-service-item__text {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .kleurhulp-service-item__link {
    font-size: 13px;
  }
}


.cat-hero {
  position: relative;
  min-height: 360px;
  margin: 0 0 40px;
  border-radius: 22px;
  overflow: hidden;
  background: #f9f9f9;
}

.cat-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.cat-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(41,56,75,.82), rgba(41,56,75,.25));
}

.cat-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 40px;
}

.cat-hero__card {
  max-width: 560px;
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.cat-hero__title {
  margin: 0 0 14px;
  color: #29384b;
  font-size: 42px;
  line-height: 1.15;
}

.cat-hero__text {
  margin: 0 0 18px;
  color: #29384b;
  font-size: 17px;
  line-height: 1.6;
}

/* ==========================================
   CTA knop
   ========================================== */

.categorie-promo-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: fit-content;

  background: #0099e5;
  color: #ffffff !important;

  text-decoration: none !important;

  border-radius: 999px;

  padding: 12px 18px;

  font-weight: 700;
  line-height: 1.2;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.categorie-promo-card__button:hover {
  background: #007fc0;
  color: #ffffff !important;

  transform: translateY(-1px);
}

.categorie-promo-card__button img {
  width: 20px;
  height: 20px;
}

/* ==========================================
   Hoofdgrid
   ========================================== */

.categorie-promo-grid-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;

  margin: 28px 0 40px;

  align-items: stretch;
}

/* ==========================================
   Rechterkolom
   ========================================== */

.categorie-promo-header-column {
  display: grid;
  gap: 22px;
}

/* ==========================================
   Kaarten
   ========================================== */

.categorie-promo-card-header {
  display: flex;

  background: #f9f9f9;

  border: 1px solid #ececec;
  border-radius: 18px;

  overflow: hidden;
}

/* ==========================================
   Afbeelding
   ========================================== */

.categorie-promo-card-header .categorie-promo-card__image {
  display: block;

  flex: 0 0 180px;
  width: 180px;

  height: auto;

  object-fit: cover;
}

/* ==========================================
   Content
   ========================================== */

.categorie-promo-card__content {
  flex: 1 1 auto;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 22px;

  box-sizing: border-box;
}

.categorie-promo-card__content h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

.categorie-promo-card__content p {
  margin-top: 0;
  margin-bottom: 16px;
}

/* ==========================================
   Tablet
   ========================================== */

@media (max-width: 980px) {

  .categorie-promo-grid-header {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   Mobiel
   ========================================== */

@media (max-width: 767px) {

  .categorie-promo-grid-header {
    gap: 18px;
    margin-bottom: 28px;
  }

  .categorie-promo-header-column {
    gap: 18px;
  }

  /* BELANGRIJK:
     horizontaal houden op mobiel */
  .categorie-promo-card-header {
    display: flex;
    flex-direction: row;
    align-items: stretch;
  }

  .categorie-promo-card-header .categorie-promo-card__image {
    flex: 0 0 120px;
    width: 120px;
    height: auto;
  }

  .categorie-promo-card__content {
    padding: 16px;
  }

  .categorie-promo-card__content h3 {
    margin-bottom: 8px;
  }

  .categorie-promo-card__content p {
    margin-bottom: 14px;

    font-size: 14px;
    line-height: 1.55;
  }

  /* knop compact houden */
  .categorie-promo-card__button {
    width: fit-content;

    padding: 10px 14px;

    font-size: 14px;
  }
}

.categorie-blog-highlight {
  min-height: 100%;
  border-radius: 18px;
  background: #29384b;
  color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.categorie-blog-highlight__title,
.categorie-blog-highlight__text {
  color: #ffffff;
}

.categorie-blog-highlight__title {
  margin: 0 0 10px;
}

.categorie-blog-highlight__text {
  margin: 0 0 18px;
}

.behang-stijlen {
  margin: 36px 0;
}

.behang-stijlen__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 22px;
}

.behang-stijlen__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.behang-stijlen__card {
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
}

.behang-stijlen__image {
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.behang-stijlen__content {
  padding: 20px;
}

.keuzehulp-kleuren-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.keuzehulp-kleuren-blok {
  background: #f9f9f9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ececec;
}

.keuzehulp-kleuren-color-block {
  height: 120px;
}

.keuzehulp-kleuren-info-wrap {
  padding: 14px;
}

.keuzehulp-kleuren-title {
  font-weight: 700;
  color: #29384b;
}

.keuzehulp-kleuren-cat {
  font-size: 13px;
  color: #667085;
}

.keuzehulp-kleuren-color-btn a {
  display: inline-block;
  margin-bottom: 10px;
  color: #0099e5;
  font-weight: 700;
  text-decoration: none;
}

.categorie-blog-layout {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 24px;
  margin: 26px 0 40px;
}

.categorie-blog-layout__col--posts {
  display: grid;
  gap: 18px;
}

.categorie-blog-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 16px;
}

.categorie-blog-item__image {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.winkel-bezoek {
  margin: 36px 0;
}

.winkel-bezoek__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: #f9f9f9;
  border-radius: 22px;
  padding: 24px;
}

.winkel-bezoek__image img {
  width: 100%;
  border-radius: 18px;
}

.winkel-bezoek__stores {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.winkel-bezoek__store {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 12px;
  text-decoration: none;
}

.winkel-bezoek__store-title {
  color: #29384b;
  font-weight: 700;
}

.winkel-bezoek__store-link {
  color: #0099e5;
  font-weight: 700;
}

@media (max-width: 980px) {
  .categorie-promo-grid-header,
  .categorie-blog-layout,
  .winkel-bezoek__container {
    grid-template-columns: 1fr;
  }

  .behang-stijlen__grid,
  .keuzehulp-kleuren-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cat-hero__inner {
    padding: 20px;
  }

  .cat-hero__card {
    padding: 22px;
  }

  .cat-hero__title {
    font-size: 30px;
  }

  .categorie-promo-card-header,
  .categorie-blog-item {
    grid-template-columns: 1fr;
  }

  .behang-stijlen__head {
    display: block;
  }

  .behang-stijlen__grid,
  .keuzehulp-kleuren-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Overige categorieën - 4 kaarten */
.categorie-promo-grid-four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 24px 0 40px;
}

.categorie-promo-grid-four .categorie-promo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.categorie-promo-grid-four .categorie-promo-card__image {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.categorie-promo-grid-four .categorie-promo-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.categorie-promo-grid-four .categorie-promo-card__content h3 {
  margin: 0 0 12px;
  color: #29384b;
  font-size: 19px;
  line-height: 1.3;
}

.categorie-promo-grid-four .categorie-promo-card__content ul {
  margin: 0 0 16px;
  padding-left: 18px;
}

.categorie-promo-grid-four .categorie-promo-card__content li {
  margin-bottom: 7px;
  color: #29384b;
  line-height: 1.45;
}

.categorie-promo-grid-four .categorie-promo-card__content a {
  color: #0099e5;
  font-weight: 600;
  text-decoration: none;
}

.categorie-promo-grid-four .categorie-promo-card__content a:hover {
  color: #007fc0;
  text-decoration: underline;
}

.categorie-promo-grid-four .categorie-promo-card__more {
  margin: auto 0 0;
}

.categorie-promo-grid-four .categorie-promo-card__more a {
  font-weight: 700;
}

/* Tablet */
@media (max-width: 1024px) {
  .categorie-promo-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobiel: 2 blokken per rij */
@media (max-width: 767px) {
  .categorie-promo-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .categorie-promo-grid-four .categorie-promo-card__image {
    height: 120px;
  }

  .categorie-promo-grid-four .categorie-promo-card__content {
    padding: 14px;
  }

  .categorie-promo-grid-four .categorie-promo-card__content h3 {
    font-size: 16px;
  }

  .categorie-promo-grid-four .categorie-promo-card__content ul {
    padding-left: 16px;
  }

  .categorie-promo-grid-four .categorie-promo-card__content li,
  .categorie-promo-grid-four .categorie-promo-card__content a {
    font-size: 13px;
  }
}

/* ==========================================
   Sfeerblok met producten
   ========================================== */

.sfeer-met-producten {
  margin: 40px 0 56px;
}

.sfeer-met-producten__title {
  margin: 0 0 22px;
  color: #29384b;
  line-height: 1.2;
}

/* Desktop: kleinere afbeelding, groter productblok */
.sfeer-met-producten__grid {
  display: grid;
  grid-template-columns: 0.52fr 1.48fr;
  gap: 24px;
  align-items: start;
}

/* ==========================================
   Linker sfeerbeeld
   ========================================== */

.sfeer-met-producten__foto {
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* afbeelding kleiner maken */
.sfeer-met-producten__foto picture,
.sfeer-met-producten__foto img {
  display: block;
  width: 100%;
}

.sfeer-met-producten__foto img {
  height: 120px;
  object-fit: cover;
}

/* donkere overlay */
.sfeer-met-producten__foto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.18) 45%,
    rgba(0,0,0,0.62) 100%
  );
}

/* ==========================================
   Overlay content
   ========================================== */

.sfeer-met-producten__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px;
}

.sfeer-met-producten__overlay-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.1;
}

.sfeer-met-producten__overlay-text {
  margin: 0 0 16px;
  color: rgba(255,255,255,0.92);
  font-size: 15px;
  line-height: 1.6;
  max-width: 420px;
}

.sfeer-met-producten__overlay-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #0099e5;
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sfeer-met-producten__overlay-cta:hover {
  background: #007fc0;
  transform: translateY(-1px);
}

/* ==========================================
   Rechter products blok
   ========================================== */

.sfeer-met-producten__rechts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

/* ==========================================
   Tablet
   ========================================== */

@media (max-width: 1024px) {

  .sfeer-met-producten__grid {
    grid-template-columns: 1fr;
  }

  .sfeer-met-producten__foto img {
    height: 420px;
  }
}

/* ==========================================
   Mobiel
   ========================================== */

@media (max-width: 767px) {

  .sfeer-met-producten {
    margin: 28px 0 40px;
  }

  .sfeer-met-producten__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sfeer-met-producten__foto {
    border-radius: 18px;
  }

  .sfeer-met-producten__foto img {
    height: 300px;
  }

  .sfeer-met-producten__overlay {
    padding: 22px;
  }

  .sfeer-met-producten__overlay-title {
    font-size: 26px;
  }

  .sfeer-met-producten__overlay-text {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .sfeer-met-producten__overlay-cta {
    width: 100%;
  }
}

/* ==========================================
   Behang kleur carousel
   ========================================== */

.behang-kleur-carousel {
  margin: 40px 0 50px;
}

.behang-kleur-carousel__inner {
  width: 100%;
}

.behang-kleur-carousel__head {
  margin-bottom: 20px;
}

.behang-kleur-carousel__head h2 {
  margin: 0 0 8px;
  color: #29384b;
  line-height: 1.2;
}

.behang-kleur-carousel__subtitle {
  margin: 0;
  color: #667085;
  line-height: 1.6;
}

.behang-kleur-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px;
}

.behang-kleur-carousel__track {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: max-content;
}

.behang-kleur-carousel__item {
  flex: 0 0 170px;
}

.behang-kleur-card {
  display: block;
  text-decoration: none !important;
  color: #29384b;
}

.behang-kleur-card__media {
  display: block;
  width: 170px;
  height: 126px;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.behang-kleur-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.behang-kleur-card:hover .behang-kleur-card__media img {
  transform: scale(1.04);
}

.behang-kleur-card__label {
  display: block;
  margin-top: 10px;
  color: #29384b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.behang-kleur-card:hover .behang-kleur-card__label {
  color: #0099e5;
}

/* Laatste CTA kaart */
.behang-kleur-card__media--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #29384b;
  color: #ffffff;
  text-align: center;
  padding: 18px;
}

.behang-kleur-card__cta-text {
  color: #ffffff;
  font-weight: 800;
  line-height: 1.25;
}

.behang-kleur-card__cta-arrow {
  margin-top: 8px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.behang-kleur-carousel__hint {
  margin: 6px 0 0;
  color: #667085;
  font-size: 13px;
}

/* Scrollbar styling */
.behang-kleur-carousel__viewport::-webkit-scrollbar {
  height: 8px;
}

.behang-kleur-carousel__viewport::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 999px;
}

.behang-kleur-carousel__viewport::-webkit-scrollbar-thumb {
  background: #c9d3dc;
  border-radius: 999px;
}

.behang-kleur-carousel__viewport::-webkit-scrollbar-thumb:hover {
  background: #0099e5;
}

/* Mobiel */
@media (max-width: 767px) {
  .behang-kleur-carousel {
    margin: 30px 0 40px;
  }

  .behang-kleur-carousel__track {
    gap: 12px;
  }

  .behang-kleur-carousel__item {
    flex-basis: 132px;
  }

  .behang-kleur-card__media {
    width: 132px;
    height: 98px;
    border-radius: 14px;
  }

  .behang-kleur-card__label {
    font-size: 13px;
  }
}

/* ==========================================
   Categorie merken slider
   ========================================== */

.categorie-merken-slider {
  margin: 40px 0 50px;
}

.categorie-merken-slider__inner {
  width: 100%;
}

.categorie-merken-slider__title {
  margin: 0 0 20px;
  color: #29384b;
  line-height: 1.2;
}

/* Horizontale slider */
.categorie-merken-slider__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* scrollbar */
.categorie-merken-slider__track::-webkit-scrollbar {
  height: 8px;
}

.categorie-merken-slider__track::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 999px;
}

.categorie-merken-slider__track::-webkit-scrollbar-thumb {
  background: #c9d3dc;
  border-radius: 999px;
}

.categorie-merken-slider__track::-webkit-scrollbar-thumb:hover {
  background: #0099e5;
}

/* Kaart */
.categorie-merken-slider__item {
  flex: 0 0 240px;
}

.categorie-merken-slider__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 20px;
  border-radius: 18px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.categorie-merken-slider__item a:hover {
  transform: translateY(-2px);
  border-color: #d7e9f5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Logo */
.categorie-merken-slider__image {
  display: block;
  width: 100%;
  max-width: 180px;
  max-height: 70px;
  object-fit: contain;
}

/* Mobiel */
@media (max-width: 767px) {

  .categorie-merken-slider {
    margin: 30px 0 40px;
  }

  .categorie-merken-slider__track {
    gap: 12px;
  }

  .categorie-merken-slider__item {
    flex-basis: 180px;
  }

  .categorie-merken-slider__item a {
    height: 95px;
    padding: 16px;
    border-radius: 14px;
  }

  .categorie-merken-slider__image {
    max-width: 130px;
    max-height: 50px;
  }
}

/* ==========================================
   Before & after projecten
   ========================================== */

.before-after-projects {
  margin: 40px 0 52px;
}

.projects-head-projects h3 {
  margin: 0 0 20px;
  color: #29384b;
  line-height: 1.2;
}

/* Horizontale scroll */
.projects-viewport-projects {
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 14px;
  -webkit-overflow-scrolling: touch;
}

.projects-track-projects {
  display: flex;
  gap: 22px;
  min-width: max-content;
}

/* Scrollbar */
.projects-viewport-projects::-webkit-scrollbar {
  height: 8px;
}

.projects-viewport-projects::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 999px;
}

.projects-viewport-projects::-webkit-scrollbar-thumb {
  background: #c9d3dc;
  border-radius: 999px;
}

.projects-viewport-projects::-webkit-scrollbar-thumb:hover {
  background: #0099e5;
}

/* Kaart */
.project-card-projects {
  flex: 0 0 360px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* Radio buttons verbergen */
.toggle-radio-projects {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Afbeeldingen */
.project-media-projects {
  position: relative;
  width: 100%;
  height: 270px;
  background: #f3f4f6;
  overflow: hidden;
}

.project-media-projects img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

/* Standaard: after tonen */
.img-before-projects {
  opacity: 0;
}

.img-after-projects {
  opacity: 1;
}

/* Als before geselecteerd is */
.project-card-projects:has(input[id$="-before"]:checked) .img-before-projects {
  opacity: 1;
}

.project-card-projects:has(input[id$="-before"]:checked) .img-after-projects {
  opacity: 0;
}

/* Content */
.project-content-projects {
  padding: 20px;
}

.project-text-projects {
  margin: 0 0 18px;
  color: #29384b;
  line-height: 1.6;
  font-size: 14px;
}

.project-text-projects a {
  color: #0099e5;
  font-weight: 600;
  text-decoration: none;
}

.project-text-projects a:hover {
  color: #007fc0;
  text-decoration: underline;
}

/* Toggle knoppen */
.project-toggle-projects {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 5px;
  background: #ffffff;
  border: 1px solid #e1e7ec;
  border-radius: 999px;
}

.toggle-btn-projects {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: #29384b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

/* Standaard after actief */
.project-card-projects .toggle-btn-projects[for$="-after"] {
  background: #0099e5;
  color: #ffffff;
}

/* Before actief */
.project-card-projects:has(input[id$="-before"]:checked) .toggle-btn-projects[for$="-before"] {
  background: #0099e5;
  color: #ffffff;
}

.project-card-projects:has(input[id$="-before"]:checked) .toggle-btn-projects[for$="-after"] {
  background: transparent;
  color: #29384b;
}

/* Hover */
.toggle-btn-projects:hover {
  background: #eaf5fb;
  color: #0099e5;
}

/* Mobiel */
@media (max-width: 767px) {
  .before-after-projects {
    margin: 30px 0 42px;
  }

  .projects-track-projects {
    gap: 14px;
  }

  .project-card-projects {
    flex-basis: 280px;
    border-radius: 16px;
  }

  .project-media-projects {
    height: 210px;
  }

  .project-content-projects {
    padding: 16px;
  }

  .project-text-projects {
    font-size: 13px;
  }
}

/* ==========================================
   Winkellocaties blok
   ========================================== */

.store-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 28px 0 48px;
}

.store-block {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  padding: 0 0 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.store-block > a:first-child {
  display: block;
}

.store-image {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.store-name,
.store-address,
.store-phone,
.store-email {
  padding: 0 22px;
}

.store-name {
  margin: 20px 0 10px;
  color: #29384b;
  font-size: 20px;
  line-height: 1.3;
}

.store-name a {
  color: #29384b !important;
  text-decoration: none;
}

.store-name a:hover {
  color: #0099e5 !important;
}

.store-address,
.store-phone,
.store-email {
  margin: 0 0 8px;
  color: #29384b;
  line-height: 1.55;
  font-size: 14px;
}

.store-phone a,
.store-email a {
  color: #0099e5;
  font-weight: 600;
  text-decoration: none;
}

.store-phone a:hover,
.store-email a:hover {
  color: #007fc0;
  text-decoration: underline;
}

/* oude lege p met &nbsp; minder ruimte geven */
.store-block p:empty,
.store-block p:nth-of-type(4) {
  display: none;
}

/* Knoppen */
.store-block .button6,
.store-block .button5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 22px;
  margin-right: 22px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.store-block .button6 {
  margin-top: auto;
  background: #0099e5;
  border: 1px solid #0099e5;
  color: #ffffff !important;
}

.store-block .button6:hover {
  background: #007fc0;
  border-color: #007fc0;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.store-block .button5 {
  background: #29384b;
  border: 1px solid #29384b;
  color: #ffffff !important;
}

.store-block .button5:hover {
  background: #1f2f40;
  border-color: #1f2f40;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Tablet */
@media (max-width: 1024px) {
  .store-locations {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobiel */
@media (max-width: 767px) {
  .store-locations {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 22px 0 38px;
  }

  .store-image {
    height: 180px;
  }

  .store-name,
  .store-address,
  .store-phone,
  .store-email {
    padding: 0 18px;
  }

  .store-block .button6,
  .store-block .button5 {
    width: calc(100% - 36px);
    margin-left: 18px;
    margin-right: 18px;
  }
}

/* ==========================================
   Winkel navigatie
   ========================================== */

.winkel-navigatie {
  margin: 18px 0 34px;
}

.winkel-navigatie-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Scrollbar */
.winkel-navigatie-inner::-webkit-scrollbar {
  height: 6px;
}

.winkel-navigatie-inner::-webkit-scrollbar-track {
  background: #eef2f5;
  border-radius: 999px;
}

.winkel-navigatie-inner::-webkit-scrollbar-thumb {
  background: #c8d3dc;
  border-radius: 999px;
}

.winkel-navigatie-inner::-webkit-scrollbar-thumb:hover {
  background: #0099e5;
}

/* Buttons */
.winkel-navigatie-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  background: #f9f9f9;
  border: 1px solid #e5e7eb;
  color: #29384b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.winkel-navigatie-inner a:hover {
  background: #0099e5;
  border-color: #0099e5;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobiel */
@media (max-width: 767px) {

  .winkel-navigatie {
    margin: 14px 0 28px;
  }

  .winkel-navigatie-inner {
    gap: 10px;
  }

  .winkel-navigatie-inner a {
    min-height: 40px;
    padding: 10px 15px;
    font-size: 13px;
  }
}

/* ==========================================
   Winkel informatie + kaart
   ========================================== */

.container-inspiratie {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  margin: 28px 0 48px;
  align-items: start;
}

.block-inspiratie {
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* Titels */
.block-inspiratie h3 {
  margin: 0 0 18px;
  color: #29384b;
  line-height: 1.25;
}

.block-inspiratie h4 {
  margin: 18px 0 6px;
  color: #29384b;
  line-height: 1.45;
}

/* Tekst */
.block-inspiratie p {
  margin: 0 0 14px;
  color: #29384b;
  line-height: 1.6;
}

.block-inspiratie a {
  color: #0099e5;
  font-weight: 600;
  text-decoration: none;
}

.block-inspiratie a:hover {
  color: #007fc0;
  text-decoration: underline;
}

/* Openingstijden tabel */
.WgFkxc {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}

.WgFkxc tr {
  border-bottom: 1px solid #e5e7eb;
}

.WgFkxc tr:last-child {
  border-bottom: 0;
}

.WgFkxc td {
  padding: 12px 0;
  color: #29384b;
  font-size: 15px;
  line-height: 1.5;
}

.SKNSIb {
  font-weight: 700;
  padding-right: 20px;
}

/* Divider */
.block-inspiratie hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

/* Kaart */
.map-wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: #e5e7eb;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* Mobiel */
@media (max-width: 767px) {

  .container-inspiratie {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 22px 0 38px;
  }

  .block-inspiratie {
    padding: 20px;
    border-radius: 16px;
  }

  .WgFkxc td {
    font-size: 14px;
    padding: 10px 0;
  }

  .map-wrapper iframe {
    height: 320px !important;
  }
}

/* ==========================================
   Assortiment slider
   ========================================== */

.image-container {
  margin: 26px 0 18px;
}

.scroll-container {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

/* Scrollbar */
.scroll-container::-webkit-scrollbar {
  height: 8px;
}

.scroll-container::-webkit-scrollbar-track {
  background: #eef2f5;
  border-radius: 999px;
}

.scroll-container::-webkit-scrollbar-thumb {
  background: #c9d3dc;
  border-radius: 999px;
}

.scroll-container::-webkit-scrollbar-thumb:hover {
  background: #0099e5;
}

/* Kaarten */
.image-item {
  flex: 0 0 220px;
  background: #f9f9f9;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.image-item:hover {
  transform: translateY(-2px);
  border-color: #d7e9f5;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Afbeelding */
.image-item img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
}

/* Tekst */
.image-item p {
  margin: 0;
  padding: 16px 16px 18px;
  color: #29384b;
  font-size: 15px;
  line-height: 1.45;
}

.image-item strong,
.image-item b {
  font-weight: 700;
}

/* Klikbaar blok */
.image-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.image-item a:hover p {
  color: #0099e5;
}

/* Mobiel */
@media (max-width: 767px) {

  .scroll-container {
    gap: 12px;
    padding-bottom: 10px;
  }

  .image-item {
    flex-basis: 170px;
    border-radius: 14px;
  }

  .image-item img {
    height: 120px;
  }

  .image-item p {
    padding: 12px 12px 14px;
    font-size: 13px;
  }
}

/* ==========================================
   Call to action blokken
   ========================================== */

.call-to-action-blok-white3 {
  display: flex;
  align-items: flex-start;
  gap: 22px;

  padding: 24px;
  margin-bottom: 18px;

  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 18px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.call-to-action-blok-white3:hover {
  transform: translateY(-2px);

  border-color: #d7e9f5;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

/* Afbeelding links */
.call-to-action-image-white3 {
  flex: 0 0 75px;
}

.call-to-action-image-white3 img {
  display: block;

  width: 75px;
  height: 75px;

  object-fit: contain;
  border-radius: 14px;
}

/* Tekst rechts */
.call-to-action-tekst-white3 {
  flex: 1;
  min-width: 0;
}

/* Alleen spacing, geen typography styling */
.call-to-action-tekst-white3 h4 {
  margin-top: 0;
  margin-bottom: 10px;
}

.call-to-action-tekst-white3 p {
  margin: 0;
}

/* Routeblok onderaan */
p[style*="border: 2px solid #E7E6E6"] {
  margin-top: 26px;
  margin-bottom: 0;

  padding: 22px 24px !important;

  background: #f8fafc;

  border: 1px solid #dfe7ee !important;
  border-radius: 18px;

  line-height: inherit;
}

p[style*="border: 2px solid #E7E6E6"] strong {
  display: block;
  margin-bottom: 8px;
}

p[style*="border: 2px solid #E7E6E6"] a {
  color: #0099e5;
  font-weight: 600;
  text-decoration: none;
}

p[style*="border: 2px solid #E7E6E6"] a:hover {
  text-decoration: underline;
}

/* Mobiel */
@media (max-width: 767px) {

  .call-to-action-blok-white3 {
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
  }

  .call-to-action-image-white3 {
    flex-basis: 58px;
  }

  .call-to-action-image-white3 img {
    width: 58px;
    height: 58px;
    border-radius: 10px;
  }

  p[style*="border: 2px solid #E7E6E6"] {
    padding: 18px !important;
    border-radius: 14px;
  }
}

/* ==========================================
   Tekst + video winkelblok
   ========================================== */

.custom-text-video-winkel {
  display: flex;
  align-items: stretch;
  gap: 32px;

  margin: 32px 0;
}

/* Tekstblok links */
.custom-text-video-winkel .text {
  flex: 1 1 45%;

  padding: 28px;

  background: #f9f9f9;
  border: 1px solid #e7edf2;
  border-radius: 18px;

  box-sizing: border-box;
}

/* Video rechts */
.custom-text-video-winkel .video {
  flex: 1 1 55%;

  position: relative;
  overflow: hidden;

  border-radius: 18px;

  background: #000;

  min-height: 340px;
}

/* Responsive iframe */
.custom-text-video-winkel .video iframe {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border: 0;
}

/* Link styling */
.custom-text-video-winkel .text a {
  color: #0099e5;
  font-weight: 600;
  text-decoration: none;
}

.custom-text-video-winkel .text a:hover {
  text-decoration: underline;
}

/* ==========================================
   Google Street View iframe
   ========================================== */

.iframe-wrapper {
  margin-top: 30px;

  overflow: hidden;

  border-radius: 18px;

  border: 1px solid #e7edf2;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.iframe-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ==========================================
   Tablet
   ========================================== */

@media (max-width: 980px) {

  .custom-text-video-winkel {
    gap: 22px;
  }

  .custom-text-video-winkel .text {
    padding: 22px;
  }

  .custom-text-video-winkel .video {
    min-height: 280px;
  }
}

/* ==========================================
   Mobiel
   ========================================== */

@media (max-width: 767px) {

  .custom-text-video-winkel {
    flex-direction: column;
  }

  .custom-text-video-winkel .text {
    width: 100%;

    padding: 20px;

    border-radius: 14px;
  }

  .custom-text-video-winkel .video {
    width: 100%;

    min-height: 220px;

    border-radius: 14px;
  }

  .iframe-wrapper {
    margin-top: 22px;
    border-radius: 14px;
  }

  .iframe-wrapper iframe {
    height: 320px !important;
  }
}

/* ==========================================
   Openingstijden + kaart blok
   ========================================== */

.call-to-action-blok-two-row {
  display: flex;
  align-items: stretch;
  gap: 28px;

  margin: 32px 0;
}

/* Linker blok */
.call-to-action-blok-two-row-tekstl {
  flex: 0 0 36%;

  padding: 28px;

  background: #f9f9f9;
  border: 1px solid #e7edf2;
  border-radius: 18px;

  box-sizing: border-box;
}

/* Rechter blok */
.call-to-action-blok-two-row-tekstr {
  flex: 1;

  padding: 28px;

  background: #f9f9f9;
  border: 1px solid #e7edf2;
  border-radius: 18px;

  box-sizing: border-box;
}

/* Titels */
.call-to-action-blok-two-row h3 {
  margin-top: 0;
  margin-bottom: 18px;
}

/* Openingstijden tabel */
.call-to-action-blok-two-row table {
  width: 100%;
  border-collapse: collapse;
}

.call-to-action-blok-two-row table tr:not(:last-child) td {
  border-bottom: 1px solid #e7edf2;
}

.call-to-action-blok-two-row table td {
  padding: 12px 0;
  vertical-align: top;
}

.call-to-action-blok-two-row table td:first-child {
  font-weight: 600;
  color: #29384b;
}

.call-to-action-blok-two-row table td:last-child {
  text-align: right;
}

/* Google maps iframe */
.call-to-action-blok-two-row iframe {
  display: block;

  width: 100% !important;
  height: 420px !important;

  border: 0;
  border-radius: 14px;
}

/* Navigatie knop */
.button-container5 {
  margin-top: 24px;
}

.button-container5 .button5 {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;
  padding: 12px 22px;

  background: #0099e5;
  color: #ffffff !important;

  border-radius: 999px;

  font-weight: 700;
  text-decoration: none;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.button-container5 .button5:hover {
  background: #007fc0;
  transform: translateY(-1px);
}

/* ==========================================
   Tablet
   ========================================== */

@media (max-width: 980px) {

  .call-to-action-blok-two-row {
    gap: 20px;
  }

  .call-to-action-blok-two-row-tekstl,
  .call-to-action-blok-two-row-tekstr {
    padding: 22px;
  }

  .call-to-action-blok-two-row iframe {
    height: 340px !important;
  }
}

/* ==========================================
   Mobiel
   ========================================== */

@media (max-width: 767px) {

  .call-to-action-blok-two-row {
    flex-direction: column;
  }

  .call-to-action-blok-two-row-tekstl,
  .call-to-action-blok-two-row-tekstr {
    width: 100%;

    padding: 20px;

    border-radius: 14px;
  }

  .call-to-action-blok-two-row iframe {
    height: 280px !important;
    border-radius: 12px;
  }

  .call-to-action-blok-two-row table td {
    padding: 10px 0;
    font-size: 14px;
  }

  .button-container5 .button5 {
    width: 100%;
    text-align: center;
  }
}