/* ─────────────────────────────────────────────────────────────
   Product Card — clickable image indicator
   The lightbox modal is built entirely with inline JS styles
   (matching openpopup.js). Only cursor/hover styles go here.
───────────────────────────────────────────────────────────── */

.product-card-image {
    cursor: zoom-in;
    transition: opacity 0.2s ease;
}

.product-card-image:hover {
    opacity: 0.85;
}
