/* Catalog grid fix v1: desktop/tablet listings must stay four columns. */
@media (min-width: 841px){
  .storefront .catalog-results .product-grid{
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:30px 16px!important;
  }
}

@media (max-width: 840px){
  .storefront .catalog-results .product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
}
