@media (max-width: 767px) {
    .header-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0;
        min-height: 56px;
        height: auto;
        padding: 0 16px;
    }

    .header-col-left {
        order: 1;
    }

    .header-col-center {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid #eee;
        background: #fff;
    }

    .header-col-right {
        order: 2;
        margin-left: auto;
    }

    .site-header.menu-open .header-col-center {
        display: flex;
    }

    .site-header.menu-open .header-col-right {
        width: 100%;
        order: 4;
        justify-content: flex-start;
        padding: 12px 0 0;
        border-top: 1px solid #eee;
    }

    .site-header.menu-open .header-col-right .btn-header {
        display: inline-flex;
    }

    .header-col-right .btn-header {
        display: none;
    }

    .header-logo img {
        width: auto;
        height: 40px;
    }

    .header-nav {
        flex-direction: column;
        gap: 0;
    }

    .header-nav .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }

    .header-nav .nav-link:last-child {
        border-bottom: none;
    }

    .header-mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        margin: 0 -8px;
    }
}
