/**
 * WooCommerce Auto Infinite Scroll & Recommendations Styles.
 */

.wc-infinite-scroll-status {
    padding: 20px 0;
    text-align: center;
    clear: both;
}

/* Spinner styling */
.wc-infinite-scroll-spinner {
    display: inline-block;
    width: 32px;
    height: 32px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #333;
    animation: wc_spin 1s ease-in-out infinite;
    margin: 0 auto;
}

@keyframes wc_spin {
    to { transform: rotate(360deg); }
}

/* End of Collection Banner */
.wc-infinite-scroll-end {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    margin: 20px 0;
}

/* Recommendations styling */
.wc-infinite-scroll-recommendations {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    clear: both;
}

.wais-recommendations-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
