﻿.mobile-toggle {
    display: none;
}

.mobile-actions {
    display: none;
}

@media(max-width:960px) {

    .site-header {
        position: relative;
        padding: 0 18px;
    }

    .Logo {
        width: 170px;
    }

    .header-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
        width: 48px;
        height: 48px;
        background: #fff;
        border: 1px solid #dbe6f5;
        border-radius: 12px;
        cursor: pointer;
        padding: 0;
        position: relative;
        transition: all .2s ease;
    }

        .mobile-toggle:hover {
            background: #f4f8ff;
            border-color: #075dd8;
        }

        .mobile-toggle span {
            position: absolute;
            left: 12px;
            right: 12px;
            height: 2px;
            background: #075dd8;
            border-radius: 2px;
        }

            .mobile-toggle span:nth-child(1) {
                top: 15px;
            }

            .mobile-toggle span:nth-child(2) {
                top: 23px;
            }

            .mobile-toggle span:nth-child(3) {
                top: 31px;
            }

    #mobileNav {
        display: none !important;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #dbe6f5;
        box-shadow: 0 16px 40px rgba(8,36,81,.12);
        z-index: 99999;
    }

        #mobileNav.open {
            display: flex !important;
        }

        #mobileNav a {
            display: block;
            padding: 16px 24px;
            border-bottom: 1px solid #eef4fb;
            font-weight: 700;
        }

            #mobileNav a:hover {
                background: #f7fbff;
            }

    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

        .mobile-actions a:first-child {
            text-align: center;
            font-weight: 700;
        }

        .mobile-actions .btn {
            width: 100%;
            height: 48px;
        }
}

@media(max-width:620px) {

    .Logo {
        width: 150px;
    }

    .mobile-toggle {
        width: 44px;
        height: 44px;
    }

        .mobile-toggle span:nth-child(1) {
            top: 13px;
        }

        .mobile-toggle span:nth-child(2) {
            top: 21px;
        }

        .mobile-toggle span:nth-child(3) {
            top: 29px;
        }
}
