/* 💥 Selector más específico para las flechas Font Awesome (FA) 💥 */
a.carousel-control .fa-chevron-left,
a.carousel-control .fa-chevron-right {
    /* Mantenemos el tamaño y forzamos el adelgazamiento */
    font-size: 2em !important; 
    
    transform: scaleX(0.5) !important; /* Agregamos !important */
    -webkit-transform: scaleX(0.5) !important; /* Agregamos !important */
}

/* Selector más específico para los Glyphicons (Bootstrap) */
a.carousel-control .glyphicon-chevron-left,
a.carousel-control .glyphicon-chevron-right {
    font-size: 2em !important; 
    
    transform: scaleX(0.5) !important;
    -webkit-transform: scaleX(0.5) !important;
}