 /* Bouton de langue flottant */
.language-selector {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #1d1d1d;
    border-radius: 50px;
    padding: 20px 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    user-select: none;
    transition: all 0.3s ease;
    border: #323232 solid 1px;
}

.language-options {
    display: flex;
    align-items: center;
    gap: 0;
    height: 20px;
}

.language-option {
    color: #3f3f3f;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.language-option.active {
    color: #ffffff;
    font-weight: 500;
}

.language-option:hover:not(.active) {
    color: #ffffff;
}

.separator {
    color: #3f3f3f;
    font-size: 16px;
    margin: 0 14px;
    user-select: none;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1000px) {
    .language-selector {
        bottom: 30px;
        left: 30px;
        padding: 15px 20px;
    }

    .language-option {
        font-size: 13px;
    }

    .separator {
        font-size: 13px;
        margin: 0 10px;
    }
}