/* ══════════════════════════════════════════════════════════════════
   SalonFinder — bridge-laag bovenop het originele Listeo-theme.
   ────────────────────────────────────────────────────────────────
   • Homepage (body zonder .sf-bridge) draait puur op Listeo's
     style.css + main-color-green.css.
   • De overige marketplace-pagina's (body.sf-bridge) gebruiken de
     hieronder geneste componentstijlen, gemodelleerd naar Listeo.
   ══════════════════════════════════════════════════════════════════ */

:root {
    /* Brand */
    --color-primary: #0D3B2E;          /* donkergroen (dark surfaces) */
    --color-primary-mid: #178d72;      /* Listeo "main color"-rol: knoppen, links, tags */
    --color-primary-dark: #116b57;
    --color-primary-light: #E8F5F1;
    --color-accent: #C9A96E;           /* goud */
    --color-accent-light: #FBF5EB;

    /* Neutrals (Listeo grijzen) */
    --color-surface: #FFFFFF;
    --color-surface-2: #F8F8F8;
    --color-bg-subtle: #F8F8F8;
    --color-text: #333333;
    --color-body: #707070;
    --color-muted: #888888;
    --color-border: #E8E8E8;
    --color-white: #FFFFFF;

    --color-star: #FFC64B;
    --color-open: #54BA1D;
    --color-closed: #E42929;

    --font-sans: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --shadow-sm: 0 1px 4px 0 rgba(0,0,0,.06);
    --shadow-md: 0 2px 12px 0 rgba(0,0,0,.12);
    --shadow-lg: 0 4px 22px 0 rgba(0,0,0,.14);
    --shadow-hover: 0 4px 22px 0 rgba(0,0,0,.18);

    --radius-sm: 4px;
    --radius-md: 4px;
    --radius-lg: 6px;
    --radius-xl: 8px;
    --radius-full: 50px;

    --header-height: 82px;
}

/* Geen CSS scroll-behavior: smooth — Listeo's custom.js animeert het scrollen zelf
   ($.fn.scrollTo op de listing-nav); beide tegelijk maakt scrollen traag en schokkerig. */
html { -webkit-font-smoothing: antialiased; }
/* Listeo's bootstrap-grid zet html op 10px (rem-basis). De bridge-componenten zijn
   op een 16px-basis ontworpen; herstel die enkel op bridge-pagina's. */
html:has(body.sf-bridge) { font-size: 16px; }
[x-cloak] { display: none !important; }

/* ── Keyframes (globaal zodat zowel home als bridge-pagina's ze kunnen gebruiken) ── */
@keyframes sfFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes typedBlink { 50% { opacity: 0; } }
@keyframes sfDrop {
    from { opacity: 0; transform: translateY(-6px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Autocomplete-dropdown (globaal: ook in de Listeo-hero op de homepage) ── */
.sf-dropdown {
    animation: sfDrop .18s cubic-bezier(.16,1,.3,1);
    background: #fff; text-align: left;
}
.sf-dropdown ul::-webkit-scrollbar { width: 4px; }
.sf-dropdown ul::-webkit-scrollbar-thumb { background: #E8E8E8; border-radius: 99px; }
.sf-item { position: relative; transition: background .1s ease; list-style: none; }
.sf-item:hover, .sf-item.is-active { background: #F8F8F8; }
.sf-item.is-active .sf-item-accent, .sf-item:hover .sf-item-accent { opacity: 1; }
.sf-item-accent {
    position: absolute; left: 0; top: 20%; bottom: 20%; width: 3px;
    border-radius: 0 3px 3px 0; background: #178d72; opacity: 0; transition: opacity .12s ease;
}

/* Typed-cursor in de Listeo-hero */
.typed-cursor { display: inline-block; width: 2px; height: 1em; background: #333; margin-left: 3px; vertical-align: -0.12em; animation: typedBlink 1s step-end infinite; }

/* ── Chips (globaal: actieve-filterchips op de half-screen pagina's + bridge-pagina's).
   In px, niet rem: Listeo's bootstrap-grid zet de rem-basis op 10px. ── */
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border-radius: 50px;
    font-size: 14px; font-weight: 500; cursor: pointer; transition: all .15s;
    border: 1px solid #E8E8E8; background: #fff; color: #333; user-select: none;
    text-decoration: none; line-height: 1.6;
}
.chip:hover { border-color: #178d72; color: #178d72; }
.chip.active { background: #178d72; color: #fff; border-color: #178d72; }
.chip input { display: none; }

/* ── Filterpaneel-velden (gedeeld door /salons en regiopagina's; px i.v.m. 10px rem-basis) ── */
.sf-filter-heading {
    font-size: 12px; font-weight: 700; color: #888;
    text-transform: uppercase; letter-spacing: .06em; margin: 0 0 8px;
}
.sf-filter-heading:not(:first-child) { margin-top: 18px; }
.sf-check-row {
    display: flex; align-items: center; gap: 9px;
    font-size: 15px; color: #707070; margin: 0 0 7px; cursor: pointer; line-height: 1.5;
}
.sf-check-row input[type="radio"] { width: 15px; height: 15px; margin: 0; accent-color: #178d72; flex-shrink: 0; }
.sf-check-row .hint { margin-left: auto; color: #aaa; font-size: 13px; }
.sf-check-row .sf-stars { color: #FFC64B; font-size: 11px; letter-spacing: 1px; }
.sf-switch-row {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 9px 0; border-bottom: 1px solid #f2f2f2; cursor: pointer; margin: 0;
}
.sf-switch-row:last-of-type { border-bottom: none; }
.sf-switch-row .lbl { display: flex; align-items: center; gap: 9px; font-size: 15px; color: #707070; line-height: 1.5; }
.sf-switch-row .lbl i { width: 17px; text-align: center; font-size: 14px; }
.sf-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.sf-toggle input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.sf-toggle .track { position: absolute; inset: 0; border-radius: 99px; background: #D8D8D8; transition: background .2s; pointer-events: none; }
.sf-toggle .track::after {
    content: ""; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px;
    border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: left .15s;
}
.sf-toggle input:checked + .track { background: var(--switch-on, #178d72); }
.sf-toggle input:checked + .track::after { left: 20px; }
.sf-price-chips { display: flex; gap: 6px; }
.sf-price-chips .chip { flex: 1; justify-content: center; font-weight: 700; }

/* ── Listeo listing-tegels: lange namen/adressen begrenzen zodat de overlay
   nooit over het monogram van de placeholder groeit ── */
.listing-item-content h3 {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
}
.listing-item-content span:not(.tag) {
    display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ── Half-screen kaartpagina's op mobiel: kaart volledig weg, content vol breed.
   (Listeo's eigen fs-regels gelden pas vanaf 991px; daaronder stoorde de kaart.) ── */
@media (max-width: 990px) {
    .fs-inner-container.map-fixed { display: none !important; }
    .fs-inner-container.content { width: 100%; padding-top: 82px; }
}

/* ══════════════════════════════════════════════════════════════════
   BRIDGE-SCOPE — alles hieronder geldt enkel op body.sf-bridge
   (zoek-, regio-, detail-, hub- en claimpagina's).
   ══════════════════════════════════════════════════════════════════ */
.sf-bridge {

    /* body-niveau */
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.75;
    background: var(--color-surface);
    color: var(--color-body);
    overflow-x: clip;
    animation: sfFadeIn .3s ease;

    & *, & *::before, & *::after { box-sizing: border-box; margin: 0; padding: 0; }

    & h1, & h2, & h3, & h4, & h5, & h6 { color: #222; font-weight: 500; line-height: 1.35; }
    & h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
    & h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); }
    & h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
    & strong, & b { font-weight: 600; }
    & a { color: var(--color-primary-mid); }
    & :focus-visible { outline: 2px solid var(--color-primary-mid); outline-offset: 2px; }

    /* ── Container ── */
    & .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.25rem; float: none; }
    @media (min-width: 768px) { & .container { padding: 0 2rem; } }

    /* ── Listeo headline met separator ── */
    & .headline-separator {
        display: block; position: relative;
        font-size: clamp(1.4rem, 2.5vw, 1.8rem); font-weight: 500; color: #222;
        padding-bottom: .9rem; margin-bottom: 1.7rem;
    }
    & .headline-separator::after {
        content: ""; position: absolute; left: 0; bottom: 0;
        width: 40px; height: 2px; background: var(--color-primary-mid);
    }
    & .headline-separator.centered { text-align: center; }
    & .headline-separator.centered::after { left: 50%; transform: translateX(-50%); }
    & .headline-sub { display: block; margin-top: .45rem; font-size: .95rem; font-weight: 400; color: var(--color-muted); }

    /* ── Buttons (pill, Listeo main color) ── */
    & .btn {
        display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
        padding: .62rem 1.45rem;
        border-radius: var(--radius-full);
        font-weight: 600; font-size: .9rem; font-family: inherit;
        cursor: pointer; border: none; text-decoration: none; white-space: nowrap;
        transition: all .2s ease; line-height: 1.6;
    }
    & .btn-primary { background: var(--color-primary-mid); color: #fff; }
    & .btn-primary:hover { background: var(--color-primary-dark); box-shadow: 0 4px 12px rgba(23,141,114,.35); color: #fff; }
    & .btn-accent { background: var(--color-accent); color: #fff; }
    & .btn-accent:hover { background: #b8935a; box-shadow: 0 4px 12px rgba(201,169,110,.4); color: #fff; }
    & .btn-outline { background: transparent; color: var(--color-primary-mid); border: 1px solid var(--color-primary-mid); }
    & .btn-outline:hover { background: var(--color-primary-mid); color: #fff; }
    & .btn-ghost { background: transparent; color: var(--color-text); border: 1px solid var(--color-border); }
    & .btn-ghost:hover { border-color: var(--color-primary-mid); color: var(--color-primary-mid); }
    & .btn-lg { padding: .8rem 1.7rem; font-size: 1rem; }
    & .btn-sm { padding: .38rem .85rem; font-size: .8rem; }

    /* ── Badges ── */
    & .badge {
        display: inline-flex; align-items: center; gap: .3rem;
        padding: .18rem .65rem; border-radius: var(--radius-full);
        font-size: .74rem; font-weight: 600;
    }
    & .badge-green { background: var(--color-primary-light); color: var(--color-primary-mid); }
    & .badge-gold  { background: var(--color-accent-light); color: #8B6914; }
    & .badge-gray  { background: #F0F0F0; color: #555; }

    /* ── Card (generiek) ── */
    & .card {
        background: #fff; border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md); border: none; overflow: hidden;
        transition: transform .25s ease, box-shadow .25s ease;
    }
    & .card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }

    /* ══ LISTING ITEM (bridge-variant met FA6-sterren en CTA-rij) ══ */
    & .listing-item-container {
        background: #fff; border-radius: var(--radius-lg); overflow: hidden;
        box-shadow: var(--shadow-md); display: block; position: relative;
        transition: transform .3s ease, box-shadow .3s ease;
        text-decoration: none; margin-bottom: 0;
    }
    & .listing-item-container:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

    & .listing-item { position: relative; display: block; overflow: hidden; aspect-ratio: 4/3; text-decoration: none; height: auto; background: transparent; }
    /* Listeo's eigen :before-overlay uitschakelen — wij tekenen de gradient via ::after */
    & .listing-item::before { display: none; content: none; }
    & .listing-item img.listing-img, & .listing-item .salon-img {
        width: 100%; height: 100%; object-fit: cover; display: block;
        transition: transform 3.2s cubic-bezier(.2,1,.2,1);
    }
    & .listing-item-container:hover .listing-item img.listing-img,
    & .listing-item-container:hover .listing-item .salon-img { transform: scale(1.07); }

    & .listing-item::after {
        content: ""; position: absolute; inset: 0; pointer-events: none;
        background: linear-gradient(to top, rgba(20,20,22,.85) 0%, rgba(20,20,22,.35) 40%, rgba(20,20,22,0) 62%);
        z-index: 1;
    }

    & .listing-item-content {
        position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
        padding: 1.1rem 1.2rem 1rem;
    }
    & .listing-item-content span.tag {
        display: inline-block; background: var(--color-primary-mid); color: #fff;
        font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
        border-radius: var(--radius-sm); padding: .2rem .55rem; margin-bottom: .5rem;
    }
    & .listing-item-content h3 {
        color: #fff; font-size: 1.12rem; font-weight: 600; margin: 0; line-height: 1.3;
        overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 0;
    }
    & .listing-item-content span.address {
        display: block; color: rgba(255,255,255,.78); font-size: .82rem; margin-top: .15rem;
        overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    }

    & .listing-badge {
        position: absolute; top: .85rem; left: .85rem; z-index: 3; right: auto;
        color: #fff; font-size: .7rem; font-weight: 600; transform: none;
        border-radius: var(--radius-full); padding: .18rem .65rem; width: auto; text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,.25); display: inline-block; line-height: 1.6;
    }
    & .listing-badge.now-open { background: var(--color-open); }
    & .listing-badge.now-closed { background: var(--color-closed); }
    & .listing-badge.featured-badge { background: var(--color-accent); }

    & .like-icon {
        position: absolute; top: .75rem; right: .75rem; z-index: 3;
        width: 36px; height: 36px; border: none; cursor: pointer; padding: 0;
        border-radius: 50%; display: flex; align-items: center; justify-content: center;
        background: rgba(24,24,26,.45); backdrop-filter: blur(4px); color: #fff;
        font-size: .85rem; transition: transform .18s cubic-bezier(.34,1.56,.64,1), background .18s;
        bottom: auto; left: auto;
    }
    & .like-icon::before, & .like-icon::after { display: none; }
    & .like-icon:hover { transform: scale(1.12); background: rgba(24,24,26,.7); }
    & .like-icon .fa-heart.liked { color: #F91942; }

    & .listing-item-footer {
        padding: .75rem 1.2rem .85rem;
        display: flex; align-items: center; justify-content: space-between; gap: .75rem;
    }
    & .star-rating { display: inline-flex; align-items: center; gap: 1.5px; color: var(--color-star); font-size: .74rem; }
    & .star-rating .rating-counter { color: var(--color-muted); font-size: .8rem; margin-left: .35rem; }

    & .verified-icon {
        display: inline-flex; align-items: center; justify-content: center;
        width: 17px; height: 17px; border-radius: 50%; position: static;
        background: #13a889; color: #fff; font-size: .55rem; vertical-align: 1px; margin-left: .25rem;
    }
    & .verified-icon::before, & .verified-icon::after { display: none; }

    /* ── Inputs (line-height reset: Listeo zet 51px op alle inputs/selects) ── */
    & .input {
        width: 100%; padding: .6rem .95rem; height: auto; line-height: 1.5;
        border: 1px solid var(--color-border); border-radius: var(--radius-md);
        font-family: inherit; font-size: .9rem; color: var(--color-text); background: #fff;
        transition: border-color .15s, box-shadow .15s; outline: none; margin: 0; box-shadow: none;
    }
    & select.input { line-height: normal; padding-top: 0; padding-bottom: 0; }
    & .input:focus { border-color: var(--color-primary-mid); box-shadow: 0 0 0 3px rgba(23,141,114,.12); }
    & .input::placeholder { color: #9a9a9a; }
    & .select {
        appearance: none;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23888888' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
        background-repeat: no-repeat; background-position: right .75rem center; background-size: 1.15rem;
        padding-right: 2.4rem; cursor: pointer;
    }

    /* ── Panel dropdowns (Listeo filters; open/close via custom.js .active) ── */
    & .panel-dropdown { position: relative; display: inline-block; }
    & .panel-dropdown > a.panel-trigger {
        display: inline-flex; align-items: center; gap: .45rem;
        background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
        color: var(--color-text); font-size: .85rem; font-weight: 600; text-decoration: none;
        padding: .45rem .95rem; cursor: pointer; transition: all .15s; white-space: nowrap;
    }
    & .panel-dropdown > a.panel-trigger::after {
        content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900;
        font-size: .6rem; color: var(--color-muted); transition: transform .2s;
    }
    & .panel-dropdown.active > a.panel-trigger { border-color: var(--color-primary-mid); color: var(--color-primary-mid); }
    & .panel-dropdown.active > a.panel-trigger::after { transform: rotate(180deg); }
    & .panel-dropdown > a.panel-trigger .filter-count {
        background: var(--color-primary-mid); color: #fff; min-width: 18px; height: 18px;
        border-radius: 50%; font-size: .65rem; display: inline-flex; align-items: center; justify-content: center;
        font-weight: 700; padding: 0 .25rem;
    }
    & .panel-dropdown-content {
        position: absolute; top: calc(100% + 8px); left: 0; z-index: 60;
        background: #fff; border-radius: var(--radius-lg); box-shadow: 0 12px 35px 2px rgba(0,0,0,.14);
        padding: 1.1rem 1.2rem; min-width: 270px; display: none; opacity: 1; visibility: visible;
    }
    & .panel-dropdown.active .panel-dropdown-content { display: block; animation: sfDrop .18s cubic-bezier(.16,1,.3,1); }
    & .panel-dropdown-content.wide { min-width: 380px; width: auto; }
    & .panel-dropdown-content .panel-buttons {
        display: flex; justify-content: space-between; align-items: center;
        margin-top: 1rem; padding-top: .85rem; border-top: 1px solid var(--color-border);
    }
    & .panel-dropdown-content .panel-cancel {
        background: none; border: none; color: var(--color-muted); font-size: .84rem; font-weight: 600;
        cursor: pointer; padding: .3rem .2rem; font-family: inherit;
    }
    & .panel-dropdown-content .panel-apply {
        background: var(--color-primary-mid); border: none; color: #fff; font-size: .84rem; font-weight: 600;
        cursor: pointer; padding: .42rem 1.1rem; border-radius: var(--radius-full); font-family: inherit;
        transition: background .15s;
    }
    & .panel-dropdown-content .panel-apply:hover { background: var(--color-primary-dark); }
    & .panel-checkbox { display: flex; align-items: center; gap: .6rem; cursor: pointer; font-size: .86rem; color: var(--color-body); padding: .22rem 0; }
    & .panel-checkbox input { width: 15px; height: 15px; accent-color: var(--color-primary-mid); cursor: pointer; flex-shrink: 0; position: static; opacity: 1; }
    & .panel-checkbox .count { margin-left: auto; color: var(--color-muted); font-size: .74rem; }
    @media (max-width: 640px) {
        & .panel-dropdown { position: static; }
        & .panel-dropdown-content, & .panel-dropdown-content.wide { left: 0; right: 0; min-width: 0; width: 100%; }
    }

    /* ── Single listing ── */
    & .listing-titlebar h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; display: inline; margin-right: .5rem; padding: 0; }
    & .listing-tag {
        display: inline-block; background: var(--color-primary-mid); color: #fff;
        font-size: .72rem; font-weight: 600; border-radius: var(--radius-sm);
        padding: .22rem .6rem; vertical-align: middle; text-decoration: none; margin: 0; line-height: 1.6;
    }
    & .listing-address { color: var(--color-muted); font-size: .9rem; text-decoration: none; display: inline-flex; align-items: center; gap: .35rem; margin: 0; padding: 0; }
    & .listing-address::before { display: none; }
    & .listing-address:hover { color: var(--color-primary-mid); }

    /* In-flow nav is statisch; custom.js kloont hem naar body en toont de
       kloon fixed zodra je voorbij scrollt (origineel Listeo-gedrag). */
    & .listing-nav-container {
        border-bottom: 1px solid var(--color-border); margin: 1.5rem 0 0;
        position: static; background: #fff;
    }
    & .listing-nav-container.cloned {
        position: fixed; top: 0; left: 0; right: 0; margin: 0; z-index: 1010;
        opacity: 0; visibility: hidden; transform: translateY(-100%);
        transition: .4s; border-bottom: 1px solid var(--color-border);
    }
    & .listing-nav-container.cloned .listing-nav { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
    & .listing-nav-container.cloned.stick {
        opacity: 1; visibility: visible; transform: translateY(0);
    }
    /* Desktop: horizontale tabbalk met accent-onderlijn. Mobiel (≤768px) neemt
       Listeo's eigen stijl het over: verticale lijst in een grijze kaart. */
    @media (min-width: 769px) {
        & .listing-nav { display: flex; gap: .25rem; list-style: none; overflow-x: auto; scrollbar-width: none; margin: 0; }
        & .listing-nav::-webkit-scrollbar { display: none; }
        & .listing-nav li { display: block; margin: 0; }
        & .listing-nav a {
            display: block; padding: .8rem 1rem; color: var(--color-body); font-size: .9rem; font-weight: 600;
            text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap; transition: all .15s; margin: 0;
        }
        & .listing-nav a:hover, & .listing-nav a.active { color: var(--color-primary-mid); border-bottom-color: var(--color-primary-mid); }
    }
    @media (max-width: 768px) {
        & .listing-nav { list-style: none; }
        & .listing-nav a { text-decoration: none; font-weight: 600; transition: color .15s; }
        & .listing-nav a.active, & .listing-nav a:hover { color: var(--color-primary-mid); }
        & .listing-nav-container { border-bottom: none; }
        /* Sticky kloon is op mobiel een schermvullende kaart — niet tonen. */
        & .listing-nav-container.cloned { display: none !important; }
    }

    & .listing-section { padding: 1.9rem 0 .4rem; scroll-margin-top: 120px; }
    & .listing-desc-headline {
        font-size: 1.25rem; font-weight: 600; color: #222;
        margin: 0 0 1.1rem; padding-bottom: .7rem; position: relative;
    }
    & .listing-desc-headline::after {
        content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--color-primary-mid);
    }

    & .pricing-list-container { padding: 0; margin: 0; }
    & .pricing-list-container h4 {
        font-size: 1rem; font-weight: 600; background: var(--color-surface-2);
        border-radius: var(--radius-md); padding: .6rem .9rem; margin: 1.1rem 0 .35rem;
    }
    & .pricing-list-container ul { list-style: none; margin: 0; padding: 0; }
    & .pricing-list-container ul li {
        display: flex; align-items: baseline; gap: 1rem; padding: .7rem .9rem;
        border-bottom: 1px solid #f2f2f2; margin: 0; width: auto;
    }
    & .pricing-list-container ul li:last-child { border-bottom: none; }
    & .pricing-list-container h5 { font-size: .92rem; font-weight: 600; margin: 0; flex: 1; min-width: 0; }
    & .pricing-list-container li p { font-size: .8rem; color: var(--color-muted); margin: 0; flex: 2; }
    & .pricing-list-container li .price { font-weight: 700; color: var(--color-text); font-size: .92rem; white-space: nowrap; margin-left: auto; position: static; }
    & .pricing-list-container li .duration { font-size: .76rem; color: var(--color-muted); white-space: nowrap; }

    & .boxed-widget {
        background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
        padding: 1.6rem 1.7rem; position: relative;
    }
    & .boxed-widget h3 {
        font-size: 1.05rem; font-weight: 600; margin: 0 0 1.1rem; padding: 0 0 .9rem;
        border-bottom: 1px solid var(--color-border); display: flex; align-items: center; gap: .5rem;
    }
    & .boxed-widget h3 i { color: var(--color-primary-mid); }
    & .boxed-widget.opening-hours ul { list-style: none; margin: 0; padding: 0; }
    & .boxed-widget.opening-hours ul li {
        display: flex; justify-content: space-between; font-size: .88rem; color: var(--color-body);
        padding: .42rem 0; border-bottom: 1px solid #f2f2f2; margin: 0; width: auto;
    }
    & .boxed-widget.opening-hours ul li:last-child { border-bottom: none; }
    & .boxed-widget.opening-hours ul li span { color: var(--color-text); font-weight: 600; margin: 0; float: none; }
    & .boxed-widget.opening-hours ul li.today { color: var(--color-primary-mid); font-weight: 700; }
    & .boxed-widget.opening-hours ul li.today span { color: var(--color-primary-mid); }
    & .boxed-widget .listing-badge { top: 1.45rem; right: 1.7rem; left: auto; position: absolute; }

    & .verified-badge {
        background: #13a889; color: #fff; border-radius: var(--radius-lg);
        padding: .8rem 1rem; text-align: center; font-weight: 600; font-size: .95rem;
        display: flex; align-items: center; justify-content: center; gap: .5rem;
        box-shadow: 0 3px 12px rgba(19,168,137,.35); margin: 0;
    }

    & .booking-sticky-footer {
        position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
        background: #fff; border-top: 1px solid var(--color-border);
        padding: .7rem 1.25rem; box-shadow: 0 -4px 16px rgba(0,0,0,.09);
        display: flex; align-items: center; justify-content: space-between; gap: .75rem;
        transform: none; transition: none;
    }
    @media (min-width: 992px) { & .booking-sticky-footer, & .booking-sticky-spacer { display: none !important; } }

    & .rating-overview { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; background: var(--color-surface-2); border-radius: var(--radius-lg); padding: 1.25rem 1.5rem; border: none; }
    & .rating-overview-box { text-align: center; min-width: 110px; padding: 0; border: none; }
    & .rating-overview-box-total { font-size: 2.4rem; font-weight: 700; color: var(--color-text); line-height: 1.1; display: block; }
    & .rating-overview-box-percent { font-size: .8rem; color: var(--color-muted); display: block; margin-bottom: .3rem; }

    & .listing-reviews { list-style: none; margin: 0; padding: 0; }
    & .listing-reviews > li { display: flex; gap: 1rem; padding: 1.25rem 0; border-bottom: 1px solid #f2f2f2; margin: 0; width: auto; }
    & .listing-reviews .avatar {
        width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
        background: var(--color-primary-light); color: var(--color-primary-mid);
        display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem;
        position: static; margin: 0;
    }
    & .listing-reviews .comment-by { font-weight: 600; color: var(--color-text); font-size: .92rem; padding: 0; }
    & .listing-reviews .comment-by .date { color: var(--color-muted); font-weight: 400; font-size: .78rem; margin-left: .5rem; float: none; }
    & .listing-reviews p { font-size: .88rem; margin: .35rem 0 0; padding: 0; }

    /* ── Toggle switch ── */
    & .sf-switch { display: flex; align-items: center; justify-content: space-between; gap: .75rem; cursor: pointer; }
    & .sf-switch-label { font-size: .84rem; font-weight: 500; display: flex; align-items: center; gap: .5rem; color: var(--color-body); }
    & .sf-switch-control { position: relative; flex-shrink: 0; width: 36px; height: 20px; }
    & .sf-switch-control input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
    & .sf-switch-track { position: absolute; inset: 0; border-radius: 99px; background: #D1D5DB; transition: background .2s; pointer-events: none; }
    & .sf-switch-track::after { content: ""; position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: left .15s; }
    & .sf-switch-control input:checked + .sf-switch-track { background: var(--switch-on, var(--color-primary-mid)); }
    & .sf-switch-control input:checked + .sf-switch-track::after { left: 18px; }
    & .sf-switch-control input:focus-visible + .sf-switch-track { outline: 2px solid var(--color-primary-mid); outline-offset: 2px; }

    /* ── Open/closed ── */
    & .open-now { color: var(--color-open); font-weight: 600; }
    & .closed-now { color: var(--color-closed); font-weight: 600; }

    & .skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius-sm); }
    & .divider { height: 1px; background: var(--color-border); margin: 1.4rem 0; }

    /* ── Mobiele filter-drawer ── */
    & .filter-drawer { position: fixed; inset: 0; z-index: 200; }
    & .filter-drawer-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
    & .filter-drawer-panel {
        position: absolute; bottom: 0; left: 0; right: 0; background: #fff;
        border-radius: 14px 14px 0 0; max-height: 90vh; overflow-y: auto; padding: 1.5rem;
    }

    /* ── Paginatie ── */
    & .pagination-nav { display: flex; align-items: center; justify-content: center; gap: .35rem; flex-wrap: wrap; }
    & .pagination-nav a, & .pagination-nav span, & .pagination-nav button {
        min-width: 42px; height: 42px; padding: 0 .5rem;
        border-radius: var(--radius-md); border: none;
        display: inline-flex; align-items: center; justify-content: center;
        font-size: .9rem; font-weight: 600; text-decoration: none;
        background: transparent; color: var(--color-body); transition: all .15s; font-family: inherit; margin: 0;
    }
    & .pagination-nav a:hover { background: var(--color-primary-light); color: var(--color-primary-mid); }
    & .pagination-nav span.current { background: var(--color-primary-mid); color: #fff; }
    & .pagination-nav button:disabled { opacity: .4; cursor: not-allowed; }
    & [data-region-pagination] nav { display: flex; justify-content: center; }

    /* ── Helpers ── */
    & .salon-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
    & .salon-img-wrap { overflow: hidden; }
    & .section { padding: 3.5rem 0; }
    @media (min-width: 768px) { & .section { padding: 4.5rem 0; } }

    /* ── CTA-banner ── */
    & .cta-parallax {
        position: relative; background: var(--color-primary); overflow: hidden;
        padding: 4.5rem 0;
    }
    & .cta-parallax .cta-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(13,59,46,.92), rgba(20,92,71,.78)); }
    & .cta-parallax .container { position: relative; z-index: 1; }
    & .cta-parallax h2 { color: #fff; }
    & .cta-parallax p { color: rgba(255,255,255,.8); }

    /* ── Scrollbar ── */
    & ::-webkit-scrollbar { width: 6px; height: 6px; }
    & ::-webkit-scrollbar-track { background: transparent; }
    & ::-webkit-scrollbar-thumb { background: #d1d5db; border-radius: 99px; }
}
