.language-switcher__button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    cursor: pointer;
    color: #495057;
    transition: border-color .2s, background .2s;
}
.language-switcher__button:hover {
    border-color: #0ca678;
    color: #0ca678;
    background: #f0fdf9;
}
.language-switcher__menu {
    min-width: 130px;
    font-size: 13px;
}
.language-switcher__option {
    width: 100%;
    text-align: left;
    padding: 8px 16px;
}
.language-switcher__option.active,
.language-switcher__option:active {
    background: #e6f7f1;
    color: #0ca678;
    font-weight: 600;
}
