/* Force WooCommerce product images to have the same height */
.woocommerce ul.products li.product img {
    height: 300px;  /* Adjust to your desired height */
    object-fit: cover; /* Ensures images are cropped proportionally */
    width: 100%;
}