:root {
    --primary-color: #F37B54;
}
.shootz-image-wrapper {
    position: relative;
}
.shootz-product-image-hover {
    display: block;
    position: absolute;
    top: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all .5s;
}
.shootz-image-wrapper:hover::before {
    display: none;
    content: '';
    border: 1px solid var(--primary-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}
.shootz-image-wrapper:hover .shootz-product-image-hover {
    opacity: 1;
    visibility: visible;
    transition: all .5s;
}
.shootz-image-wrapper .read-more_button {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    position: absolute;
    z-index: 3;
    display: none;
    bottom: 0;
    width: 100%;
}
.shootz-image-wrapper:hover .read-more_button {
    display: none;
}

.single-product .pswp__caption {
    display: none;
}