Free Shipping & Gift Wrapping on Qualifying Items

botiga

.woocommerce ul.products li.product {
height: 520px; /* adjust to fit your theme */
display: flex;
flex-direction: column;
justify-content: space-between;
}

/* Make product image wrapper a perfect square */
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
width: 100%;
aspect-ratio: 1 / 1 !important; /* Forces a square */
display: block;
overflow: hidden; /* Prevent overflow */
}

/* Make images fill the new square perfectly */
.woocommerce ul.products li.product a img,
.woocommerce ul.products li.product img {
width: 100% !important;
height: 100% !important;
object-fit: cover !important; /* Perfect center crop */
object-position: center center !important;
display: block;
}

/* Optional: prevents theme from messing with height */
.woocommerce ul.products li.product a img {
max-height: none !important;
}