/* ============================================
   Product Image Hover Effect
   ============================================ */

.pa-product-img {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.pa-product-img .product-main-img {
    position: relative;
    z-index: 1;
    transition: opacity 0.4s;
}

.pa-product-img .product-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.4s;
}

.pa-product-box:hover .product-main-img {
    opacity: 0;
}

.pa-product-box:hover .product-hover-img {
    opacity: 1;
}