/* V24.1 — force four product cards on desktop */
@media (min-width: 900px) {
  .catalog-section .content-wrap,
  .products-section .content-wrap,
  .product-section .content-wrap,
  main .content-wrap {
    width: min(1560px, calc(100% - 48px)) !important;
    max-width: 1560px !important;
  }

  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 24px 16px !important;
    width: 100% !important;
  }

  .product-grid > * {
    min-width: 0 !important;
    width: auto !important;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px 14px !important;
  }
}

@media (max-width: 699px) {
  .product-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 10px !important;
  }
}
