/* Load More Products Styles */

.product-item {
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

#load-more-products {
    min-width: 200px;
    transition: all 0.3s ease;
}

#load-more-products:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

#load-more-products:disabled {
    opacity: 0.7;
}

/* Product card animations */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Loading spinner animation */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Fade in animation for new products */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-item.new-loaded {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #load-more-products {
        min-width: 150px;
        font-size: 14px;
    }
}
