/* =====================================================
   LAND BAZAAR MOBILE NAVBAR
   100% MOBILE ONLY — DESKTOP HARD BLOCKED
===================================================== */

/* 🔴 Desktop kill switch (absolute) */
@media screen and (min-width: 769px) {
    .lb-navbar {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
    }
}

/* ✅ Mobile only */
@media screen and (max-width: 768px) {

    .lb-navbar {
        position: fixed;
        bottom: env(safe-area-inset-bottom, 12px);
        left: 50%;
        transform: translateX(-50%);
        background: #0c0c0c;
        width: 95%;
        max-width: 420px;
        padding: 10px 14px;
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 6px 25px rgba(0,0,0,0.35);
        z-index: 9999;
    }

    .lb-item {
        flex: 1;
        text-align: center;
        color: #b3b3b3;
        text-decoration: none;
        font-size: 11px;
        transition: color 0.25s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .lb-item i {
        display: block;
        font-size: 18px;
        margin-bottom: 4px;
    }

    .lb-item:hover,
    .lb-item.active {
        color: #ffffff;
    }

    .lb-fav {
        color: #ffffff;
        position: relative;
    }

    .lb-fav::after {
        content: "NEW";
        position: absolute;
        top: -8px;
        right: 18px
