@media (max-width: 800px) {

    .header-btn {
        display: none;
    }

    .header-btn.active-page-class {
        display: flex;
        justify-content: center;
    }

    .header-list {
        position: relative;
    }

    .header-hamburger-expand {
        display: grid;
        position: absolute;
        left: 10px;
        width: 100%;
        height: 80px;
        align-items: center;
    }

    .header-hamburger-img {
        width: 35px;
        cursor: pointer;
        padding-left: 10px;
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    .header-hamburger-img:hover {
        transform: scale(1.08);
    }

    .header-hamburger-img:active {
        transform: scale(0.92);
        filter: brightness(0.8);
    }


    .left-popup {
        display: none;
        position: absolute;
        left: 0;
        z-index: 100;
        width: 250px;

        padding-top: 30px;
        padding-bottom: 30px;

        background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, #ffffff 100%);

        box-shadow:
            0 8px 20px rgba(0,0,0,0.25),
            10px 0 25px rgba(0,0,0,0.18);

        border-radius: 12px 12px 12px 12px;

        animation: slideInLeft 0.28s ease forwards;
    }

    @keyframes slideInLeft {
        from { transform: translateX(-40px); opacity: 0; }
        to   { transform: translateX(0); opacity: 1; }
    }

    .left-popup-box {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        list-style: none;
        padding-left: 8px;
        padding-right: 8px;
    }


    /* ================================
       MENU BUTTONS
    ===================================*/
    .header-hamb-btn a {
        display: flex;
        width: 95%;
        height: 50px;
        align-items: center;
        margin-bottom: 20px;
        padding-left: 8px;

        column-gap: 10px;
        font-weight: 500;

        border-radius: 10px;

        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(3px);

        transition:
            background-color 0.25s ease,
            transform 0.2s ease,
            box-shadow 0.25s ease,
            filter 0.25s ease;
    }

    .header-hamb-btn a:not(:last-child) {
        border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .header-hamb-btn a:hover {
        transform: translateX(6px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.18);
        filter: brightness(1.03);
    }

    .active-page-popup-class {
        transform: translateX(6px);
        box-shadow: 0 6px 12px rgba(0,0,0,0.18);
    }


    /* ================================
       ICONS INSIDE POPUP
    ===================================*/
    .header-hamburger-img-all {
        width: 50px;
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    .header-hamburger-img-all:hover {
        transform: scale(1.12);
        filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18));
    }

    .header-img-all-box {
        display: flex;
        width: 70px;
        justify-content: center;
    }

    /* Maintain your icon sizes exactly */
    .header-hamburger-img-home { width: 50px; }
    .header-hamburger-img-values { width: 41px; margin-left: 10px; }
    .header-hamburger-img-calculator { width: 60px; margin-left: 5px; }
    .header-hamburger-img-giveaways { width: 35px; margin-left: 10px; }
    .header-hamburger-img-more { width: 40px; margin-left: 10px; }
    .header-hamburger-img-trade { width: 47px; margin-left: 10px; }

}


.header-btn-fire-phone {
    position: absolute;
    font-size: 12px;
    left: 0;
    top: 0;
}

