/* Homepage merchandising polish: use the available row width without stretching cards excessively. */
@media (min-width: 901px) {
  .v7-merchandise-root .v7-merch-section .v7-product-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
  }
  .v7-merchandise-root .v7-merch-section .v7-product-card {
    width: auto;
    min-width: 0;
    max-width: none;
  }
}
