/* ==========================================================================
   Sygrisis Estate — Extended Styles
   Map page, mobile bottom nav, page templates, drawer, hero slider
   ========================================================================== */

/* ══════════════════════════════════════════
   HERO SWIPER SLIDER
══════════════════════════════════════════ */
.hero-swiper {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Override Swiper defaults to match existing hero layout */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
    height: 100%;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, .6);
    opacity: 1;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background: var(--olive);
    width: 24px;
    border-radius: 4px;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--white);
    background: rgba(0, 0, 0, .25);
    backdrop-filter: blur(6px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    --swiper-navigation-size: 18px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--green);
}

@media (max-width: 767px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

}

/* Hide arrows/dots when only a single slide is configured */
.hero-swiper[data-slide-count="1"] .swiper-button-prev,
.hero-swiper[data-slide-count="1"] .swiper-button-next,
.hero-swiper[data-slide-count="1"] .swiper-pagination {
    display: none;
}

/* Hide arrows/dots when only a single slide is configured */
.swiper-button-prev,
.swiper-button-next {
    color: var(--white) !important;
}

/* ══════════════════════════════════════════
   HEADER MENU BAR (3 menu slots)
══════════════════════════════════════════ */
.header-widget-bar {
    background: rgba(0, 0, 0, .35);
    backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.site-header.scrolled .header-widget-bar {
    background: rgba(54, 95, 59, .9);
    border-top-color: rgba(255, 255, 255, .08);
}

.site-header.scrolled .primary-nav {
    margin-top: 0;
    padding-top: 5px;
}

.header-widget-slot {
    padding: .625rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, .1);
    min-height: 40px;
    display: flex;
    align-items: center;
}

.header-widget-slot:last-child {
    border-right: none;
}

.header-slot-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    width: 100%;
}

.header-slot-menu a {
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    font-size: .8125rem;
    font-weight: 500;
    white-space: nowrap;
}

.header-slot-menu a:hover {
    color: var(--olive);
}

@media (max-width: 767px) {
    .header-widget-bar {
        display: none;
    }
}

/* ══════════════════════════════════════════
   MAP CTA BANNER (homepage, no iframe)
══════════════════════════════════════════ */
.map-cta-banner {
    background-color: var(--green);
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    padding: 3rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
}

.map-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(54, 95, 59, .85) 0%, rgba(54, 95, 59, .7) 100%);
}

.map-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.map-cta-title {
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: .75rem;
}

.map-cta-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

/* ══════════════════════════════════════════
   MAP PAGE LAYOUT — z-index & mobile fixes
══════════════════════════════════════════ */
/* NOTE: body used to get `overflow:hidden` here, which trapped the whole
   page (including the footer) inside the fixed-height map section with no
   way to scroll down to it. The map/list panes already scroll internally
   (.list-pane__scroll, .mobile-drawer__list), so the body itself should
   scroll normally to reveal the footer below the map. */

.property-map-page {
    display: flex;
    flex-direction: column;
    height: calc(100vh - var(--header-h));
    margin-top: 120px;
    overflow: hidden;
    position: relative;
}

/* body.header-solid {
    background: var(--olive);
} */

/* Ensure header always wins over Leaflet layers */
.site-header {
    z-index: 200 !important;
}

.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }

    .property-map-page {
        margin-top: calc(var(--header-h));
    }
}


/* ── Search card outer — pulls up over hero bottom ───────────────────── */
.search-card-outer {
    padding-top: 0;
    position: relative;
    z-index: 11;
}

/* search-card-wrap is already styled in main.css with margin-top: -70px */

/* ── Swiper: force slides to fill full hero height ───────────────────── */
.hero .swiper,
.hero .swiper-wrapper {
    height: 100% !important;
}

.hero .swiper-slide.hero-slide {
    height: 100% !important;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-slide .hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .15) 40%, rgba(0, 0, 0, .6) 100%);
    z-index: 0;
}


/* Swiper navigation buttons positioned inside hero */
.hero .swiper-button-prev {
    /* left: 1.5rem; */
}

.hero .swiper-button-next {
    right: 1.5rem;
}

.hero .swiper-pagination {
    bottom: 2rem;
    z-index: 5;
}

/* ── Filter Bar ── */
.map-filter-bar {
    flex-shrink: 0;
    background: var(--white);
    border-bottom: 1.5px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    z-index: 20;
    position: relative;
}

.map-filter-form {
    padding: .75rem 1.25rem;
}

.map-filter-fields {
    display: flex;
    gap: .625rem;
    align-items: center;
    flex-wrap: wrap;
}

.mff-field {
    position: relative;
    flex: 1 1 50px;
    min-width: 120px;
    display: flex;
    align-items: center;
}

.mff-location {
    gap: .5rem;
}

.mff-location svg {
    color: var(--olive);
    flex-shrink: 0;
}

.mff-input {
    width: 100%;
    padding: .5rem .75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: .875rem;
    outline: none;
    transition: border-color .2s;
    background: var(--warm-white);
}

.mff-input:focus {
    border-color: var(--green);
}

.mff-select {
    width: 100%;
    padding: .5rem .75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: .875rem;
    background: var(--warm-white);
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .625rem center;
    padding-right: 1.75rem;
}

.mff-select:focus {
    border-color: var(--green);
}

.mff-actions {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}

.mff-search {
    padding: .5rem 1rem;
    font-size: .875rem;
}

.mff-clear {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    color: var(--gray-400);
    transition: all .2s;
    text-decoration: none !important;
}

.mff-clear:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* ── Dual Pane ── */
.map-pane-wrap {
    flex: 1;
    display: flex;
    overflow: hidden;
    min-height: 0;
    z-index: 0;
}

/* ── Map Pane ── */
.map-pane {
    flex: 1;
    position: relative;
    min-width: 0;
    overflow: hidden;
    /* contain Leaflet layers, prevent z-index bleed */
}

#leaflet-map {
    width: 100%;
    height: 100%;
}

.map-controls {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: .375rem;
}

.map-ctrl-btn {
    width: 38px;
    height: 38px;
    background: var(--white);
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background .2s, border-color .2s;
}

.map-ctrl-btn:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

/* ── List Pane ── */
.list-pane {
    width: 450px;
    flex-shrink: 0;
    background: var(--warm-white);
    border-left: 1.5px solid var(--gray-100);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.list-pane__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .875rem 1rem;
    border-bottom: 1.5px solid var(--gray-100);
    background: var(--white);
    flex-shrink: 0;
}

.list-pane__count {
    font-size: .9rem;
    color: var(--gray-500);
}

.list-pane__count strong {
    color: var(--charcoal);
    font-weight: 700;
}

.list-pane__sort .mff-select {
    font-size: .8125rem;
    padding: .375rem .625rem;
}

.list-pane__scroll {
    flex: 1;
    overflow-y: auto;
    padding: .75rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
}

.list-pane__scroll::-webkit-scrollbar {
    width: 4px;
}

.list-pane__scroll::-webkit-scrollbar-track {
    background: transparent;
}

.list-pane__scroll::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 4px;
}

/* ── List Property Card ── */
.list-prop-card {
    display: flex;
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--gray-100);
    transition: border-color .2s, box-shadow .2s, transform .15s;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
    min-height: 140px;
    flex-direction: column;
    width: 50%;
    align-items: center;
    align-content: center;
}

div#list-cards {
    display: flex;
    flex-wrap: wrap;
}

.list-prop-card:hover,
.list-prop-card.is-active {
    border-color: var(--green);
    box-shadow: 0 4px 16px rgba(54, 95, 59, .15);
    transform: translateY(-1px);
}

.list-prop-card.is-active {
    box-shadow: 0 0 0 2px var(--green), 0 4px 20px rgba(54, 95, 59, .2);
}

.list-prop-card__thumb {
    width: 100%;
    flex-shrink: 0;
    position: relative;
    background: var(--gray-100);
    overflow: hidden;
}

.list-prop-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.list-prop-card__no-thumb {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
}

.list-prop-card__thumb .badge {
    position: absolute;
    top: .375rem;
    left: .375rem;
    font-size: .6rem;
    padding: .15rem .4rem;
}

/* Mini gallery slider inside a list/drawer card thumb (max 3 photos) */
.list-prop-card__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity .15s, background .15s;
    z-index: 2;
}

.list-prop-card__nav--prev {
    left: 6px;
}

.list-prop-card__nav--next {
    right: 6px;
}

.list-prop-card__nav:hover {
    background: rgba(0, 0, 0, .65);
}

@media (min-width: 1024px) {
    .list-prop-card__thumb:hover .list-prop-card__nav {
        opacity: 1;
    }
}

@media (max-width: 1023px) {
    .list-prop-card__nav {
        display: none;
    }

    .list-prop-card__thumb {
        width: 140px;
        height: 140px;
        flex-shrink: 0;
        position: relative;
        background: var(--gray-100);
        overflow: hidden;
    }

    .list-prop-card__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .list-prop-card {
        display: flex;
        background: var(--white);
        border-radius: 14px;
        overflow: hidden;
        border: 1.5px solid var(--gray-100);
        transition: border-color .2s, box-shadow .2s, transform .15s;
        text-decoration: none !important;
        color: inherit;
        cursor: pointer;
        min-height: 140px;
        flex-direction: row;
        width: 100%;
        align-items: center;
        align-content: center;
    }
}

.list-prop-card__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 2;
}

.list-prop-card__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
}

.list-prop-card__dot.is-active {
    background: #fff;
    width: 14px;
    border-radius: 3px;
}

.list-prop-card__body {
    flex: 1;
    min-width: 0;
    padding: .625rem .625rem .625rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
}

.list-prop-card__price {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: .2rem;
}

.list-prop-card__title {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.35;
    margin-bottom: .25rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.list-prop-card__location {
    display: flex;
    align-items: center;
    gap: .25rem;
    color: var(--gray-400);
    font-size: .7rem;
    margin-bottom: .375rem;
}

.list-prop-card__meta {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    font-size: .7rem;
    color: var(--gray-500);
}

.list-prop-card__meta span {
    background: var(--gray-100);
    padding: .125rem .4rem;
    border-radius: 5px;
}

/* ══════════════════════════════════════════
   LEAFLET CUSTOM STYLES
══════════════════════════════════════════ */

/* Cluster pin */
.cluster-pin {
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    border: 3px solid rgba(255, 255, 255, .9);
    box-shadow: 0 3px 12px rgba(54, 95, 59, .4);
    transition: transform .15s;
    cursor: pointer;
}

.cluster-pin--sm {
    width: 36px;
    height: 36px;
    font-size: .8rem;
}

.cluster-pin--md {
    width: 44px;
    height: 44px;
    font-size: .9rem;
    background: var(--olive);
}

.cluster-pin--lg {
    width: 54px;
    height: 54px;
    font-size: 1rem;
    background: #d97706;
}

.cluster-pin:hover {
    transform: scale(1.12);
}

/* Individual property pin */
.prop-pin {
    background: var(--white);
    border: 2px solid var(--green);
    border-radius: 20px;
    padding: .25rem .625rem;
    font-family: var(--font-display);
    font-size: .75rem;
    font-weight: 700;
    color: var(--green);
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: all .2s;
    position: relative;
    width: max-content;
}

.prop-pin::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--green);
}

.prop-pin--active,
.prop-pin--hover {
    background: var(--green);
    color: var(--white);
    transform: scale(1.1);
}

.prop-pin--active::after,
.prop-pin--hover::after {
    border-top-color: var(--green);
}

/* Popup */
.prop-popup .leaflet-popup-content-wrapper {
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    padding: 0;
    overflow: hidden;
}

.prop-popup .leaflet-popup-content {
    margin: 0;
    width: 240px !important;
}

.prop-popup .leaflet-popup-tip-container {
    display: none;
}

.popup-card {
    font-family: var(--font-body);
}

.popup-thumb {
    height: 130px;
    overflow: hidden;
    background: var(--gray-100);
}

.popup-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-body {
    padding: .875rem;
}

.popup-price {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: .25rem;
}

.popup-title {
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .25rem;
}

.popup-loc {
    font-size: .75rem;
    color: var(--gray-400);
    margin-bottom: .375rem;
}

.popup-meta {
    display: flex;
    gap: .5rem;
    font-size: .75rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
}

.popup-meta span {
    background: var(--gray-100);
    padding: .125rem .375rem;
    border-radius: 5px;
}

.popup-link {
    display: inline-block;
    background: var(--green);
    color: var(--white) !important;
    font-size: .8125rem;
    font-weight: 600;
    padding: .5rem 1rem;
    border-radius: 8px;
    text-decoration: none !important;
    transition: background .2s;
}

.popup-link:hover {
    background: var(--green-dark);
}

/* ══════════════════════════════════════════
   PROPERTY QUICK-VIEW MODAL
   Opened from sidebar/mobile-drawer cards and
   from map marker popups. Includes a button
   that links through to the real property page.
══════════════════════════════════════════ */
.property-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.property-modal.is-open {
    display: flex;
}

.property-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 19, .6);
}

.property-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-xl);
}

.property-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.property-modal__close:hover {
    background: rgba(0, 0, 0, .65);
}

.property-modal__thumb {
    height: 220px;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
}

.property-modal__thumb img,
.property-modal__thumb .list-prop-card__no-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.property-modal__thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .45);
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
}

.property-modal__thumb-nav--prev {
    left: 10px;
}

.property-modal__thumb-nav--next {
    right: 10px;
}

.property-modal__thumb-nav:hover {
    background: rgba(0, 0, 0, .65);
}

.property-modal__thumb-nav[hidden] {
    display: none;
}

.property-modal__thumb-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
}

.property-modal__thumb-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .6);
}

.property-modal__thumb-dot.is-active {
    background: #fff;
    width: 16px;
    border-radius: 3px;
}

.property-modal__amenities {
    margin: 0 0 1.25rem;
    overflow-y: auto;
}

.property-modal__amenities[hidden] {
    display: none;
}

.property-modal__body {
    padding: 0 0.8rem 0.5rem;
}

.property-modal__price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green);
    margin-bottom: .25rem;
}

.property-modal__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: .5rem;
}

.property-modal__location {
    display: flex;
    align-items: center;
    gap: .375rem;
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
}

.property-modal__location:empty {
    display: none;
    margin-bottom: 0;
}

.property-modal__meta {
    display: flex;
    gap: .625rem;
    flex-wrap: wrap;
    font-size: .8125rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

.property-modal__meta span {
    background: var(--gray-100);
    padding: .25rem .5rem;
    border-radius: 6px;
}

.property-modal__meta:empty {
    display: none;
    margin-bottom: 0;
}

.property-modal__view {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    position: sticky;
    bottom: 10px;
}

/* ══════════════════════════════════════════
   MOBILE DRAWER (Properties List)
══════════════════════════════════════════ */
.mobile-drawer-trigger {
    display: none;
}

@media (max-width: 1023px) {
    .list-pane {
        display: none;
    }

    .map-pane {
        flex: 1;
        overflow: hidden;
    }

    .map-controls {
        right: .75rem;
    }

    /* filter-bar ~50px + bottom nav 60px */
    .property-map-page {
        height: calc(100vh - var(--header-h) - 60px);
    }

    /* Leaflet must not escape its container on mobile */
    #leaflet-map {
        position: relative;
        z-index: 1;
    }

    .leaflet-control-container {
        z-index: 5;
    }

    .mobile-drawer-trigger {
        display: block;
        position: fixed;
        bottom: 60px;
        /* above bottom nav */
        left: 0;
        right: 0;
        z-index: 30;
        background: var(--white);
        border-top: 1.5px solid var(--gray-100);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, .12);
        cursor: pointer;
        user-select: none;
    }

    .drawer-trigger-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .625rem;
        padding: .875rem 1.25rem;
        position: relative;
    }

    .drawer-handle {
        position: absolute;
        top: .5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 4px;
        background: var(--gray-200);
        border-radius: 2px;
    }

    .drawer-trigger-label {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        font-weight: 600;
        color: var(--charcoal);
        margin-top: .25rem;
    }

    .drawer-chevron {
        color: var(--gray-400);
        margin-left: auto;
    }

    .mobile-prop-drawer {
        position: fixed;
        bottom: 60px;
        /* above bottom nav */
        left: 0;
        right: 0;
        z-index: 40;
        background: var(--warm-white);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, .18);
        transform: translateY(100%);
        transition: transform .35s cubic-bezier(.32, .72, 0, 1);
        max-height: 75vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .mobile-prop-drawer.is-open {
        transform: translateY(0);
    }

    .mobile-drawer__handle {
        width: 40px;
        height: 4px;
        background: var(--gray-200);
        border-radius: 2px;
        margin: .875rem auto .25rem;
        flex-shrink: 0;
    }

    .mobile-drawer__header {
        display: flex;
        align-items: center;
        gap: .75rem;
        padding: .625rem 1rem .75rem;
        border-bottom: 1.5px solid var(--gray-100);
        flex-shrink: 0;
    }

    .mobile-drawer__count {
        font-size: .9rem;
        color: var(--gray-500);
        flex: 1;
    }

    .mobile-drawer__count strong {
        color: var(--charcoal);
        font-weight: 700;
    }

    .mobile-drawer__close {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--gray-400);
        display: flex;
        align-items: center;
        padding: .375rem;
        border-radius: 8px;
    }

    .mobile-drawer__close:hover {
        background: var(--gray-100);
    }

    .mobile-drawer__list {
        flex: 1;
        overflow-y: auto;
        padding: .75rem;
        display: flex;
        flex-direction: column;
        gap: .625rem;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-drawer-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 35;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .mobile-drawer-overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ══════════════════════════════════════════
   MOBILE-ONLY ELEMENTS — hidden on desktop
   These must have display:none as their BASE
   style so they don't render in the page flow
   on desktop screens.
══════════════════════════════════════════ */
.mobile-bottom-nav,
.mob-enquiry-drawer,
.mob-enquiry-overlay,
.mobile-drawer-trigger,
.mobile-prop-drawer,
.mobile-drawer-overlay {
    display: none !important;
}

/* Only activate on mobile */
@media (max-width: 1023px) {
    .mobile-bottom-nav {
        display: flex !important;
    }

    .mob-enquiry-drawer {
        display: block !important;
    }

    .mob-enquiry-overlay {
        display: block !important;
    }

    .mobile-drawer-trigger {
        display: block !important;
    }

    .mobile-prop-drawer {
        display: flex !important;
        flex-direction: column;
    }

    .mobile-drawer-overlay {
        display: block !important;
    }
}

/* ══════════════════════════════════════════
   MOBILE BOTTOM NAV (styles)
══════════════════════════════════════════ */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-bottom-nav {
        display: flex;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: var(--white);
        border-top: 1.5px solid var(--gray-100);
        box-shadow: 0 -2px 20px rgba(0, 0, 0, .1);
        z-index: 50;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .mob-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .2rem;
        padding: .5rem .25rem;
        color: var(--gray-400);
        text-decoration: none !important;
        font-size: .6rem;
        font-weight: 600;
        transition: color .2s;
        -webkit-tap-highlight-color: transparent;
    }

    .mob-nav-item svg {
        transition: transform .2s;
    }

    .mob-nav-item.is-active {
        color: var(--green);
    }

    .mob-nav-item.is-active svg {
        transform: scale(1.1);
    }

    .mob-nav-item:hover {
        color: var(--green);
    }

    .mob-nav-item.mob-nav-whatsapp.is-active,
    .mob-nav-item.mob-nav-whatsapp:hover {
        color: #25D366;
    }

    /* Central FAB */
    .mob-nav-fab-wrap {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .mob-nav-fab {
        width: 60px;
        height: 60px;
        background: var(--green);
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        cursor: pointer;
        box-shadow: 0 4px 18px rgba(54, 95, 59, .45);
        transition: background .2s, transform .2s;
        position: absolute;
        bottom: -22px;
        -webkit-tap-highlight-color: transparent;
    }

    .mob-nav-fab:hover,
    .mob-nav-fab[aria-expanded="true"] {
        background: var(--green-dark);
        transform: scale(1.08);
    }

    /* Quick enquiry drawer */
    .mob-enquiry-drawer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 60;
        background: var(--white);
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, .2);
        transform: translateY(100%);
        transition: transform .35s cubic-bezier(.32, .72, 0, 1);
        padding-bottom: env(safe-area-inset-bottom);
        max-height: 90vh;
        overflow-y: auto;
    }

    .mob-enquiry-drawer.is-open {
        transform: translateY(0);
    }

    .mob-enquiry-drawer__inner {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .mob-enquiry-drawer__header {
        display: flex;
        align-items: center;
        margin-bottom: 1.25rem;
    }

    .mob-enquiry-drawer__header h3 {
        flex: 1;
        font-size: 1.125rem;
        font-weight: 700;
    }

    .mob-enquiry-drawer__close {
        background: var(--gray-100);
        border: none;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        color: var(--gray-500);
    }

    .mob-enquiry-form {
        display: flex;
        flex-direction: column;
        gap: .75rem;
        margin-bottom: 1rem;
    }

    .mob-enquiry-alts {
        display: flex;
        gap: .625rem;
        flex-wrap: wrap;
    }

    .mob-enquiry-alts .btn {
        flex: 1;
        font-size: .8125rem;
    }

    .mob-enquiry-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 55;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .mob-enquiry-overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    /* Push content above bottom nav */
    body:not(.has-map-page) .site-footer {
        padding-bottom: calc(3.5rem + 60px);
    }

    body:not(.has-map-page) #colophon {
        margin-bottom: 60px;
    }
}

/* ══════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════ */
.page-hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    background: var(--warm-white);
}

.page-hero--green {
    background: var(--green);
    color: var(--white);
}

.page-hero__eyebrow {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--olive);
    margin-bottom: .75rem;
}

.page-hero--green .page-hero__eyebrow {
    color: rgba(255, 255, 255, .65);
}

.page-hero__title {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: .875rem;
    color: var(--charcoal);
}

.page-hero--green .page-hero__title {
    color: var(--white);
}

.page-hero__sub {
    font-size: 1.0625rem;
    color: var(--gray-500);
    max-width: 600px;
    line-height: 1.6;
}

.page-hero--green .page-hero__sub {
    color: rgba(255, 255, 255, .72);
}

/* ══════════════════════════════════════════
   COMPANY PAGE
══════════════════════════════════════════ */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.mv-card--mission {
    border-top: 4px solid var(--green);
}

.mv-card--vision {
    border-top: 4px solid var(--olive);
}

.mv-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(54, 95, 59, .1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 1rem;
}

.mv-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .75rem;
}

.mv-card p {
    color: var(--gray-500);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.stat-card__icon {
    color: var(--olive);
    margin-bottom: .75rem;
    display: flex;
    justify-content: center;
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    margin-bottom: .375rem;
}

.stat-card__label {
    font-size: .875rem;
    color: var(--gray-500);
}

.text-center {
    text-align: center;
}

/* Timeline */
.section--timeline {
    position: relative;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
    transform: translateX(-50%);
}

@media (max-width: 767px) {
    .timeline-line {
        left: 24px;
    }

    .timeline-item--left,
    .timeline-item--right {
        padding-left: 56px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-dot {
        left: 0 !important;
        right: auto !important;
        transform: none !important;
    }
}

.timeline-item {
    display: flex;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-item--left {
    justify-content: flex-end;
    padding-right: calc(50% + 2rem);
}

.timeline-item--right {
    justify-content: flex-start;
    padding-left: calc(50% + 2rem);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 1rem;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: .6875rem;
    font-weight: 700;
    padding: .25rem .5rem;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 1;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(54, 95, 59, .3);
}

.timeline-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    max-width: 320px;
}

.timeline-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .375rem;
}

.timeline-card p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.team-card {
    text-align: center;
}

.team-card__photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: .875rem;
}

.team-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card__name {
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.team-card__role {
    font-size: .8125rem;
    color: var(--olive);
    font-weight: 600;
}

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-block: 2.5rem;
}

.service-full-card {
    display: flex;
    gap: 2rem;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    align-items: flex-start;
    transition: box-shadow .2s, border-color .2s;
}

@media (max-width: 767px) {
    .service-full-card {
        flex-direction: column;
        gap: 1rem;
    }
}

.service-full-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(54, 95, 59, .2);
}

.service-full-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(54, 95, 59, .1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.service-full-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .625rem;
}

.service-full-card__desc {
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-full-card__features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.25rem;
    list-style: none;
    padding: 0;
}

.service-full-card__features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--charcoal);
}

.service-full-card__features li svg {
    color: var(--olive);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   VALUATIONS PAGE
══════════════════════════════════════════ */
.valuation-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .valuation-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.valuation-step {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.valuation-step__num {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(54, 95, 59, .06);
    line-height: 1;
}

.valuation-step__icon {
    width: 56px;
    height: 56px;
    background: rgba(54, 95, 59, .1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin: 0 auto 1rem;
}

.valuation-step__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.valuation-step__desc {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* CTA Banner */
.section--cta-banner {
    padding-block: 0 2rem;
}

.cta-banner {
    background: var(--green);
    border-radius: var(--radius-card);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-banner h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .375rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, .72);
    font-size: .9375rem;
}

.cta-banner__actions {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   LEGAL PAGE
══════════════════════════════════════════ */
.legal-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 2.5rem;
}

@media (min-width: 768px) {
    .legal-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .legal-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.legal-card {
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
    transition: border-color .2s, box-shadow .2s;
}

.legal-card:hover {
    border-color: rgba(54, 95, 59, .25);
    box-shadow: var(--shadow-md);
}

.legal-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(54, 95, 59, .1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 1rem;
}

.legal-card__title {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: .625rem;
}

.legal-card__desc {
    color: var(--gray-500);
    font-size: .9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.legal-card__items {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    list-style: none;
    padding: 0;
}

.legal-card__items li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .875rem;
    color: var(--charcoal);
}

.legal-card__items li svg {
    color: var(--olive);
    flex-shrink: 0;
}

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-section-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 599px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

.form-field--full {
    grid-column: span 2;
}

@media (max-width: 599px) {
    .form-field--full {
        grid-column: span 1;
    }
}

.form-success {
    display: flex;
    align-items: center;
    gap: .625rem;
    background: #dcfce7;
    color: #166534;
    border-radius: 10px;
    padding: .875rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    background: var(--white);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(54, 95, 59, .1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.contact-info-icon--wa {
    background: rgba(37, 211, 102, .1);
    color: #25D366;
}

.contact-info-icon--fb {
    background: rgba(24, 119, 242, .1);
    color: #1877F2;
}

.contact-info-item strong {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: .2rem;
}

.contact-info-item p,
.contact-info-item a {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.5;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--green);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.office-hours {
    background: var(--white);
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--gray-100);
}

.office-hours h3 {
    font-size: .9375rem;
    font-weight: 700;
    margin-bottom: .875rem;
}

.office-hours ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.office-hours li {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    color: var(--gray-500);
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--gray-100);
}

.office-hours li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* ══════════════════════════════════════════
   MAP FILTER BAR — desktop sticky bar / mobile floating-button drawer
══════════════════════════════════════════ */
.map-filter-bar__mobile-header {
    display: none;
}

/* Hidden on desktop; only shown on mobile inside the media query below */
.mobile-filter-trigger,
.mobile-filter-overlay {
    display: none;
}

@media (max-width: 1023px) {
    .map-filter-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 45;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, .18);
        transform: translateY(110%);
        transition: transform .35s cubic-bezier(.32, .72, 0, 1);
    }

    .map-filter-bar.is-open {
        transform: translateY(0);
    }

    .map-filter-bar__mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem .5rem;
    }

    .map-filter-bar__mobile-header h2 {
        font-size: 1.0625rem;
        font-weight: 700;
        margin: 0;
    }

    .map-filter-bar__close {
        background: var(--gray-100);
        border: 0;
        border-radius: 50%;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gray-500);
        cursor: pointer;
    }

    .map-filter-bar__close:hover {
        background: var(--gray-200);
    }

    .map-filter-fields {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
        overflow-x: visible;
    }

    .mff-field {
        min-width: 0;
        width: 100%;
    }

    .mff-actions {
        flex-direction: column-reverse;
    }

    .mff-search {
        width: 100%;
        justify-content: center;
    }

    .mff-search span {
        display: inline;
    }

    .mff-clear {
        width: 100%;
        height: auto;
        padding: .625rem;
        gap: .5rem;
        flex-direction: row;
        justify-content: center;
    }

    .mff-clear::after {
        content: 'Clear Filters';
        font-size: .8125rem;
    }

    .map-filter-form {
        padding: .25rem 1.25rem 6.5rem;
    }

    /* Floating "Filters" button */
    .mobile-filter-trigger {
        display: flex;
        align-items: center;
        gap: .5rem;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        bottom: 126px;
        /* above bottom nav */
        z-index: 32;
        background: var(--green);
        color: var(--white);
        border: 0;
        border-radius: 999px;
        padding: .7rem 1.25rem;
        font-size: .875rem;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(54, 95, 59, .35);
        cursor: pointer;
    }

    .mobile-filter-trigger:hover {
        background: var(--green-dark);
    }

    .mobile-filter-trigger__count {
        background: var(--olive);
        color: var(--white);
        border-radius: 999px;
        min-width: 18px;
        height: 18px;
        font-size: .6875rem;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 .3rem;
    }

    .mobile-filter-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .4);
        z-index: 44;
        opacity: 0;
        pointer-events: none;
        transition: opacity .3s;
    }

    .mobile-filter-overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ══════════════════════════════════════════
   LIST EMPTY STATE
══════════════════════════════════════════ */
.list-empty {
    text-align: center;
    color: var(--gray-400);
    padding: 2rem 1rem;
    font-size: .9rem;
}


@media (max-width: 767px) {


    .swiper-button-prev {
        left: unset !important;
        right: 30px !important;
        bottom: 140px !important;
        top: unset !important;
    }

    .swiper-button-next {
        left: unset !important;
        right: 30px !important;
        bottom: 190px !important;
        top: unset !important;
    }
}