/**
 * Product cards: image should open the product URL (same as the title link).
 * 1) .product_img::before — full-area overlay (z-index: 1), catches clicks even at opacity: 0.
 * 2) .product_action_box — z-index: 2 over the image; the box hit-area blocked the image <a>
 *    except on the small icon links. Pass events through the box, re-enable on action anchors.
 */
.product_img::before {
    pointer-events: none;
}

.product_img .product_action_box {
    pointer-events: none;
}

.product_img .product_action_box a {
    pointer-events: auto;
}
