@media (min-width: 640px) {
  .products-grid {
    gap: 14px;
  }

  .product-card__image-wrap {
    height: 200px;
  }

  .product-card__image {
    max-height: 156px;
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }

  .product-card__image-wrap {
    height: 208px;
    padding: 16px 16px 10px;
  }

  .product-card__image {
    max-height: 162px;
  }

  .product-card__content {
    padding: 10px 14px 16px;
  }

  .product-card__title {
    font-size: 14px;
    min-height: 38px;
  }

  .product-card__new-price {
    font-size: 21px;
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .product-card__image-wrap {
    height: 214px;
  }

  .product-card__image {
    max-height: 166px;
  }
}