/* Restore only the catalog's native price/brand controls. Rental price
   visibility is decided in the Blade view, before these elements exist. */
.filter .catalog-filter-controls > .catalog-filter-widget {
    display: block !important;
}

/* Keep both primary controls reachable without horizontal scrolling on
   narrow phones; longer option labels remain available in the native picker. */
@media (max-width: 375px) {
    .filter .catalog-filter-controls > .catalog-filter-widget {
        width: calc((100vw - 32px) / 2) !important;
        min-width: 0;
        max-width: calc((100vw - 32px) / 2);
    }
}

@media (max-width: 767px) {
    .filter .catalog-filter-controls > .catalog-filter-widget select.form-control-sm {
        height: 44px !important;
        font-size: 16px !important;
    }
}
