/* wj-bookzo — accommodatiepagina's en overzicht in de huisstijl van het thema.
   Gebruikt de variabelen van het thema (--paars, --donker, --roze, --mint,
   --licht, --radius); valt terug op neutrale waarden als die ontbreken. */

.wj-bookzo {
  --wjb-donker: var(--donker, #2E1352);
  --wjb-paars:  var(--paars, #8438DF);
  --wjb-roze:   var(--roze, #F7148B);
  --wjb-mint:   var(--mint, #C7FDBB);
  --wjb-licht:  var(--licht, #D1D1E6);
  --wjb-radius: var(--radius, 15px);
  --wjb-vlak:   #F5F3FB;
}

/* Kop ---------------------------------------------------------------------- */
.wj-bookzo__kop { max-width: 860px; margin-bottom: clamp(24px, 4vw, 48px); }
.wj-bookzo__kop h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; margin: 0 0 .4em; }
.wj-bookzo__locatie {
  display: inline-flex; align-items: center; gap: .5em;
  margin: 0 0 .8em; font-family: var(--font-body-bold, inherit); font-size: 15px;
  letter-spacing: .04em; text-transform: uppercase; color: var(--wjb-paars);
}
.wj-bookzo__locatie::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--wjb-roze); }
.wj-bookzo__intro { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.5; margin: 0; }

/* Galerij ------------------------------------------------------------------ */
.wj-bookzo__galerij { display: grid; gap: 12px; margin: 0 0 clamp(32px, 5vw, 64px); }
.wj-bookzo__galerij--meer { grid-template-columns: repeat(2, 1fr); }
.wj-bookzo__foto { display: block; overflow: hidden; border-radius: var(--wjb-radius); background: var(--wjb-vlak); }
.wj-bookzo__foto img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; transition: transform .4s ease; }
.wj-bookzo__foto:hover img { transform: scale(1.03); }
.wj-bookzo__foto--groot { grid-column: 1 / -1; }
@media (min-width: 720px) {
  .wj-bookzo__galerij--meer { grid-template-columns: 3fr 1fr 1fr; grid-auto-rows: minmax(0, 1fr); }
  .wj-bookzo__foto--groot { grid-column: 1; grid-row: 1 / 3; }
  .wj-bookzo__foto--groot img { aspect-ratio: auto; }
  /* Precies twee foto's: naast elkaar, zonder leeg vak. */
  .wj-bookzo__galerij--twee { grid-template-columns: 2fr 1fr; }
  .wj-bookzo__galerij--twee .wj-bookzo__foto--groot { grid-row: 1; }
  .wj-bookzo__galerij--twee .wj-bookzo__foto:not(.wj-bookzo__foto--groot) img { aspect-ratio: auto; }
  /* Drie foto's: de twee kleine onder elkaar naast de grote. */
  .wj-bookzo__galerij--drie { grid-template-columns: 2fr 1fr; }
  .wj-bookzo__galerij--drie .wj-bookzo__foto:not(.wj-bookzo__foto--groot) { grid-column: 2; }
}

.wj-bookzo__foto--verborgen { display: none; }
.wj-bookzo__foto[data-meer] { position: relative; }
.wj-bookzo__foto[data-meer]::after {
  content: attr(data-meer); position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(46, 19, 82, .55); color: #fff; font-family: var(--font-head, inherit); font-size: clamp(16px, 1.6vw, 22px);
}

/* Lightbox ----------------------------------------------------------------- */
.wj-lightbox-open { overflow: hidden; }
.wj-lightbox { border: 0; padding: 0; margin: 0; width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh; background: transparent; color: #fff; }
.wj-lightbox::backdrop { background: rgba(20, 8, 40, .92); }
.wj-lightbox[open] { display: grid; grid-template-columns: 64px minmax(0, 1fr) 64px; grid-template-rows: 1fr; align-items: center; }
.wj-lightbox__figuur { grid-column: 2; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100vh; padding: 56px 0 40px; }
.wj-lightbox__foto { max-width: 100%; max-height: calc(100vh - 140px); width: auto; height: auto; object-fit: contain; border-radius: var(--radius, 15px); box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.wj-lightbox__onderschrift { margin-top: 14px; font-size: 15px; opacity: .8; text-align: center; min-height: 1.4em; }
.wj-lightbox button {
  appearance: none; border: 0; cursor: pointer; background: rgba(255,255,255,.12); color: #fff;
  width: 48px; height: 48px; border-radius: 50%; font-size: 34px; line-height: 1; display: grid; place-items: center;
  transition: background .2s ease;
}
.wj-lightbox button:hover, .wj-lightbox button:focus-visible { background: var(--roze, #F7148B); outline: none; }
.wj-lightbox__vorige { grid-column: 1; justify-self: center; }
.wj-lightbox__volgende { grid-column: 3; justify-self: center; }
.wj-lightbox__sluit { position: fixed; top: 16px; right: 16px; font-size: 30px; }
.wj-lightbox__teller { position: fixed; top: 26px; left: 24px; margin: 0; font-size: 15px; opacity: .8; }
.wj-lightbox--enkel .wj-lightbox__vorige, .wj-lightbox--enkel .wj-lightbox__volgende, .wj-lightbox--enkel .wj-lightbox__teller { display: none; }
@media (max-width: 640px) {
  .wj-lightbox[open] { grid-template-columns: 1fr; }
  .wj-lightbox__figuur { grid-column: 1; padding: 56px 12px 90px; }
  .wj-lightbox__vorige, .wj-lightbox__volgende { position: fixed; bottom: 20px; }
  .wj-lightbox__vorige { left: calc(50% - 60px); }
  .wj-lightbox__volgende { left: calc(50% + 12px); }
}

/* Lees meer ---------------------------------------------------------------- */
.wj-bookzo__beschrijving { --wjb-leesmeer-hoogte: 320px; position: relative; }
.wj-bookzo__beschrijving--dicht .wj-bookzo__beschrijving-inhoud {
  max-height: var(--wjb-leesmeer-hoogte); overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 90px), transparent);
          mask-image: linear-gradient(to bottom, #000 calc(100% - 90px), transparent);
}
.wj-bookzo__leesmeer {
  appearance: none; border: 2px solid var(--wjb-donker); background: transparent; color: var(--wjb-donker);
  border-radius: 99px; padding: 10px 22px; margin: 4px 0 0; cursor: pointer;
  font-family: var(--font-head, inherit); font-size: 15px; transition: background .2s ease, color .2s ease;
}
.wj-bookzo__leesmeer:hover { background: var(--wjb-donker); color: #fff; }
.wj-bookzo__beschrijving--dicht .wj-bookzo__leesmeer { position: relative; z-index: 1; margin-top: -8px; }

/* Tekst en zijkolom -------------------------------------------------------- */
.wj-bookzo__kolommen { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (min-width: 900px) { .wj-bookzo__kolommen { grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr); } }
.wj-bookzo__tekst { font-size: 18px; }
.wj-bookzo__tekst h2 { font-size: clamp(24px, 2.6vw, 32px); margin-top: 1.4em; }
.wj-bookzo__tekst p { margin-bottom: 1.1em; }
.wj-bookzo__tekst ul { margin: 0 0 1.2em; padding: 0; }
.wj-bookzo__tekst li { position: relative; padding-left: 1.6em; margin-bottom: .5em; }
.wj-bookzo__tekst li::before {
  content: ""; position: absolute; left: 0; top: .45em; width: 1em; height: 1em; border-radius: 50%;
  background: var(--wjb-mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%232E1352' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center / 62% no-repeat;
}
.wj-bookzo__usps { margin-top: 1.5em; padding: 1.4em 1.6em; background: var(--wjb-vlak); border-radius: var(--wjb-radius); }
.wj-bookzo__usps ul { margin: 0; }
.wj-bookzo__usps li:last-child { margin-bottom: 0; }
.wj-bookzo__blok { margin-top: 2em; }

.wj-bookzo__zij { position: sticky; top: 24px; }
.wj-bookzo__praktisch {
  padding: 28px; border-radius: var(--wjb-radius); background: var(--wjb-donker); color: #fff;
  box-shadow: 0 20px 40px rgba(46, 19, 82, .18);
}
.wj-bookzo__praktisch h3 { margin: 0 0 .8em; font-size: 22px; }
.wj-bookzo__praktisch dl { margin: 0 0 1.4em; }
.wj-bookzo__praktisch dl > div { display: flex; justify-content: space-between; gap: 1em; padding: .55em 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.wj-bookzo__praktisch dl > div:last-child { border-bottom: 0; }
.wj-bookzo__praktisch dt { opacity: .7; }
.wj-bookzo__praktisch dd { margin: 0; text-align: right; font-family: var(--font-body-bold, inherit); }
.wj-bookzo__kaartlink { display: inline-block; margin-bottom: 1.2em; color: var(--wjb-mint); text-decoration: underline; text-underline-offset: 3px; }
.wj-bookzo__praktisch-knop { display: block; text-align: center; }

/* Kenmerken ---------------------------------------------------------------- */
.wj-bookzo__kenmerken { margin-top: 2.5em; }
.wj-bookzo__kenmerkgroepen { display: grid; gap: 20px 32px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.wj-bookzo__kenmerkgroep h3 { font-size: 16px; margin: 0 0 .5em; color: var(--wjb-paars); }
.wj-bookzo__kenmerkgroep ul { margin: 0; }
.wj-bookzo__kenmerkgroep li { margin-bottom: .35em; font-size: 17px; }
.wj-bookzo__kenmerkgroep strong { font-family: var(--font-body-bold, inherit); font-weight: 400; }

/* Boekblok (realtime uit Bookzo) ------------------------------------------- */
.wj-bookzo__boeken h2 { color: #fff; }
.wj-bookzo__boeken .label { margin: 0 0 .5em; }
.wj-bookzo__boekkaart { background: #fff; color: var(--wjb-donker); border-radius: var(--wjb-radius); padding: clamp(16px, 3vw, 32px); }

/* Elementen: ruimte reserveren, ze renderen pas na het laden --------------- */
.wj-bookzo__element { min-height: 12rem; }
.wj-bookzo__element--object,
.wj-bookzo__element--results,
.wj-bookzo__element--booking { min-height: 32rem; }
.wj-bookzo__element--calendar { min-height: 22rem; }
.wj-bookzo__element--search { min-height: 5rem; }
.wj-bookzo__element--confirmation { min-height: 8rem; }

/* Overzicht ---------------------------------------------------------------- */
.wj-bookzo__kop--overzicht { max-width: 760px; }
.wj-bookzo__zoekbalk {
  margin: 0 0 clamp(40px, 6vw, 72px); padding: clamp(20px, 3vw, 32px);
  background: var(--wjb-vlak); border-radius: var(--wjb-radius);
}
.wj-bookzo__zoekbalk-label { margin: 0 0 .6em; font-family: var(--font-head, inherit); font-size: 20px; }
.wj-bookzo__zoekbalk .wj-bookzo__element { margin: 0; }
.wj-bookzo__resultaten { margin-bottom: clamp(40px, 6vw, 72px); }
.wj-bookzo__resultaten[hidden], .wj-bookzo__overzicht[hidden] { display: none; }
.wj-bookzo__resultaten-kop { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: 1em; }
.wj-bookzo__resultaten-kop h2 { margin: 0; }
.wj-bookzo__resultaten-terug { font-family: var(--font-body-bold, inherit); color: var(--wjb-roze); text-decoration: none; }
.wj-bookzo__resultaten-terug::before { content: "← "; }
.wj-bookzo__resultaten-grid { display: grid; gap: 2rem; }
@media (min-width: 900px) { .wj-bookzo__resultaten-grid { grid-template-columns: minmax(240px, 1fr) minmax(0, 3fr); } }
@media (max-width: 899px) { .wj-bookzo__filters { display: none; } }

.wj-bookzo__rastertitel { margin-bottom: .8em; }
.wj-bookzo__raster { display: grid; gap: 28px; }
@media (min-width: 640px) { .wj-bookzo__raster { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .wj-bookzo__raster { grid-template-columns: repeat(3, 1fr); } }
.wj-bookzo__kaart {
  display: flex; flex-direction: column; overflow: hidden; border-radius: var(--wjb-radius);
  background: var(--wjb-vlak); transition: transform .25s ease, box-shadow .25s ease;
}
.wj-bookzo__kaart:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(46, 19, 82, .16); }
.wj-bookzo__kaart-foto { display: block; overflow: hidden; background: var(--wjb-licht); }
.wj-bookzo__kaart-foto img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .4s ease; }
.wj-bookzo__kaart:hover .wj-bookzo__kaart-foto img { transform: scale(1.04); }
.wj-bookzo__kaart-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 26px; }
.wj-bookzo__kaart-locatie { margin: 0 0 .4em; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--wjb-paars); }
.wj-bookzo__kaart h3 { font-size: 22px; margin: 0 0 .5em; }
.wj-bookzo__kaart h3 a { text-decoration: none; }
.wj-bookzo__kaart h3 a::after { content: ""; position: absolute; inset: 0; }
.wj-bookzo__kaart { position: relative; }
.wj-bookzo__kaart-tekst { margin: 0 0 1em; font-size: 16px; line-height: 1.55; opacity: .85; }
.wj-bookzo__kaart-meta { display: flex; flex-wrap: wrap; gap: 6px; margin: auto 0 1.2em; }
.wj-bookzo__kaart-meta li { padding: 4px 12px; border-radius: 99px; background: #fff; font-size: 14px; }
.wj-bookzo__kaart-link {
  align-self: flex-start; font-family: var(--font-body-bold, inherit); color: var(--wjb-roze);
  text-decoration: none; display: inline-flex; align-items: center; gap: .4em;
}
.wj-bookzo__kaart-link::after { content: "→"; transition: transform .2s ease; }
.wj-bookzo__kaart:hover .wj-bookzo__kaart-link::after { transform: translateX(4px); }

/* ==========================================================================
   Bookzo-elementen in de huisstijl. Bookzo levert bewust geen knop- en
   formulieropmaak; alles hieronder is prefixed met .bookzo.bookzo-bootstrap
   zoals hun docs voorschrijven, zodat het alleen binnen de elementen geldt.
   ========================================================================== */

.bookzo.bookzo-bootstrap {
  font-family: var(--font-body, inherit);
  color: var(--donker, #2E1352);
  --wjb-donker: var(--donker, #2E1352);
  --wjb-paars:  var(--paars, #8438DF);
  --wjb-roze:   var(--roze, #F7148B);
  --wjb-mint:   var(--mint, #C7FDBB);
  --wjb-lila:   #EFEAFB;
  --wjb-lijn:   #E2DDF2;
  --wjb-radius: var(--radius, 15px);
}

/* Knoppen ------------------------------------------------------------------ */
.bookzo.bookzo-bootstrap .btn {
  cursor: pointer; border: 2px solid transparent; border-radius: 99px;
  padding: 12px 26px; font-family: var(--font-head, inherit); font-size: 16px; line-height: 1.2;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.bookzo.bookzo-bootstrap .btn-primary { background: var(--wjb-roze); color: #fff; border-color: var(--wjb-roze); }
.bookzo.bookzo-bootstrap .btn-primary:hover:not(:disabled) { background: var(--wjb-donker); border-color: var(--wjb-donker); color: #fff; }
.bookzo.bookzo-bootstrap .btn-secondary { background: #fff; color: var(--wjb-donker); border-color: var(--wjb-donker); }
.bookzo.bookzo-bootstrap .btn-secondary:hover:not(:disabled) { background: var(--wjb-mint); border-color: var(--wjb-mint); }
.bookzo.bookzo-bootstrap .btn-link { background: transparent; color: var(--wjb-paars); text-decoration: underline; text-underline-offset: 3px; padding: 8px 12px; }
.bookzo.bookzo-bootstrap .btn:disabled { opacity: .35; cursor: default; }
.bookzo.bookzo-bootstrap .btn:focus-visible { outline: 3px solid var(--wjb-mint); outline-offset: 2px; }

/* Velden ------------------------------------------------------------------- */
.bookzo.bookzo-bootstrap label { font-family: var(--font-body-bold, inherit); font-size: 14px; letter-spacing: .03em; text-transform: uppercase; color: var(--wjb-paars); margin-bottom: 6px; }
.bookzo.bookzo-bootstrap .form-control {
  height: 52px; padding: 10px 16px; font-size: 17px; font-family: inherit; color: var(--wjb-donker);
  background: #fff; border: 2px solid var(--wjb-lijn); border-radius: 12px; box-shadow: none; transition: border-color .2s ease;
}
.bookzo.bookzo-bootstrap .form-control:focus { border-color: var(--wjb-paars); outline: none; box-shadow: 0 0 0 4px rgba(132, 56, 223, .12); }
.bookzo.bookzo-bootstrap .form-control[readonly] { background: #fff; cursor: pointer; }
.bookzo.bookzo-bootstrap .input-group { flex-wrap: nowrap; }
.bookzo.bookzo-bootstrap .input-group > .form-control:first-child:not(:last-child) { border-radius: 12px 0 0 12px; border-right-width: 1px; }
.bookzo.bookzo-bootstrap .input-group > .form-control:last-child:not(:first-child) { border-radius: 0 12px 12px 0; border-left-width: 1px; }
.bookzo.bookzo-bootstrap .form-control-datepicker { min-width: 120px; }

/* Zoekbalk ----------------------------------------------------------------- */
.bookzo.bookzo-bootstrap .bookzo-search .form-inline { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px 20px; }
.bookzo.bookzo-bootstrap .bookzo-search .form-group-inline { display: flex; flex-direction: column; margin: 0 !important; flex: 1 1 220px; }
.bookzo.bookzo-bootstrap .bookzo-search .bookzo-search-arrival-departure { flex: 2 1 280px; }
.bookzo.bookzo-bootstrap .bookzo-search .bookzo-search-submit { height: 52px; flex: 0 0 auto; }
.bookzo.bookzo-bootstrap .bookzo-search .form-control-composition { min-width: 160px; }
@media (max-width: 640px) {
  .bookzo.bookzo-bootstrap .bookzo-search .bookzo-search-submit { width: 100%; }
}

/* Uitklappers (datumkiezer en personen in de zoekbalk) --------------------- */
.bookzo-bootstrap .dropdown-menu, .bookzo-bootstrap.dropdown-menu,
.bookzo-bootstrap .datepicker-wrapper.floating {
  border: 0; border-radius: var(--radius, 15px); padding: 16px; background: #fff;
  box-shadow: 0 24px 48px rgba(46, 19, 82, .18);
}

/* Kalender (ng-bootstrap datepicker) --------------------------------------- */
.bookzo-bootstrap ngb-datepicker { border: 0; }
.bookzo-bootstrap .datepicker-wrapper.inline { border: 2px solid #E2DDF2; border-radius: var(--radius, 15px); padding: 12px 8px; }
.bookzo-bootstrap .ngb-dp-header { background: transparent; padding: 0 0 10px; border: 0; }
.bookzo-bootstrap .ngb-dp-month-name { font-family: var(--font-head, inherit); font-size: 19px; color: var(--wjb-donker); height: auto; line-height: 1.3; }
.bookzo-bootstrap .ngb-dp-arrow-btn { padding: 4px 8px; color: var(--wjb-paars); }
.bookzo-bootstrap .ngb-dp-navigation-chevron { border-width: 2px 2px 0 0; width: .7em; height: .7em; }
.bookzo-bootstrap .ngb-dp-weekdays { background: transparent; border: 0; }
.bookzo-bootstrap .ngb-dp-weekday { font-family: var(--font-body-bold, inherit); font-style: normal; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--wjb-paars); }
.bookzo-bootstrap .ngb-dp-month { padding: 0 8px; }
.bookzo-bootstrap .ngb-dp-day, .bookzo-bootstrap .ngb-dp-weekday, .bookzo-bootstrap .ngb-dp-week-number { width: 2.4rem; height: 2.4rem; }
.bookzo-bootstrap .custom-day { display: block; width: 100%; height: 100%; }
.bookzo-bootstrap .custom-day-circle {
  display: grid; place-items: center; width: 2.2rem; height: 2.2rem; margin: .1rem; border-radius: 50%;
  font-size: 15px; font-family: var(--font-body-bold, inherit); color: var(--wjb-donker); transition: background .15s ease, color .15s ease;
}
.bookzo-bootstrap .ngb-dp-day:not(.disabled) .custom-day-circle:hover { background: var(--wjb-lila); }
.bookzo-bootstrap .custom-day.disabled .custom-day-circle { color: #B9B3C9; text-decoration: line-through; font-family: inherit; }
.bookzo-bootstrap .ngb-dp-today .custom-day-circle { box-shadow: inset 0 0 0 2px var(--wjb-lila); }
/* Geselecteerde periode: eerste en laatste dag roze, de dagen ertussen lila.
   Klassen zoals Bookzo ze zet: first-date, second-date, range (ook op
   uitgeschakelde dagen binnen de periode). */
.bookzo-bootstrap .custom-day.range { background: var(--wjb-lila, #EFEAFB); }
.bookzo-bootstrap .custom-day.range .custom-day-circle { color: var(--wjb-donker, #2E1352); text-decoration: none; }
.bookzo-bootstrap .custom-day.first-date, .bookzo-bootstrap .custom-day.second-date { background: transparent; }
.bookzo-bootstrap .custom-day.first-date .custom-day-circle,
.bookzo-bootstrap .custom-day.second-date .custom-day-circle,
.bookzo-bootstrap .custom-day.first-selected .custom-day-circle,
.bookzo-bootstrap .custom-day.second-selected .custom-day-circle { background: var(--wjb-roze, #F7148B) !important; color: #fff !important; text-decoration: none; }
.bookzo-bootstrap .custom-day.first-date { border-radius: 50% 0 0 50%; background: var(--wjb-lila, #EFEAFB); }
.bookzo-bootstrap .custom-day.second-date { border-radius: 0 50% 50% 0; background: var(--wjb-lila, #EFEAFB); }

/* Boekblok: kalender en personen naast elkaar, personen als kaart ---------- */
.bookzo.bookzo-bootstrap .calendar-persons { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-start; }
.bookzo.bookzo-bootstrap .calendar-persons .spacer { display: none; }
.bookzo.bookzo-bootstrap .no-departure-selected { flex: 1 1 520px; }
.bookzo.bookzo-bootstrap .persons-wrapper { flex: 0 1 320px; }
.bookzo.bookzo-bootstrap .card { border: 0; border-radius: var(--wjb-radius); background: var(--wjb-lila); }
.bookzo.bookzo-bootstrap .card-body { padding: 20px 22px; }
.bookzo.bookzo-bootstrap .persons-item + .persons-item { margin-top: 12px; }
.bookzo.bookzo-bootstrap .number-control { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bookzo.bookzo-bootstrap .number-control .label { font-family: var(--font-body-bold, inherit); font-size: 15px; text-transform: uppercase; letter-spacing: .03em; color: var(--wjb-donker); }
.bookzo.bookzo-bootstrap .number-control .label b { font-weight: normal; }
.bookzo.bookzo-bootstrap .number-control .numbers { display: flex; align-items: center; gap: 8px; }
.bookzo.bookzo-bootstrap .number-control .form-control { width: 60px; height: 44px; text-align: center; padding: 6px; -moz-appearance: textfield; }
.bookzo.bookzo-bootstrap .number-control .form-control::-webkit-inner-spin-button { -webkit-appearance: none; }
.bookzo.bookzo-bootstrap .btn-circle { width: 44px; height: 44px; padding: 0; border-radius: 50%; display: grid; place-items: center; font-size: 20px; }
.bookzo.bookzo-bootstrap .btn-circle b { font-weight: normal; font-family: var(--font-head, inherit); }

/* Prijzen en boekknop verschijnen pas na een datumkeuze: tot die tijd geen
   lege kaart tonen. */
.bookzo.bookzo-bootstrap .card-alternative-prices { margin-top: 24px !important; }
.bookzo.bookzo-bootstrap .card-alternative-prices:has(.alternative-prices-container:empty) { display: none; }

/* Zoekresultaten (bookzo-results) en filters (bookzo-filters) -------------- */
.bookzo.bookzo-bootstrap .badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 99px; font-family: var(--font-body-bold, inherit); font-size: 13px; font-weight: normal; }
.bookzo.bookzo-bootstrap .badge-secondary { background: var(--wjb-lila); color: var(--wjb-donker); }
.bookzo.bookzo-bootstrap .results-badges-sort-options { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 16px; }
.bookzo.bookzo-bootstrap .filter-button .btn-link { padding: 6px 10px; }
@media (min-width: 900px) { .bookzo.bookzo-bootstrap .filter-button-wrapper { display: none; } }

.bookzo.bookzo-bootstrap .result-items { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); padding: 0; margin: 0 !important; max-width: none; flex: none; }
.bookzo.bookzo-bootstrap .card.result-item {
  border: 0; border-radius: var(--wjb-radius); overflow: hidden; background: var(--wjb-lila);
  transition: transform .25s ease, box-shadow .25s ease; margin: 0 !important;
}
.bookzo.bookzo-bootstrap .card.result-item:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(46, 19, 82, .16); }
.bookzo.bookzo-bootstrap .result-item .card-img-top { border-radius: 0; }
.bookzo.bookzo-bootstrap .result-item .slider-wrapper, .bookzo.bookzo-bootstrap .result-item .slider-panel { aspect-ratio: 4 / 3; }
.bookzo.bookzo-bootstrap .result-item .card-body { padding: 20px 22px 24px; text-align: left; }
.bookzo.bookzo-bootstrap .result-item .card-body p, .bookzo.bookzo-bootstrap .result-item .card-text { text-align: left; }
.bookzo.bookzo-bootstrap .result-item h3.object-name { font-family: var(--font-head, inherit); font-size: 22px; line-height: 1.15; margin: 0 0 4px; overflow-wrap: normal; word-break: normal; hyphens: manual; }
.bookzo.bookzo-bootstrap .result-item .group-name { font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--wjb-paars) !important; }
.bookzo.bookzo-bootstrap .result-item .card-icons, .bookzo.bookzo-bootstrap .result-item .icons { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 15px; }
.bookzo.bookzo-bootstrap .result-item .card-text { font-size: 16px; line-height: 1.55; }
.bookzo.bookzo-bootstrap .result-item .price, .bookzo.bookzo-bootstrap .result-item .prices, .bookzo.bookzo-bootstrap .result-item .card-prices { font-family: var(--font-body-bold, inherit); }
.bookzo.bookzo-bootstrap .result-item .btn { width: 100%; margin-top: 12px; }
.bookzo.bookzo-bootstrap .slider-button { background: rgba(255,255,255,.85); border-radius: 50%; width: 36px; height: 36px; display: grid; place-items: center; }
.bookzo.bookzo-bootstrap .slider-page.is-active { background: var(--wjb-roze); }

.bookzo-bootstrap .filters-wrapper.inline .filters { margin: 0 !important; }
.bookzo-bootstrap .filters h5 { font-family: var(--font-body-bold, inherit); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--paars, #8438DF); margin: 0 0 8px; }
.bookzo-bootstrap .filters .form-group, .bookzo-bootstrap .filters .feature-group { margin-bottom: 22px; }
.bookzo-bootstrap .filters .form-control { height: 46px; font-size: 16px; }
.bookzo-bootstrap .filters .form-check { display: flex; align-items: center; gap: 10px; padding: 0; margin: 0 0 8px; }
.bookzo-bootstrap .filters .form-check-input { position: static; margin: 0; width: 20px; height: 20px; accent-color: var(--roze, #F7148B); }
.bookzo-bootstrap .filters .form-check-label { font-size: 16px; cursor: pointer; }
/* Bookzo levert omschrijvingen soms met inline "text-align: justify". */
.bookzo.bookzo-bootstrap .result-item .card-text [style*="text-align"],
.bookzo.bookzo-bootstrap .result-item .card-text p { text-align: left !important; }

/* Personen-popup bij de zoekbalk (staat los in <body>, buiten .bookzo) ------ */
.bookzo-bootstrap .objects-to-book-wrapper.floating {
  border: 0; border-radius: var(--radius, 15px); padding: 20px; background: #fff;
  box-shadow: 0 24px 48px rgba(46, 19, 82, .18); font-family: var(--font-body, inherit); color: var(--donker, #2E1352);
}
.bookzo-bootstrap .objects-to-book-wrapper .object-to-book.card { border: 0; border-radius: 12px; background: #EFEAFB; margin: 0 0 16px !important; }
.bookzo-bootstrap .objects-to-book-wrapper .card-body { padding: 18px 20px; }
.bookzo-bootstrap .objects-to-book-wrapper .object-to-book-title:empty { display: none; }
.bookzo-bootstrap .objects-to-book-wrapper .persons { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 28px; }
@media (max-width: 560px) { .bookzo-bootstrap .objects-to-book-wrapper .persons { grid-template-columns: 1fr; } }
.bookzo-bootstrap .objects-to-book-wrapper .persons-item { margin: 0 !important; flex: none !important; width: auto !important; max-width: none !important; }
.bookzo-bootstrap .objects-to-book-wrapper .number-control { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.bookzo-bootstrap .objects-to-book-wrapper .number-control .label { text-align: left; }
.bookzo-bootstrap .objects-to-book-wrapper .number-control .label b { display: block; font-family: var(--font-body-bold, inherit); font-weight: normal; font-size: 14px; text-transform: uppercase; letter-spacing: .03em; }
.bookzo-bootstrap .objects-to-book-wrapper .age-wrapper { font-size: 13px; opacity: .65; }
.bookzo-bootstrap .objects-to-book-wrapper .numbers { display: flex; align-items: center; gap: 6px; }
.bookzo-bootstrap .objects-to-book-wrapper .form-control { width: 54px; height: 40px; padding: 4px; text-align: center; font-size: 16px; border: 2px solid #E2DDF2; border-radius: 10px; -moz-appearance: textfield; }
.bookzo-bootstrap .objects-to-book-wrapper .form-control::-webkit-inner-spin-button { -webkit-appearance: none; }
.bookzo-bootstrap .objects-to-book-wrapper .btn-circle {
  width: 40px; height: 40px; padding: 0; border: 0; border-radius: 50%; display: grid; place-items: center;
  background: var(--roze, #F7148B); color: #fff; font-size: 18px; cursor: pointer; transition: background .2s ease;
}
.bookzo-bootstrap .objects-to-book-wrapper .btn-circle b { font-weight: normal; font-family: var(--font-head, inherit); }
.bookzo-bootstrap .objects-to-book-wrapper .btn-circle:hover:not(:disabled) { background: var(--donker, #2E1352); }
.bookzo-bootstrap .objects-to-book-wrapper .btn-circle:disabled { opacity: .3; cursor: default; }
.bookzo-bootstrap .objects-to-book-buttons { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.bookzo-bootstrap .objects-to-book-buttons .btn {
  border-radius: 99px; padding: 12px 24px; border: 2px solid transparent; cursor: pointer;
  font-family: var(--font-head, inherit); font-size: 15px; line-height: 1.2; margin: 0 !important; transition: background .2s ease, color .2s ease;
}
.bookzo-bootstrap .objects-to-book-buttons .btn-primary { background: var(--roze, #F7148B); color: #fff; }
.bookzo-bootstrap .objects-to-book-buttons .btn-primary:hover { background: var(--donker, #2E1352); }
.bookzo-bootstrap .objects-to-book-buttons .btn-link { background: transparent; color: var(--paars, #8438DF); text-decoration: underline; text-underline-offset: 3px; }

/* Reviews-module ----------------------------------------------------------- */
.wj-reviews { margin: clamp(32px, 5vw, 64px) 0 0; }
.wj-reviews__kop { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; margin-bottom: 20px; }
.wj-reviews__kop h2 { margin: 0; }
.wj-reviews__score { display: inline-flex; align-items: center; gap: 14px; padding: 10px 18px 10px 10px; border-radius: 99px; background: var(--donker, #2E1352); color: #fff; }
.wj-reviews__score-cijfer { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--mint, #C7FDBB); color: var(--donker, #2E1352); font-family: var(--font-head, inherit); font-size: 22px; }
.wj-reviews__score-uitleg { font-size: 14px; line-height: 1.25; opacity: .9; }
.wj-reviews--score .wj-reviews__score { margin: 0; }

.wj-review { position: relative; height: 100%; padding: 26px 26px 22px; border-radius: var(--radius, 15px); background: #F5F3FB; display: flex; flex-direction: column; }
.wj-review__cijfer { position: absolute; top: 18px; right: 18px; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--mint, #C7FDBB); font-family: var(--font-head, inherit); font-size: 16px; }
.wj-review__titel { font-size: 19px; margin: 0 56px .5em 0; }
.wj-review__tekst { margin: 0 0 1em; font-size: 16px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.wj-review__voet { margin-top: auto; font-size: 14px; opacity: .85; }
.wj-review__datum::before { content: "· "; }
.wj-review__accommodatie { color: var(--paars, #8438DF); }

.wj-reviews__carrousel { position: relative; }
.wj-reviews__spoor { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 4px 2px 8px; }
.wj-reviews__spoor::-webkit-scrollbar { display: none; }
.wj-reviews__slide { flex: 0 0 min(100%, 340px); scroll-snap-align: start; }
.wj-reviews__knop {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 1;
  width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--donker, #2E1352); color: #fff;
  font-size: 30px; line-height: 1; cursor: pointer; display: grid; place-items: center; box-shadow: 0 8px 20px rgba(46, 19, 82, .2);
}
.wj-reviews__knop--vorige { left: -14px; }
.wj-reviews__knop--volgende { right: -14px; }
.wj-reviews__knop:disabled { opacity: .25; cursor: default; }
.wj-reviews__knop:hover:not(:disabled) { background: var(--roze, #F7148B); }

.wj-reviews--willekeurig { padding: clamp(24px, 4vw, 40px); border-radius: var(--radius, 15px); background: var(--donker, #2E1352); color: #fff; margin-bottom: clamp(40px, 6vw, 72px); }
.wj-reviews--willekeurig h2 { color: #fff; }
.wj-reviews--willekeurig .wj-reviews__score { background: rgba(255,255,255,.1); }
.wj-reviews--willekeurig .wj-review { background: rgba(255,255,255,.08); color: #fff; }
.wj-reviews--willekeurig .wj-review__tekst { -webkit-line-clamp: 10; font-size: 18px; }
.wj-reviews--willekeurig .wj-review__accommodatie { color: var(--mint, #C7FDBB); }
.wj-reviews__andere { margin-top: 16px; appearance: none; border: 2px solid rgba(255,255,255,.5); background: transparent; color: #fff; border-radius: 99px; padding: 9px 20px; cursor: pointer; font-family: var(--font-head, inherit); font-size: 14px; }
.wj-reviews__andere:hover { background: #fff; color: var(--donker, #2E1352); }

/* Module in een eigen sectie (bijv. homepage): geen extra ruimte erboven. */
.wj-bookzo--home-reviews .wj-reviews { margin-top: 0; }

/* Eigen zoek- en filterbalk ------------------------------------------------ */
.wj-zoek__velden { display: grid; gap: 14px 16px; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); align-items: end; }
.wj-zoek__veld { display: flex; flex-direction: column; gap: 6px; }
.wj-zoek__veld--klein { max-width: 130px; }
.wj-zoek__veld--breed { grid-column: span 2; }
.wj-zoek__veld span { font-family: var(--font-body-bold, inherit); font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--wjb-paars); }
.wj-zoek__veld input, .wj-zoek__veld select {
  height: 52px; padding: 10px 14px; font: inherit; font-size: 17px; color: var(--wjb-donker);
  background: #fff; border: 2px solid var(--wjb-lijn, #E2DDF2); border-radius: 12px; transition: border-color .2s ease;
}
.wj-zoek__veld input:focus, .wj-zoek__veld select:focus { outline: none; border-color: var(--wjb-paars); box-shadow: 0 0 0 4px rgba(132, 56, 223, .12); }
.wj-zoek__acties { display: flex; align-items: center; gap: 16px; }
.wj-zoek__acties .btn { height: 52px; display: inline-flex; align-items: center; }
.wj-zoek__wis { white-space: nowrap; font-family: var(--font-body-bold, inherit); color: var(--wjb-paars); text-decoration: underline; text-underline-offset: 3px; }
.wj-zoek__fout { margin: 14px 0 0; padding: 12px 16px; border-radius: 12px; background: #FFE9F3; color: #A5104F; }
.wj-zoek__kop { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px 24px; margin-bottom: .8em; }
.wj-zoek__kop .wj-bookzo__rastertitel { margin: 0; }
.wj-zoek__sorteer label { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; }
.wj-zoek__sorteer select { height: 40px; padding: 4px 12px; font: inherit; border: 2px solid var(--wjb-lijn, #E2DDF2); border-radius: 10px; background: #fff; }
.wj-zoek__leeg { padding: 32px; border-radius: var(--wjb-radius); background: var(--wjb-vlak); text-align: center; }
.wj-zoek__paginering { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.wj-zoek__paginering .btn--outline { border-color: var(--wjb-donker); color: var(--wjb-donker); }
.wj-zoek__paginering .btn--outline:hover { background: var(--wjb-donker); color: #fff; }
.wj-bookzo__kaart-score { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--wjb-mint); color: var(--wjb-donker); font-family: var(--font-head, inherit); font-size: 15px; }
.wj-bookzo__kaart-foto { position: relative; }
.wj-bookzo__kaart-voet { margin-top: auto; display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 8px 16px; }
.wj-bookzo__kaart-prijs { margin: 0; display: flex; flex-direction: column; line-height: 1.25; }
.wj-bookzo__kaart-prijs strong { font-family: var(--font-head, inherit); font-size: 22px; }
.wj-bookzo__kaart-prijs span { font-size: 13px; opacity: .75; }
.wj-bookzo__kaart-korting { text-decoration: line-through; }
.wj-bookzo__kaart-meta { margin-bottom: 1em !important; }

/* Prijsblok onder de kalender na een datumkeuze (bookzo-prices) ------------ */
.bookzo.bookzo-bootstrap .object-calendar-prices { margin-top: 24px; }
.bookzo.bookzo-bootstrap .object-calendar-prices > .mt-4 { margin-top: 0 !important; padding: 22px 24px; border-radius: var(--wjb-radius); background: var(--wjb-lila); }
.bookzo.bookzo-bootstrap .price-arrival-departure { display: flex; flex-wrap: wrap; gap: 6px; font-family: var(--font-body-bold, inherit); color: var(--wjb-donker) !important; margin-bottom: 4px; }
.bookzo.bookzo-bootstrap .price-per-night-wrapper { font-size: 15px; margin-bottom: 10px; }
.bookzo.bookzo-bootstrap .price-discount { text-decoration: line-through; opacity: .6; }
.bookzo.bookzo-bootstrap .total-price-wrapper { font-family: var(--font-head, inherit); font-size: 24px; margin: 6px 0 12px !important; }
.bookzo.bookzo-bootstrap .total-price-wrapper .price-discount { font-size: 16px; }
.bookzo.bookzo-bootstrap .object-calendar-prices .badge { margin: 0 6px 6px 0; }
.bookzo.bookzo-bootstrap .object-calendar-prices .btn-primary { margin-top: 12px; }
.bookzo.bookzo-bootstrap .card-alternative-prices .table, .bookzo.bookzo-bootstrap .card-alternative-prices table { font-size: 14px; }
.bookzo.bookzo-bootstrap .card-alternative-prices th, .bookzo.bookzo-bootstrap .card-alternative-prices td { padding: 8px 6px; text-align: center; border-color: var(--wjb-lijn, #E2DDF2); }
.bookzo.bookzo-bootstrap .card-alternative-prices .btn-link { padding: 4px 8px; }
