/**
 * Infinite Scroll Styles
 */

#infinite-scroll-loader {
    padding: 2rem 0;
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

#infinite-scroll-loader .spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Smooth product appearance */
#product-list > .col {
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pagination note styling */
.pagination small.text-muted {
    font-size: 0.875rem;
    font-style: italic;
}

/* Loading state for product list */
#product-list.loading {
    opacity: 0.6;
    pointer-events: none;
}
