/**
 * WooCommerce Product Archive – Infinite Scroll styles
 *
 * @package HelloElementorChild
 */

/* Hide numbered pagination on product archives */
.taf-infinite-scroll-active .woocommerce-pagination,
.taf-infinite-scroll-active nav.elementor-pagination,
.taf-infinite-scroll-active .elementor-widget-wc-archive-products nav.elementor-pagination {
	display: none !important;
}

/* Scroll sentinel (invisible trigger zone) */
.taf-infinite-scroll-sentinel {
	height: 1px;
	width: 100%;
	visibility: hidden;
}

/* Loading indicator */
.taf-infinite-scroll-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 24px 16px;
	color: #666;
	font-size: 14px;
}

.taf-infinite-scroll-spinner {
	display: inline-block;
	width: 24px;
	height: 24px;
	border: 3px solid #e0e0e0;
	border-top-color: #289e19;
	border-radius: 50%;
	animation: taf-infinite-scroll-spin 0.7s linear infinite;
	flex-shrink: 0;
}

@keyframes taf-infinite-scroll-spin {
	to {
		transform: rotate(360deg);
	}
}

.taf-infinite-scroll-text {
	line-height: 1.4;
}
