@charset "UTF-8";
/* CSS Document */

/* ---------- Styles par défaut pour toutes les options ---------- */
.select2-results__option {
    font-weight: normal !important;
    color: inherit !important;       /* reprend la couleur par défaut du thème */
    background: inherit !important;  /* fond par défaut */
    padding-left: 0 !important;
}

/* ---------- Parents (niveau 1) ---------- */
.select2-results__option.parent-category {
    font-weight: bold !important;
    color: inherit !important;       /* couleur gris d’origine du thème */
    background: inherit !important;  
    padding-left: 5px !important;    /* léger retrait */
}

/* ---------- Enfants (niveau 2) ---------- */
.select2-results__option.child-category {
    font-weight: normal !important;
    color: inherit !important;       /* reprend couleur par défaut thème */
    background: inherit !important;
    padding-left: 12px !important;   /* indentation plus légère */
}

/* ---------- Couleur au survol desktop ---------- */
.select2-results__option.parent-category:hover,
.select2-results__option.child-category:hover {
    color: #ff431e !important;       /* orange au hover */
    background: #f6f6f6 !important;  
}

/* ---------- Interaction mobile (touch / active) ---------- */
.select2-results__option.parent-category:active,
.select2-results__option.child-category:active {
    color: #ff431e !important;
    background: #f6f6f6 !important;
}
