/*
Theme Name: Arena City Studio Child
Description: Child theme for the Arena City Studio parent theme.
Author: CW Web Creations
Template: Arena_City_Studio_Theme_v2.0.6
Version: 1.0.5
Requires at least: 6.5
Requires PHP: 7.4
Text Domain: arena-city-studio-child
*/

/*
 * WooCommerce adds clearfix pseudo-elements to ul.products.
 * Because the parent theme uses CSS Grid, those pseudo-elements become
 * invisible grid items and push the first real product into column two.
 */
.woocommerce ul.products::before,
.woocommerce ul.products::after,
ul.products::before,
ul.products::after {
  content: none !important;
  display: none !important;
}

/* Keep every product aligned from the left with consistent columns. */
.woocommerce ul.products,
ul.products {
  align-items: stretch;
  justify-content: start;
}

.woocommerce ul.products li.product,
ul.products li.product {
  min-width: 0;
}
