/* Animations and transition effects */

/* Button hover animations */
.button {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover,
.button:focus {
    box-shadow: 0 0 10px var(--color-primary-light);
    outline: none;
}

/* Hero fade-in animation */
.hero-section .fade-in {
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

/* Testimonial slider fade */
.testimonial-slide {
    transition: opacity 0.6s ease;
}

/* Product card hover */
.product-card:hover,
.product-card:focus-within {
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Zoom image effect */
.woocommerce-main-image.zoom-image:hover img {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}
