/* Preserve full studio cutouts and their shadows without cropping. */
.product-card-media:has(img[src*="/products/studio/"]) { background: #fff; }
.product-card-media img[src*="/products/studio/"] {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: contain;
  padding: 28px; background: #fff;
}
.gallery img[src*="/products/studio/"] {
  width: 100%; height: auto; aspect-ratio: 1; object-fit: contain;
  padding: clamp(24px, 4vw, 56px); background: #fff;
}
@media (max-width: 600px) {
  .product-card-media img[src*="/products/studio/"] { padding: 18px; }
}
