.product-image:has(.product-photo) {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  background: #f3f2ee;
}
.product-image .product-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s;
}
.product-image:hover .product-photo { transform: scale(1.045); }
.cart-row > .product-photo {
  display: block;
  width: 82px;
  height: 88px;
  object-fit: contain;
  background: #f3f2ee;
  border-radius: 4px;
  flex-shrink: 0;
}
#product-detail > .detail-art:has(.product-photo) { padding: 0; background: #f3f2ee; }
.detail-art .product-photo { display: block; width: 100%; height: auto; object-fit: contain; }
@media (max-width: 600px) {
  .cart-row > .product-photo { width: 70px; }
  .detail-art .product-photo { max-height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  .product-image .product-photo { transition: none; }
}
