/* Two-product collection: preserve the existing card language while balancing the grid. */
html body #products .products-items {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  width: 100% !important;
  max-width: 1040px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body #products .product-item.product-2,
html body #products .product-item.product-3 {
  width: 100% !important;
  grid-column: auto !important;
  justify-self: stretch !important;
}

@media screen and (max-width: 767px) {
  html body #products .products-items {
    grid-template-columns: minmax(0, 1fr) !important;
    max-width: 430px !important;
  }
}
