.product-art {
  aspect-ratio: 1;
  min-height: 0;
  background: #dce7f1;
}

.product-art::before,
.product-art::after {
  display: none;
}

.product-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-card:hover .product-art img {
  transform: scale(1.025);
}

.product-amount {
  z-index: 1;
  box-shadow: 0 4px 14px rgba(7, 29, 63, .18);
}

@media (prefers-reduced-motion: reduce) {
  .product-art img { transition: none; }
  .product-card:hover .product-art img { transform: none; }
}
