.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.language-switcher:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 175, 97, 0.45);
    background: rgba(255, 175, 97, 0.18);
}

.language-switcher:focus-visible {
    outline: 2px solid rgba(255, 175, 97, 0.72);
    outline-offset: 2px;
}

html[lang="ru"] [lang="en"],
html[lang="en"] [lang="ru"] {
    display: none !important;
}

@media (max-width: 560px) {
    .language-switcher {
        min-width: 40px;
        min-height: 40px;
        padding: 0 10px;
        font-size: 13px;
    }
}
