/* Keep the full product artwork visible instead of cropping it. */
.product-image {
  height: 300px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 10%, #6f5cff42, transparent 54%),
    linear-gradient(145deg, #23213c, #0c0c18);
}

.product-image img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  padding: 8px;
  object-fit: contain;
}

.product-image:after {
  z-index: 1;
  background: linear-gradient(0deg, #10101fd9 0%, transparent 28%);
}

.product-image span {
  z-index: 2;
}

@media (max-width: 800px) {
  .product-image { height: 325px; }
}
