/* A separate, versioned layer guarantees that every product loads with the
   complete-product presentation on both desktop and mobile. */
.product-card__visual {
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: #f8fafb;
}

.product-card__visual .product-image-link {
  position: absolute;
  z-index: 1;
  top: 54px;
  left: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 78px);
  display: block;
  overflow: hidden;
}

.product-card__visual .product-image-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  transform: none !important;
}

@media (max-width: 760px) {
  .product-card__visual .product-image-link {
    top: 54px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 76px);
  }
}
