.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #e9e2d8);
    border-radius: 999px;
    padding: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.lang-switcher button {
    border: none;
    background: transparent;
    color: var(--text-muted, #8c857c);
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.2s ease;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.lang-switcher button:hover {
    color: var(--text, #1a1916);
}

.lang-switcher button.active {
    background: var(--gold, #c4a35a);
    color: #141414;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

@media (max-width: 768px) {
    .lang-switcher--desktop {
        display: none;
    }

    .lang-switcher--mobile {
        margin-top: 1rem;
    }
}
