 
@media(max-width:820px){
 .menu-small-screen, .language-switcher,
    .open_hamburger {
        display: none !important;
    }

    /* make room for bottom bar */
    body {
        padding-bottom: 92px;
    }

    #page-footer {
        padding-bottom: 110px !important;
    }

    #infinite-scroll-trigger {
        margin-bottom: 150px !important;
    }

    /* =========================
       BOTTOM NAV
       ========================= */
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 82px;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        align-items: stretch;
        background: rgba(255, 255, 255, 0.98);
        border-top: 1px solid #d9d9d9;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
        z-index: 40000;
        padding-bottom: env(safe-area-inset-bottom);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .mobile-bottom-nav__item {
        appearance: none;
        -webkit-appearance: none;
        border: 0;
        outline: none;
        background: transparent;
        color: #4a4a4a;
        text-decoration: none;
        font-family: "Raleway", Arial, sans-serif;
        letter-spacing: 0.5px;   /* much less than your global 6px */
        font-size: 12px;
        line-height: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 82px;
        padding: 8px 2px 10px 2px;
        cursor: pointer;
        transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
        position: relative;
        text-align: center;
    }

    .mobile-bottom-nav__item i {
        font-size: 18px;
        line-height: 1;
        margin: 0;
    }

    .mobile-bottom-nav__item span {
        font-size: 12px;
        line-height: 1.15;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        display: block;
        max-width: 100%;
        white-space: nowrap;
    }

    .mobile-bottom-nav__item:hover,
    .mobile-bottom-nav__item:focus,
    .mobile-bottom-nav__item:active {
        background: #f5f5f5;
        color: #000;
        text-decoration: none;
    }

    .mobile-bottom-nav__item:active {
        transform: scale(0.98);
    }

    /* optional active state if you later add classes */
    .mobile-bottom-nav__item.is-active {
        color: #000;
    }

    .mobile-bottom-nav__item.is-active::after {
        content: "";
        position: absolute;
        bottom: 6px;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 2px;
        background: #000;
        border-radius: 999px;
    }

    /* =========================
       LANGUAGE DROPUP
       ========================= */
    .mobile-language-dropup {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 88px;
        z-index: 40010;
        pointer-events: none;
    }

    .mobile-language-dropup__panel {
        width: 180px;
        margin-left: auto;
        margin-right: 8px; /* align more to right side near language icon */
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid #dddddd;
        border-radius: 16px;
        box-shadow: 0 -6px 22px rgba(0, 0, 0, 0.12);
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
    }

    .mobile-language-dropup.active .mobile-language-dropup__panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-language-form {
        margin: 0;
        width: 100%;
    }

    .mobile-language-option {
        width: 100%;
        border: 1px solid #e5e5e5;
        background: #fff;
        color: #333;
        border-radius: 12px;
        padding: 10px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: "Raleway", Arial, sans-serif;
        font-size: 12px;
        line-height: 1.2;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.2s ease;
        text-align: left;
    }

    .mobile-language-option:hover,
    .mobile-language-option.active {
        background: #f7f7f7;
        border-color: #cfcfcf;
        color: #000;
    }

    .mobile-language-option img {
        width: 20px;
        height: auto;
        flex-shrink: 0;
        margin: 0;
    }

    .mobile-language-option span {
        letter-spacing: 0.4px;
        text-transform: none;
        font-size: 12px;
        line-height: 1.2;
    }
}