@media (max-width: 767px) {

        /*
            Lokasi adalah primary tab ke-4.
            Index mobile: Beranda 0, UMKM 1, Berita 2, Lokasi 3.
        */
        #mobile-bottom-nav {
            --active-index: 3;
        }

        /*
            Google Maps / iframe jangan menangkap gesture yang
            membuat bottom navigation terasa tertarik ke luar layar.
            Touch tetap normal di dalam peta, tetapi layout fixed
            navbar tidak ikut berubah.
        */
        .hero-map-stack,
        .map-stage,
        .map-stage-map {
            transform-style: flat;
            backface-visibility: hidden;
        }

        /*
            Beri ruang pada CTA terakhir agar tidak tertutup bottom nav.
        */
        .location-cta-section {
            padding-bottom:
                calc(
                    104px
                    +
                    env(safe-area-inset-bottom)
                ) !important;
        }

    }
