/* Infinite Scroll */
.aws-infinite-scroll-loader {
    text-align: center;
    padding: 30px;
    color: #666;
}

.aws-loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 3px solid #eee;
    border-top-color: #333;
    border-radius: 50%;
    animation: aws-spin 0.8s linear infinite;
    margin-bottom: 10px;
}

@keyframes aws-spin {
    to { transform: rotate(360deg); }
}

.aws-infinite-scroll-end {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 14px;
}

/* Hide pagination when infinite scroll is active */
.aws-infinite-scroll-active .woocommerce-pagination {
    display: none !important;
}
