To make WooCommerce product images fill the container width without cropping, use: Official Website
```css
.woocommerce ul.products li.product img {
width: 100%;
height: auto;
object-fit: contain;
}
```
Ensures full-width display while preserving aspect ratio.