/* Infinite scrolling functionality styles */
/* Remove duplicate spinner */

/* Make all products show together in a flexible grid */
.all-products-container {
    width: 100%;
    margin: 0 auto;
}

/* Products section background */
.homeproduct {
    background-color: #fef9f7;
}

/* Single loading indicator for infinite scroll */
.loader {
    text-align: center;
    padding: 20px;
    display: none;
}

.loader i {
    font-size: 30px;
    color: #f57224;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Hide all "View More" buttons since we'll load products automatically */
.view_more_btn {
    display: none;
}
