/* Override the bottom-to-top animation */
@keyframes productFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-container {
    animation: productFadeIn 0.5s ease-out;
    transform: none !important;
} 