/* ==============================================
   LANG SWITCHER
   Bouton FR | EN en haut à droite.
=============================================== */

.lang-switcher {
    position: fixed;
    top: 28px;
    right: clamp(32px, 8vw, 120px);
    display: flex;
    align-items: center;
    gap: 2px;
    z-index: 100;
    opacity: 0;
    animation: fadeUp 0.5s var(--ease-snap) 0.05s forwards;
}

.lang-btn {
    background: none;
    border: none;
    padding: 4px 6px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.lang-btn:hover {
    color: var(--text-dark);
}

.lang-btn.is-active {
    color: var(--primary-blue);
}

/* Séparateur | entre les deux boutons */
.lang-sep {
    font-size: 10px;
    -webkit-user-select: none;
    user-select: none;
    /* Rend la bordure visible même en dark */
    color: var(--text-muted);
    opacity: 0.4;
}
