/* ===================================================== */
/* 🌐 LANG SWITCHER – SOGENTIS PREMIUM                   */
/* ===================================================== */

.lang-switcher { display: flex; }

.lang-box {
    display: flex;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.lang-btn {
    border: none;
    padding: 6px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.25s ease;
}

.lang-btn.active {
    background: #0d6efd;
    color: #fff;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
}

.light-mode .lang-box {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.08);
}

.light-mode .lang-btn {
    color: #222;
}

.light-mode .lang-btn.active {
    background: #005bbb;
    color: #fff;
}





/* .language-selector .btn.active {
    background: #0d6efd;
    color: white !important;
    border-color: #0d6efd;
}

.language-selector svg {
    vertical-align: middle;
    transform: translateY(-1px);
} */
