0
Your Cart

botiga

/* Make product images square (1:1 ratio) */
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
display: block;
position: relative;
width: 100%;
padding-top: 100%; /* 1:1 Aspect Ratio */
overflow: hidden;
}

/* Make image fit inside the square */
.woocommerce ul.products li.product img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100% !important;
object-fit: cover; /* Change to contain if you don’t want cropping */
}

/* FIX: Proper 2 products per row on mobile */
@media (max-width: 768px) {

.woocommerce ul.products {
display: grid !important;
grid-template-columns: repeat(2, 1fr) !important;
gap: 12px !important;
}

.woocommerce ul.products li.product {
width: 100% !important;
max-width: 100% !important;
margin: 0 !important;
}

/* Fix image sizing */
.woocommerce ul.products li.product img {
width: 100% !important;
height: auto !important;
}

}