/* Сетка карточек товаров на витрине */

.shopfront-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .shopfront-products-grid {
    gap: 16px;
  }
}
/* Жёсткий фикс: картинки товаров не растягивают родительский блок */
.shopfront-products-grid img {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}
