.mobile-map-shell {
    position: relative;
    width: 100%;
    height: 100%;
}

.mapbox-mobile-map {
    width: 100%;
    height: 100%;
}

.map-mobile-open-btn,
.map-mobile-close-btn {
    display: none;
}

@media only screen and (max-width: 767px) {
    .map-mobile-open-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%);
        z-index: 20;
        padding: 10px 18px;
        border-radius: 999px;
        border: 0;
        background: #2F6E4F;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    }

    .mobile-map-shell.is-map-fullscreen {
        position: fixed;
        inset: 0;
        z-index: 99999;
        background: #fff;
        height: 100dvh;
        width: 100vw;
    }

    .mobile-map-shell.is-map-fullscreen .mapbox-mobile-map {
        height: 100dvh !important;
        min-height: 100dvh !important;
    }

    .mobile-map-shell.is-map-fullscreen .map-mobile-open-btn {
        display: none;
    }

    .mobile-map-shell.is-map-fullscreen .map-mobile-close-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 30;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        border: 0;
        background: #fff;
        color: #111;
        font-size: 22px;
        font-weight: 700;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    body.map-fullscreen-open {
        overflow: hidden;
    }
}