/* =============================================================
   Geurts Makelaars – Propertybase Feed  v2.1
   Huisstijl: bebasneue (koppen), swiss (body), #ba65a5 (primair)
   ============================================================= */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
    --gf-purple:     #ba65a5;
    --gf-purple-dk:  #9f4789;
    --gf-text:       #5f5e5e;
    --gf-grey:       #656565;
    --gf-grey-lt:    #949494;
    --gf-white:      #ffffff;
    --gf-bg:         #f7f7f7;
    --gf-border:     #e0e0e0;
    --gf-overlay:    #5f5e5e;
    --gf-green:      #3a7d44;
    --gf-orange:     #c47d00;
    --gf-wa:         #25d366;
    --gf-radius:     7px;
    --gf-shadow:     0 2px 12px rgba(0,0,0,.10);
    --gf-shadow-lg:  0 8px 28px rgba(0,0,0,.16);
    --gf-transition: all .4s;
    --gf-font-head:  bebasneue, sans-serif;
    --gf-font-body:  swiss, sans-serif;
}

/* ── Icoon helper ────────────────────────────────────────── */
.gi {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* ══════════════════════════════════════════════════════════
   FILTERFORMULIER  (stijl: .search-aanbod van de site)
   ══════════════════════════════════════════════════════════ */

.geurts-filter-bar {
    background: var(--gf-purple);
    border-radius: var(--gf-radius);
    padding: 20px 20px 16px;
    margin-bottom: 20px;
    font-family: var(--gf-font-body);
}

.gf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}

.gf-row--checks {
    margin-top: 10px;
    align-items: center;
}

.gf-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 130px;
    flex: 1;
}
.gf-field--search  { flex: 2; min-width: 200px; }
.gf-field--price   { flex: 1.5; min-width: 210px; }

.gf-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    font-stretch: condensed;
    letter-spacing: .02em;
}

.gf-input,
.gf-select {
    font-family: var(--gf-font-body);
    font-size: 18px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-text);
    background: var(--gf-white);
    border: 0;
    border-radius: var(--gf-radius);
    padding: 10px 14px;
    height: 48px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    -webkit-appearance: none;
    transition: box-shadow .2s;
}
.gf-input:focus,
.gf-select:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,.5);
}

.gf-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ba65a5' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.gf-input-icon { position: relative; }
.gf-input-icon svg {
    position: absolute;
    left: 12px; top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    color: var(--gf-grey-lt);
    pointer-events: none;
}
.gf-input-icon .gf-input { padding-left: 38px; }

.gf-price-range {
    display: flex;
    align-items: center;
    gap: 6px;
}
.gf-input--price { flex: 1; min-width: 80px; }
.gf-price-sep {
    color: rgba(255,255,255,.7);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Checkboxes */
.gf-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-white);
    cursor: pointer;
    user-select: none;
}
.gf-check input[type="checkbox"] { display: none; }
.gf-check__box {
    width: 20px; height: 20px;
    border: 2px solid rgba(255,255,255,.6);
    border-radius: 4px;
    background: transparent;
    flex-shrink: 0;
    position: relative;
    transition: background .2s, border-color .2s;
}
.gf-check input:checked + .gf-check__box {
    background: var(--gf-white);
    border-color: var(--gf-white);
}
.gf-check input:checked + .gf-check__box::after {
    content: '';
    display: block;
    position: absolute;
    left: 4px; top: 1px;
    width: 6px; height: 10px;
    border: 2px solid var(--gf-purple);
    border-top: none; border-left: none;
    transform: rotate(45deg);
}

.gf-actions { margin-left: auto; }

.gf-btn--reset {
    font-family: var(--gf-font-body);
    font-size: 17px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-white);
    background: transparent;
    border: 2px solid rgba(255,255,255,.5);
    border-radius: var(--gf-radius);
    padding: 8px 18px;
    cursor: pointer;
    transition: var(--gf-transition);
    height: 42px;
}
.gf-btn--reset:hover {
    background: rgba(255,255,255,.15);
    border-color: var(--gf-white);
}

/* Teller */
.geurts-count {
    font-family: var(--gf-font-body);
    font-size: 17px;
    font-stretch: condensed;
    color: var(--gf-grey);
    margin: 0 0 14px;
    font-weight: 700;
}
.geurts-no-results {
    font-family: var(--gf-font-body);
    text-align: center;
    padding: 48px 24px;
    color: var(--gf-grey);
    font-size: 22px;
    font-stretch: condensed;
    background: var(--gf-white);
    border-radius: var(--gf-radius);
    border: 1px solid var(--gf-border);
}

/* ══════════════════════════════════════════════════════════
   GRID & KAART  (stijl: .woning van de site)
   ══════════════════════════════════════════════════════════ */

.geurts-feed-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 48px;
    font-family: var(--gf-font-body);
}

.geurts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) { .geurts-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .geurts-grid { grid-template-columns: 1fr; gap: 16px; } }

/* Kaart */
.geurts-card {
    position: relative;
    display: block;
    background: var(--gf-white);
    border-radius: var(--gf-radius);
    overflow: hidden;
    box-shadow: var(--gf-shadow);
    transition: var(--gf-transition);
}
.geurts-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gf-shadow-lg);
}

.geurts-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.geurts-card__link:hover { text-decoration: none; color: inherit; }

/* Afbeelding */
.geurts-card__img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e0e0e0;
}
.geurts-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.geurts-card:hover .geurts-card__img { transform: scale(1.05); }

.geurts-card__no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #d8d8d8, #ebebeb);
    color: #aaa;
}
.geurts-card__no-img svg { width: 48px; height: 48px; }

/* Overlay op afbeelding — exact zoals .woning .overlay */
.geurts-card__overlay {
    padding: 14px 18px 16px;
    position: absolute;
    bottom: 0; right: 0;
    width: 80%;
    background: var(--gf-purple);
    color: var(--gf-white);
    transition: var(--gf-transition);
}
.geurts-card:hover .geurts-card__overlay {
    background: var(--gf-overlay);
}

.geurts-card__overlay-city {
    font-family: var(--gf-font-body);
    font-size: 16px;
    font-weight: 700;
    font-stretch: condensed;
    opacity: .9;
    line-height: 1.2;
    margin-bottom: 2px;
    display: block;
}
.geurts-card__overlay-price {
    font-family: var(--gf-font-head);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    display: block;
}

/* Status badge links boven */
.geurts-badge {
    position: absolute;
    top: 12px; left: 12px;
    font-family: var(--gf-font-body);
    font-size: 12px;
    font-weight: 700;
    font-stretch: condensed;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    color: #fff;
    line-height: 1;
    z-index: 1;
}
.badge--available { background: var(--gf-green); }
.badge--offer     { background: var(--gf-orange); }
.badge--sold      { background: var(--gf-overlay); }

/* Nieuwbouw / type pills */
.geurts-card__new-pill {
    position: absolute;
    top: 12px; right: 12px;
    font-family: var(--gf-font-body);
    font-size: 12px;
    font-weight: 700;
    font-stretch: condensed;
    background: var(--gf-purple);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 1;
}

/* Kaartbody */
.geurts-card__body {
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.geurts-card__location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--gf-font-body);
    font-size: 12px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-grey-lt);
    margin: 0;
}
.geurts-card__location .gi { width: 13px; height: 13px; color: var(--gf-purple); }

.geurts-card__title {
    font-family: var(--gf-font-head);
    font-size: 18px;
    font-weight: 400;
    color: var(--gf-text);
    margin: 0;
    line-height: 1.15;
    /* max 2 regels */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.geurts-card__desc {
    font-family: var(--gf-font-body);
    font-size: 13px;
    font-weight: 400;
    font-stretch: normal;
    color: var(--gf-grey);
    line-height: 1.45;
    margin: 0;
    /* max 2 regels */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.geurts-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}
.geurts-card__spec {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--gf-font-body);
    font-size: 12px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-grey);
}
.geurts-card__spec .gi { width: 13px; height: 13px; color: var(--gf-purple); }
.geurts-card__spec--pool .gi { color: #1a73d9; }

.geurts-card__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding-top: 10px;
    border-top: 1px solid var(--gf-border);
}

.geurts-card__price {
    font-family: var(--gf-font-head);
    font-size: 22px;
    font-weight: 400;
    color: var(--gf-purple);
    line-height: 1;
}

/* "Bekijk woning →" als kleine pill-knop rechts */
.geurts-card__more {
    margin-left: auto;
    font-family: var(--gf-font-body);
    font-size: 12px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-purple);
    background: #f3e9f0;
    padding: 4px 10px;
    border-radius: var(--gf-radius);
    white-space: nowrap;
    transition: var(--gf-transition);
}
.geurts-card:hover .geurts-card__more {
    background: var(--gf-purple);
    color: #fff;
}

/* Notices */
.geurts-notice {
    padding: 16px 20px;
    border-radius: var(--gf-radius);
    font-family: var(--gf-font-body);
    font-size: 17px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    color: #7a5000;
}
.geurts-notice--error {
    background: #fff5fb;
    border-color: #e8b4d8;
    color: var(--gf-purple-dk);
}

/* ══════════════════════════════════════════════════════════
   DETAILPAGINA
   ══════════════════════════════════════════════════════════ */

.geurts-detail-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px 64px;
    font-family: var(--gf-font-body);
    color: var(--gf-text);
}

/* Breadcrumbs */
.geurts-detail__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-stretch: condensed;
    font-weight: 700;
    color: var(--gf-grey-lt);
    padding: 22px 0 20px;
    flex-wrap: wrap;
}
.geurts-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--gf-purple);
    font-weight: 700;
    text-decoration: none;
    transition: var(--gf-transition);
}
.geurts-detail__back:hover { color: var(--gf-purple-dk); text-decoration: none; }
.geurts-detail__back svg { width: 16px; height: 16px; }
.gd-bc-sep { color: var(--gf-border); }

/* ── Galerij ─────────────────────────────────────────── */

.geurts-gallery {
    border-radius: var(--gf-radius);
    overflow: hidden;
    background: #111;
    margin-bottom: 28px;
}

.geurts-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    cursor: zoom-in;
    background: #111;
}

.geurts-gallery__main-img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .25s ease;
}

.geurts-gallery__expand {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(0,0,0,.5);
    border: none;
    border-radius: var(--gf-radius);
    padding: 8px;
    cursor: pointer;
    color: #fff;
    display: flex;
    backdrop-filter: blur(4px);
    transition: background .2s;
}
.geurts-gallery__expand:hover { background: rgba(186,101,165,.8); }
.geurts-gallery__expand svg { width: 18px; height: 18px; }

.geurts-gallery__count {
    position: absolute;
    bottom: 14px; left: 14px;
    background: rgba(0,0,0,.5);
    color: #fff;
    font-family: var(--gf-font-body);
    font-size: 14px;
    font-weight: 700;
    font-stretch: condensed;
    padding: 4px 12px;
    border-radius: var(--gf-radius);
    backdrop-filter: blur(4px);
}

.geurts-gallery__thumbs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: #1a1a1a;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gf-purple) #1a1a1a;
}
.geurts-gallery__thumbs::-webkit-scrollbar { height: 4px; }
.geurts-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--gf-purple); border-radius: 2px; }

.geurts-gallery__thumb {
    flex-shrink: 0;
    width: 90px; height: 60px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    opacity: .6;
    transition: var(--gf-transition);
}
.geurts-gallery__thumb.is-active,
.geurts-gallery__thumb:hover {
    border-color: var(--gf-purple);
    opacity: 1;
}
.geurts-gallery__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 640px) {
    .geurts-gallery__main { aspect-ratio: 4 / 3; }
    .geurts-gallery__thumb { width: 68px; height: 46px; }
}

/* ── Hero info bar ───────────────────────────────────── */

.geurts-detail__hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 3px solid var(--gf-purple);
}

.geurts-detail__hero-left { flex: 1; min-width: 260px; }

.geurts-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.gd-tag {
    display: inline-block;
    font-family: var(--gf-font-body);
    font-size: 14px;
    font-weight: 700;
    font-stretch: condensed;
    padding: 4px 12px;
    border-radius: var(--gf-radius);
    background: #f3e9f0;
    color: var(--gf-purple);
    letter-spacing: .02em;
}
.gd-tag--new { background: var(--gf-purple); color: #fff; }

/* Gebruik bebasneue voor de hoofdtitel */
.geurts-detail__title {
    font-family: var(--gf-font-head);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    color: var(--gf-text);
    line-height: 1.1;
    margin: 0 0 12px;
}

.geurts-detail__address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-grey-lt);
    margin: 0;
}
.geurts-detail__address .gi { color: var(--gf-purple); }

.geurts-detail__price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}
/* Prijs in Bebas Neue — exact zoals .woning .overlay .prijs */
.geurts-detail__price {
    font-family: var(--gf-font-head);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 400;
    color: var(--gf-purple);
    line-height: 1;
}
.geurts-detail__ref {
    font-size: 13px;
    font-stretch: condensed;
    color: var(--gf-grey-lt);
}

@media (max-width: 600px) {
    .geurts-detail__hero { flex-direction: column; }
    .geurts-detail__price-block { align-items: flex-start; }
}

/* ── 2-koloms content ────────────────────────────────── */

.geurts-detail__content {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 900px) {
    .geurts-detail__content {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }
    .geurts-detail__sidebar {
        order: -1;
        position: static; /* sticky uitzetten op mobiel */
    }
    .geurts-detail__main {
        order: 1;
    }
}

.geurts-detail__section { margin-bottom: 36px; }

/* Sectietitels in Bebas Neue */
.geurts-section-title {
    font-family: var(--gf-font-head);
    font-size: 32px;
    font-weight: 400;
    color: var(--gf-text);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gf-purple);
    display: block;
}

/* Omschrijving */
.geurts-detail__desc p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gf-text);
    margin: 0 0 14px;
}
.geurts-detail__desc p:last-child { margin-bottom: 0; }

/* Kenmerken */
.geurts-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.geurts-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--gf-font-body);
    font-size: 16px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-text);
    background: #f3e9f0;
    padding: 7px 14px;
    border-radius: var(--gf-radius);
    border: 1px solid #e8c8de;
    transition: var(--gf-transition);
}
.geurts-feature:hover { background: var(--gf-purple); color: #fff; }
.geurts-feature:hover .gi { color: #fff; }
.geurts-feature .gi { color: var(--gf-purple); width: 15px; height: 15px; }

/* Specs tabel */
.geurts-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
    table-layout: fixed;
}
.geurts-specs-table tr { border-bottom: 1px solid var(--gf-border); }
.geurts-specs-table tr:last-child { border-bottom: none; }
.geurts-specs-table th,
.geurts-specs-table td {
    padding: 11px 14px;
    text-align: left;
    vertical-align: top;
    word-break: break-word;
}
.geurts-specs-table th {
    width: 22%;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-grey-lt);
    font-size: 15px;
    background: var(--gf-bg);
}
.geurts-specs-table td {
    color: var(--gf-text);
    font-weight: 700;
    font-stretch: condensed;
}

/* Mobiel: gestapelde weergave (label boven, waarde onder) */
@media (max-width: 640px) {
    .geurts-specs-table,
    .geurts-specs-table tbody,
    .geurts-specs-table tr,
    .geurts-specs-table th,
    .geurts-specs-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .geurts-specs-table tr {
        border-bottom: 1px solid var(--gf-border);
        padding: 6px 0;
    }
    .geurts-specs-table tr:last-child { border-bottom: none; }
    .geurts-specs-table th {
        font-size: 12px;
        padding: 4px 10px 2px;
        background: none;
        border-bottom: none;
        color: var(--gf-grey-lt);
        width: 100%;
    }
    .geurts-specs-table td {
        font-size: 15px;
        font-weight: 700;
        padding: 0 10px 6px;
    }
    .geurts-specs-table th:empty,
    .geurts-specs-table td:empty { display: none; }
}

/* ── Sidebar ─────────────────────────────────────────── */

.geurts-detail__sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 901px) {
    .geurts-detail__sidebar {
        position: sticky;
        top: 24px;
    }
}

.geurts-sidebar-card {
    background: var(--gf-white);
    border: 1px solid var(--gf-border);
    border-radius: var(--gf-radius);
    padding: 22px 22px 20px;
    box-shadow: var(--gf-shadow);
}

.geurts-sidebar-card__title {
    font-family: var(--gf-font-head);
    font-size: 26px;
    font-weight: 400;
    color: var(--gf-text);
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gf-purple);
}

/* Snel overzicht */
.geurts-quick-specs {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.geurts-quick-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-text);
}
.geurts-quick-specs .gi { color: var(--gf-purple); }

/* Contact kaart */
.geurts-sidebar-card--contact {
    border-top: 4px solid var(--gf-purple);
}
.geurts-contact-intro {
    font-size: 17px;
    font-stretch: condensed;
    color: var(--gf-grey);
    margin: 0 0 16px;
    line-height: 1.5;
}
.geurts-contact-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Knoppen — exact zoals .btn.btn-primary van de site */
.geurts-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--gf-font-body);
    font-size: 20px;
    font-weight: 700;
    font-stretch: condensed;
    padding: 12px 20px;
    border-radius: var(--gf-radius);
    border: 0;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    line-height: 1;
    transition: var(--gf-transition);
    min-width: 120px;
}
.geurts-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.geurts-btn--primary {
    background: var(--gf-purple);
    color: #fff;
}
.geurts-btn--primary:hover,
.geurts-btn--primary:focus {
    background: var(--gf-purple-dk);
    color: #fff;
    transform: translateY(-1px);
}

.geurts-btn--whatsapp {
    background: var(--gf-wa);
    color: #fff;
}
.geurts-btn--whatsapp:hover {
    background: #20b85a;
    color: #fff;
    transform: translateY(-1px);
}

.geurts-btn--secondary {
    background: var(--gf-bg);
    color: var(--gf-text);
    border: 1px solid var(--gf-border);
}
.geurts-btn--secondary:hover {
    background: #f3e9f0;
    color: var(--gf-purple);
    border-color: var(--gf-purple);
}

/* WhatsApp Kanaal knop */
.geurts-btn--wa-channel {
    background: #075e54;
    color: #fff;
    gap: 8px;
}
.geurts-btn--wa-channel:hover {
    background: #054d45;
    color: #fff;
    transform: translateY(-1px);
}
.geurts-btn--wa-channel svg { width: 16px; height: 16px; }

/* WhatsApp Kanaal kaart in sidebar */
.geurts-wa-channel-card {
    border-top: 4px solid #25d366;
    padding: 16px 18px;
}

.geurts-wa-channel__inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.geurts-wa-channel__icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #25d366;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: #fff;
}
.geurts-wa-channel__icon svg { width: 22px; height: 22px; }

.geurts-wa-channel__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.geurts-wa-channel__text strong {
    font-family: var(--gf-font-body);
    font-size: 15px;
    font-weight: 700;
    font-stretch: condensed;
    color: var(--gf-text);
    line-height: 1.2;
}
.geurts-wa-channel__text span {
    font-family: var(--gf-font-body);
    font-size: 12px;
    color: var(--gf-grey-lt);
    line-height: 1.4;
    font-stretch: normal;
}

/* WhatsApp Kanaal banner (shortcode stijl="banner") */
.geurts-wa-channel-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 4px solid #25d366;
    border-radius: var(--gf-radius);
    padding: 16px 20px;
    flex-wrap: wrap;
    font-family: var(--gf-font-body);
    margin: 16px 0;
}
.geurts-wa-channel-banner .geurts-wa-channel__icon {
    width: 48px; height: 48px;
}
.geurts-wa-channel-banner .geurts-wa-channel__text {
    flex: 1; min-width: 180px;
}
.geurts-wa-channel-banner .geurts-wa-channel__text strong {
    font-size: 17px;
}
.geurts-wa-channel-banner .geurts-wa-channel__text span {
    font-size: 13px;
}
.geurts-wa-channel-banner .geurts-btn--wa-channel {
    flex-shrink: 0;
}

@media (max-width: 500px) {
    .geurts-wa-channel-banner { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════════════════════════ */

.geurts-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease;
}
.geurts-lightbox.is-open { opacity: 1; }

.gl-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.93);
    cursor: zoom-out;
}

.gl-img-wrap {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 88vh;
}
.gl-img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--gf-radius);
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}

.gl-close, .gl-prev, .gl-next {
    position: fixed;
    z-index: 3;
    background: rgba(255,255,255,.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background .2s;
    padding: 0;
}
.gl-close:hover, .gl-prev:hover, .gl-next:hover {
    background: var(--gf-purple);
}

.gl-close { top: 18px; right: 18px; width: 44px; height: 44px; }
.gl-close svg { width: 22px; height: 22px; }

.gl-prev, .gl-next {
    top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px;
}
.gl-prev svg, .gl-next svg { width: 24px; height: 24px; }
.gl-prev { left: 16px; }
.gl-next { right: 16px; }

.gl-counter {
    position: fixed;
    bottom: 22px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-family: var(--gf-font-body);
    font-size: 16px;
    font-weight: 700;
    font-stretch: condensed;
    z-index: 3;
    background: rgba(0,0,0,.4);
    padding: 4px 16px;
    border-radius: 20px;
}

@media (max-width: 600px) {
    .gl-prev { left: 8px; }
    .gl-next { right: 8px; }
    .gl-prev, .gl-next { width: 42px; height: 42px; }
}
