.lang-switcher {
    position: fixed;
    top: 14px;
    right: 205px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 18px rgba(15,23,42,0.14);
    backdrop-filter: blur(12px);
}

.lang-switcher button {
    border: none;
    background: transparent;
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    padding: 7px 11px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.lang-switcher button.active {
    background: #006633;
    color: #fff;
}

@media (max-width: 768px) {
    .lang-switcher {
        top: 6px;
        right: 54px;
    }
}