/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 31 2026 | 00:42:03 */
h2{
	margin: 0 !important;
}

.enlarge-animation{
    position: relative;
}

.enlarge-animation::before {
    content: " ";
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    transition: width 0.6s ease-in-out, height 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.enlarge-animation:hover::before {
    animation: enlarge 0.6s linear;
}

@keyframes enlarge{
    frome{
        width: 0;
        height: 0;
        opacity: 0.4;
    }
    to{
        width: 1024px;
    height: 1024px;
    opacity: 0;
    }
}

.custom-product-image-wrapper {
    position: relative;
    display: block;
    overflow: hidden;
}

.custom-product-image-wrapper img {
    width: 100%;
    display: block;
	aspect-ratio: 1;
}

.custom-product-image-wrapper .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
	aspect-ratio: 1;
}

/* Only apply hover if gallery image exists */
.custom-product-image-wrapper.has-hover:hover .hover-image {
    opacity: 1;
}

.custom-product-image-wrapper.has-hover:hover .main-image {
    opacity: 0;
}

/* No hover case */
.custom-product-image-wrapper.no-hover .hover-image {
    display: none;
}

input[type="text"], input[type="number"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type=reset], input[type=tel], input[type=date], select, textarea {
	box-shadow: none 
}