/* ============================================================
   MijnBabyLijst – productblokken en checklists in blogartikelen
   Sluit aan op het bestaande palet (roze #F4A7B9 / #e0879b)
   ============================================================ */

.mbl-art-blok,
.mbl-art-check,
.mbl-art-cta,
.mbl-art-punten,
.mbl-art-links,
.mbl-art-terugval,
.mbl-art-overlay,
.mbl-art-melding {
  --a-roze: #e0879b;
  --a-roze-dk: #c96b81;
  --a-bg: #FDE8EF;
  --a-lijn: #f3c2d0;
  --a-tekst: #1F2937;
  --a-grijs: #6B7280;
  font-family: inherit;
}

.mbl-art-blok,
.mbl-art-check {
  margin: 34px 0;
  color: var(--a-tekst);
}

.mbl-art-blok-titel {
  margin: 0 0 4px;
  font-size: 1.12em;
  font-weight: 700;
  line-height: 1.35;
}

.mbl-art-blok-sub {
  margin: 0 0 14px;
  color: var(--a-grijs);
  font-size: .95em;
}

/* ---- Productkaarten ---- */

.mbl-art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mbl-art-grid--enkel {
  grid-template-columns: 1fr;
}

.mbl-art-kaart {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--a-lijn);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.mbl-art-kaart:hover {
  box-shadow: 0 6px 20px rgba(224, 135, 155, .22);
  transform: translateY(-2px);
}

.mbl-art-foto {
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: #fff;
}

.mbl-art-foto img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0;
}

.mbl-art-info {
  padding: 0 15px 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mbl-art-naam {
  margin: 0 0 6px;
  font-size: .95em;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mbl-art-prijs {
  margin: 0 0 8px;
  font-size: 1.05em;
  font-weight: 700;
  color: var(--a-roze-dk);
}

.mbl-art-lever {
  display: block;
  font-size: .72em;
  font-weight: 400;
  color: var(--a-grijs);
  margin-top: 2px;
}

.mbl-art-notitie {
  margin: 0 0 10px;
  font-size: .87em;
  color: var(--a-grijs);
  font-style: italic;
  line-height: 1.45;
}

.mbl-art-knoppen {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mbl-art-knop {
  display: inline-block;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-radius: 9px;
  background: var(--a-roze);
  color: #fff;
  font-size: .92em;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  line-height: 1.3;
  transition: background .18s ease;
}

.mbl-art-knop:hover:not(:disabled) { background: var(--a-roze-dk); }
.mbl-art-knop:disabled { opacity: .75; cursor: default; }

.mbl-art-knop--leeg {
  background: #fff;
  color: var(--a-roze-dk);
  border: 1px solid var(--a-lijn);
}
.mbl-art-knop--leeg:hover:not(:disabled) { background: var(--a-bg); }

.mbl-art-knop--klaar { background: #2f9e6f; }
.mbl-art-knop--klaar:hover { background: #2f9e6f; }

.mbl-art-bol {
  display: block;
  text-align: center;
  font-size: .87em;
  color: var(--a-grijs);
  text-decoration: underline;
}
.mbl-art-bol:hover { color: var(--a-roze-dk); }

.mbl-art-klaar-link {
  display: block;
  text-align: center;
  font-size: .85em;
  margin-top: 2px;
}

.mbl-art-voet {
  margin: 12px 0 0;
  font-size: .8em;
  color: var(--a-grijs);
}

.mbl-art-terugval {
  --a-roze: #e0879b;
  --a-roze-dk: #c96b81;
  --a-bg: #FDE8EF;
  --a-lijn: #f3c2d0;
  --a-grijs: #6B7280;
  margin: 18px 0 26px;
  padding: 14px 18px;
  border: 1px dashed var(--a-lijn);
  border-radius: 12px;
  background: #fffafc;
}

.mbl-art-terugval-tekst {
  margin: 0 0 10px;
  font-size: .88em;
  color: var(--a-grijs);
}

.mbl-art-terugval .mbl-art-knop { width: auto; display: inline-block; text-decoration: none; padding: 9px 18px; }

/* ---- Checklistblok ---- */

.mbl-art-check {
  background: var(--a-bg);
  border: 1px solid var(--a-lijn);
  border-radius: 14px;
  padding: 20px 22px;
}

.mbl-art-check-lijst {
  list-style: none !important;
  margin: 12px 0 16px;
  padding-left: 0 !important;
  columns: 2;
  column-gap: 26px;
}

.mbl-art-check-lijst li {
  margin: 0 0 7px;
  break-inside: avoid;
  list-style: none !important;
  padding-left: 0;
}

.mbl-art-check-lijst li::marker { content: ""; }

.mbl-art-check-lijst label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  cursor: pointer;
  font-size: .95em;
  line-height: 1.4;
}

.mbl-art-check-lijst input {
  margin: 3px 0 0;
  accent-color: var(--a-roze-dk);
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
}

.mbl-art-check-voet {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mbl-art-check-voet .mbl-art-knop { width: auto; }

/* ---- Venster ---- */

.mbl-art-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 41, 55, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 99999;
}

.mbl-art-venster {
  background: #fff;
  border-radius: 16px;
  max-width: 430px;
  width: 100%;
  padding: 26px 26px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
  max-height: 90vh;
  overflow-y: auto;
  font-size: 16px;
  line-height: 1.55;
  color: var(--a-tekst, #1F2937);
}

.mbl-art-venster h3 {
  margin: 0 0 6px;
  font-size: 1.22em;
  line-height: 1.3;
}

.mbl-art-venster p { margin: 0 0 14px; color: #6B7280; font-size: .95em; }

.mbl-art-venster .mbl-art-knop { margin-bottom: 8px; }

.mbl-art-venster label {
  display: block;
  font-size: .85em;
  font-weight: 600;
  margin: 0 0 4px;
}

.mbl-art-venster input[type="text"],
.mbl-art-venster input[type="email"] {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #f3c2d0;
  border-radius: 9px;
  font-size: 1em;
  font-family: inherit;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.mbl-art-venster input:focus {
  outline: 2px solid #e0879b;
  outline-offset: 1px;
}

.mbl-art-scheiding {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 16px;
  color: #9ca3af;
  font-size: .82em;
}
.mbl-art-scheiding::before,
.mbl-art-scheiding::after {
  content: "";
  height: 1px;
  background: #eee;
  flex: 1;
}

.mbl-art-lijstknop {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid #f3c2d0;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: .95em;
}
.mbl-art-lijstknop:hover { background: #FDE8EF; }
.mbl-art-lijstknop span { display: block; color: #6B7280; font-size: .82em; }

.mbl-art-sluit {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  color: #6B7280;
  font-size: .87em;
  cursor: pointer;
  padding: 6px;
  font-family: inherit;
}
.mbl-art-sluit:hover { color: #1F2937; }

.mbl-art-fout {
  background: #fdecec;
  border: 1px solid #f5c2c2;
  color: #a33;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: .87em;
  margin-bottom: 12px;
}

.mbl-art-melding {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  background: #1F2937;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: .92em;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .28);
  max-width: 90vw;
  text-align: center;
}

.mbl-art-melding a { color: #ffc7d8; }

@media (max-width: 620px) {
  .mbl-art-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 11px; }
  .mbl-art-foto { height: 128px; padding: 10px; }
  .mbl-art-info { padding: 0 11px 12px; }
  .mbl-art-naam { font-size: .87em; }
  .mbl-art-knop { padding: 9px 10px; font-size: .85em; }
  .mbl-art-check { padding: 16px; }
  .mbl-art-check-lijst { columns: 1; }
  .mbl-art-check-voet .mbl-art-knop { width: 100%; }
}

/* ---- Enkele kaart in de lopende tekst: liggend ---- */

.mbl-art-blok--enkel { margin: 20px 0 26px; }

.mbl-art-grid--enkel .mbl-art-kaart {
  flex-direction: row;
  align-items: stretch;
}

.mbl-art-grid--enkel .mbl-art-foto {
  flex: 0 0 190px;
  width: 190px;
  height: auto;
  min-height: 158px;
  border-right: 1px solid var(--a-lijn);
}

.mbl-art-grid--enkel .mbl-art-info {
  padding: 16px 20px;
  justify-content: center;
}

.mbl-art-grid--enkel .mbl-art-naam {
  font-size: 1em;
  -webkit-line-clamp: 2;
}

.mbl-art-grid--enkel .mbl-art-knoppen {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-top: 4px;
}

.mbl-art-grid--enkel .mbl-art-knop { width: auto; padding: 10px 20px; }
.mbl-art-grid--enkel .mbl-art-bol { text-align: left; }
.mbl-art-grid--enkel .mbl-art-klaar-link { text-align: left; margin-top: 0; }

@media (max-width: 620px) {
  .mbl-art-grid--enkel .mbl-art-kaart { flex-direction: column; }
  .mbl-art-grid--enkel .mbl-art-foto {
    flex: none; width: 100%; height: 148px; border-right: 0;
    border-bottom: 1px solid var(--a-lijn);
  }
  .mbl-art-grid--enkel .mbl-art-info { padding: 12px 14px 14px; }
  .mbl-art-grid--enkel .mbl-art-knoppen { flex-direction: column; gap: 7px; align-items: stretch; }
  .mbl-art-grid--enkel .mbl-art-knop { width: 100%; }
  .mbl-art-grid--enkel .mbl-art-bol { text-align: center; }
}

/* ---- Oproep om een lijst te starten ---- */

.mbl-art-cta {
  background: linear-gradient(135deg, #fde8ef, #fff5f8);
  border: 1px solid var(--a-lijn);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 30px 0;
  text-align: center;
}

.mbl-art-cta-titel {
  margin: 0 0 6px;
  font-size: 1.1em;
  font-weight: 700;
  color: var(--a-tekst);
}

.mbl-art-cta-tekst {
  margin: 0 0 16px;
  font-size: .94em;
  color: var(--a-grijs);
  line-height: 1.5;
}

.mbl-art-cta .mbl-art-knop {
  width: auto;
  display: inline-block;
  padding: 12px 26px;
  text-decoration: none;
}

.mbl-art-cta-klein {
  display: block;
  margin-top: 10px;
  font-size: .85em;
  color: var(--a-grijs);
}
.mbl-art-cta-klein:hover { color: var(--a-roze-dk); }

/* ---- Lijst waarbij elk punt zelf producten toont ---- */

.mbl-art-punten { margin: 26px 0; }

.mbl-art-punt {
  border-top: 1px solid var(--a-lijn);
  padding: 16px 0 4px;
}
.mbl-art-punt:last-child { border-bottom: 1px solid var(--a-lijn); }

.mbl-art-punt-titel {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1em;
  color: var(--a-tekst);
}

.mbl-art-mini-rij {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mbl-art-mini {
  border: 1px solid var(--a-lijn);
  border-radius: 11px;
  padding: 9px;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.mbl-art-mini-foto {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 7px;
}
.mbl-art-mini-foto img {
  max-height: 92px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  margin: 0;
}

.mbl-art-mini-naam {
  margin: 0 0 4px;
  font-size: .78em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mbl-art-mini-naam a { color: var(--a-tekst); text-decoration: none; }
.mbl-art-mini-naam a:hover { text-decoration: underline; }

.mbl-art-mini-prijs {
  margin: 0 0 8px;
  font-size: .86em;
  font-weight: 700;
  color: var(--a-roze-dk);
}

.mbl-art-mini .mbl-art-knop--mini {
  margin-top: auto;
  padding: 7px 6px;
  font-size: .76em;
  border-radius: 7px;
}

.mbl-art-punt-meer {
  margin: 9px 0 4px;
  font-size: .82em;
}
.mbl-art-punt-meer a { color: var(--a-grijs); }
.mbl-art-punt-meer a:hover { color: var(--a-roze-dk); }

@media (max-width: 620px) {
  .mbl-art-mini-rij {
    grid-template-columns: repeat(3, minmax(118px, 1fr));
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 4px;
  }
  .mbl-art-mini { scroll-snap-align: start; }
  .mbl-art-mini-foto { height: 74px; }
  .mbl-art-mini-foto img { max-height: 74px; }
}

/* ---- Praktische links (mutualiteit, Kind en Gezin, overheid) ---- */

.mbl-art-links {
  background: #f4f8fb;
  border: 1px solid #d9e4ee;
  border-left: 4px solid #7aa5c4;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 26px 0;
}

.mbl-art-links-titel {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 1.02em;
  color: var(--a-tekst);
}

.mbl-art-links ul {
  list-style: none !important;
  margin: 0;
  padding-left: 0 !important;
}

.mbl-art-links li {
  margin: 0 0 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
  list-style: none !important;
}

.mbl-art-links li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: #5b87a8;
  font-weight: 700;
}

.mbl-art-links li a { font-weight: 600; }
.mbl-art-links li span { color: var(--a-grijs); font-size: .9em; display: block; }

.mbl-art-links-voet {
  margin: 12px 0 0;
  font-size: .84em;
  color: var(--a-grijs);
}
