.product-card {
  min-height: 850px;
}

.product-image {
  height: 260px;
  margin: 24px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #fbfdfb, #f0f5ef);
}

.product-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 620px) {
  .product-card {
    min-height: auto;
  }

  .product-image {
    height: 300px;
  }
}
