/* Reduce 'Choisir une option' dropdown, option, and labels size on mobile devices */
@media screen and (max-width: 767px) {
    /* Style the select dropdown */
    .variations select,
    .variations select option {
        font-size: 13px !important;
    }
    
    /* Style variation labels */
    .variations td.label label,
    .variations label {
        font-size: 13px !important;
    }
}
