/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 21 2026 | 14:51:02 */
/* ===== GLOBAL SMOOTH EXPERIENCE ===== */

html {
    scroll-behavior: smooth;
}

/* Smooth page fade */
body {
    opacity: 1;
    transition: opacity 0.35s ease;
}

/* Fade when navigating */
body.is-transitioning {
    opacity: 0.7;
}

/* Prevent flash of unstyled content */
body:not(.page-ready) {
    opacity: 0;
}

/* Smooth element transitions */
a,
button,
.button,
.woocommerce ul.products li.product {
    transition: all 0.3s ease;
}

/* Subtle link hover refinement */
a:hover {
    opacity: 0.85;
}

/* Product micro-lift refinement */
.woocommerce ul.products li.product:hover {
    transform: translateY(-8px);
}