.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
}

.lang-btn {
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 18px;
    font-size: 1rem;
    cursor: pointer;
    opacity: 1;
    transition: background 0.2s, color 0.2s, opacity 0.2s;
    font-weight: 600;
}

.lang-btn.active {
    background: linear-gradient(90deg, #a03028 0%, #1c3be2 100%);
    color: #fff;
    opacity: 1;
    pointer-events: none;
}

.lang-btn:not(.active):hover {
    background: #333;
    color: #fff;
    opacity: 1;
}

@media (max-width: 991px) {
    .language-selector {
        margin: 15px 0;
        justify-content: center;
    }
}
