/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 21 2026 | 14:59:21 */
/* Global smooth transitions */
body {
    transition: background-color 0.4s ease, color 0.4s ease;
}

/* Product Card Base */
.woocommerce ul.products li.product {
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.4s ease;
    background: #fff;
}

/* Lift + Premium Shadow */
.woocommerce ul.products li.product:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Image Zoom */
.woocommerce ul.products li.product img {
    transition: transform 0.6s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.07);
}

/* Elegant Button */
.woocommerce ul.products li.product .button {
    background: #c8a96a;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product .button:hover {
    background: #b89555;
    transform: translateY(-2px);
}

/* Gold Accent Hover Line */
.woocommerce ul.products li.product::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #c8a96a;
    transition: width 0.4s ease;
}

.woocommerce ul.products li.product:hover::after {
    width: 100%;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ripple Effect */
.button .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}