.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
}

.site-header__inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.site-header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    color: #111111;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
}

.site-header__nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.nav-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    color: #222222;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: #fff1f1;
    color: #c40000;
}

.language-switcher {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid #e4e4e4;
    border-radius: 10px;
    color: #333333;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: #c40000;
    border-color: #c40000;
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-header__nav-wrap {
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }

    body.mobile-menu-open .site-header__nav-wrap {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu a {
        width: 100%;
        justify-content: flex-start;
    }

    .language-switcher {
        justify-content: flex-start;
    }
}