/* ============================================================
   OyuncuStore - Product Hover Glow
   Saf CSS, sıfır JavaScript, GPU hızlandırmalı
   Woodmart Games Dark tema ile tam uyumlu
   ============================================================ */

a.product-image-link,
a.woocommerce-LoopProduct-link {
    position: relative !important;
}

a.product-image-link::after,
a.woocommerce-LoopProduct-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 85% 12%,
        rgba(255, 255, 255, 0.28) 0%,
        rgba(255, 255, 255, 0.12) 30%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 75%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 3;
    will-change: opacity;
    border-radius: inherit;
}

a.product-image-link:hover::after,
a.woocommerce-LoopProduct-link:hover::after {
    opacity: 1;
}
