
/* ================================
   FULL WIDTH PRODUCTS - PRESTASHOP 1.7 CLASSIC
   Home + Categories + Mobile First
   ================================ */

/* Full width container */
@media (min-width: 1200px) {
  .container {
    max-width: 100% !important;
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Remove gutters */
#products .row,
.featured-products .row {
  margin-left: 0;
  margin-right: 0;
}

#products .col,
.featured-products .col {
  padding-left: 5px;
  padding-right: 5px;
}

/* Product card full width */
.product-miniature {
  margin: 0;
}

/* Thumbnail full width */
.product-thumbnail {
  width: 100%;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

/* Image fill */
.product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* Mobile tweaks */
@media (max-width: 767px) {
  #products .col,
  .featured-products .col {
    padding-left: 0;
    padding-right: 0;
  }
}

.product-miniature .product-thumbnail {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.product-miniature .product-thumbnail img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

