/* slider-non-critical.css */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.slider-loading-placeholder rect[fill="url(#shimmer)"] {
    animation: shimmer 1.5s infinite;
}

/* Media queries and other non-critical styles */
@media (max-width: 768px) {
    .custom-image-slider-container {
        height: 350px;
    }
    
    .slide-item {
        width: 300px;
    }
    
    .custom-slider-text {
        font-size: 14px;
        padding: 8px 15px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .custom-image-slider-container {
        height: 300px;
    }
    
    .slide-item {
        width: 250px;
    }
}