/* ── WC Image Click — Frontend ──────────── */

/* Hide magnifier trigger */
.woocommerce-product-gallery__trigger {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Make sure images are full clickable area */
.woocommerce-product-gallery__image {
    position: relative;
}

.woocommerce-product-gallery__image a {
    display: block;
}

/* Prevent default link cursor override */
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image img {
    cursor: inherit !important;
}

/* Mobile — disable browser pinch/double-tap zoom on gallery image */
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image img {
    touch-action: manipulation !important;
    -ms-touch-action: manipulation !important;
}
