.product-visual--photo {
  height: auto;
  aspect-ratio: 4 / 5;
  background: #03132f;
}

.product-visual--photo::before {
  display: none;
}

.product-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s var(--ease), filter .45s var(--ease);
}

.product-card:hover .product-photo {
  transform: scale(1.025);
  filter: brightness(1.035);
}

@media (max-width: 520px) {
  .product-visual--photo {
    height: auto;
  }
}
