.language-switcher {
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 900;
    display: flex;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(231, 225, 216, .95);
    box-shadow: 0 10px 28px rgba(0,0,0,.10);
    backdrop-filter: blur(8px);
}

.language-switcher button {
    min-width: 42px;
    min-height: 32px;
    padding: 0 10px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #161719;
    font: 900 12px/1 Arial, sans-serif;
    cursor: pointer;
}

.language-switcher button.is-active {
    background: #006b68;
    color: #fff;
}

.language-switcher button:hover {
    background: #e8f3f1;
    color: #006b68;
}

.language-switcher button.is-active:hover {
    background: #006b68;
    color: #fff;
}

@media (max-width: 720px) {
    .language-switcher {
        top: auto;
        right: 10px;
        bottom: 10px;
    }

    .language-switcher button {
        min-width: 38px;
        min-height: 30px;
        padding: 0 8px;
    }
}
