/* Language switcher — shared across all pages */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    background: var(--bg-light, #f3f4f6);
    border-radius: 10px;
    border: 1px solid rgba(16, 42, 67, 0.08);
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--text-dark, #1a1a1a);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    line-height: 1;
}

.lang-btn:hover {
    background: rgba(16, 42, 67, 0.06);
}

.lang-btn.active {
    background: var(--white, #fff);
    color: var(--primary-dark, #102A43);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-code {
    letter-spacing: 0.02em;
}

.nav-content .lang-switcher {
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .navbar .nav-links .lang-switcher {
        margin-top: 8px;
        justify-content: center;
        width: 100%;
    }
}
