/* Category Page Styles */

/* Optimized scroll animation styles */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animation.animate-fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Font Poppins fallback */
.font-poppins {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Horizontal scroll animation for testimonials */
@keyframes scroll-x {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll-x {
    animation: scroll-x 30s linear infinite;
}

.animate-scroll-x:hover {
    animation-play-state: paused;
}
