
/* Fix native <select> dropdown option colors (browser UI) */
select, option {
  color: #111 !important;
  background-color: #fff !important;
}

/* Specifically WooCommerce sorting dropdown */
.woocommerce-ordering select,
select.orderby {
  color: #fff !important;              /* keep closed state white on dark */
  background-color: transparent !important;
}

/* When dropdown opens, options should remain readable */
.woocommerce-ordering select option,
select.orderby option {
  color: #111 !important;
  background-color: #fff !important;
}
