/* Homepage merchandising polish: keep desktop product cards readable when a section has only a few items. */
@media (min-width: 901px) {
  .v7-merchandise-root .v7-merch-section .v7-product-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 320px));
    justify-content: start;
    gap: 12px;
  }
  .v7-merchandise-root .v7-merch-section .v7-product-card {
    width: 100%;
    min-width: 0;
    max-width: 320px;
  }
}
