#loading {
    font-size: 16px;
    padding: 10px;
    text-align: center;
}

#wc-load-more {
    cursor: pointer;
    display: block;
    transition: all 0.5s ease;
}

/* Ensure Load More button remains visible */
#wc-load-more-container {
    display: flex !important;
    justify-content: center;
    margin-top: 20px;
}

/* Loading spinner styling */
.wc-load-more-spinner {
    align-items: center;
    display: flex;
    height: 40px;
    justify-content: center;
    margin: 20px 0;
}

.wc-load-more-spinner::before {
    animation: spin 1s linear infinite;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #333;
    content: "";
    height: 20px;
    width: 20px;
}

@keyframes spin {

    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
