/**
 * Styles pour le sélecteur de langue AMCC personnalisé
 */

.amcc-language-switcher {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.amcc-lang-item {
    color: #FCF7E6 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    padding: 5px;
    font-family: "Almarai", Sans-serif;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 20px;
    letter-spacing: 1px;
}

a.amcc-lang-item {
    color: #FCF7E6 !important;
}

.amcc-lang-item:hover {
    color: #EF7E10 !important;
    text-decoration: none !important;
}

.amcc-lang-item.active {
    color: #EF7E10 !important;
    pointer-events: none; /* Empêche le clic sur la langue active */
}

/* Pour les écrans mobiles */
@media (max-width: 768px) {
    .amcc-language-switcher {
        justify-content: center;
    }

    .amcc-lang-item {
        font-size: 14px;
    }
}
