/* Filtri categoria Shop (pillole) + stato di caricamento AJAX */

.woocommerce-shop .woocommerce-products-header {
	margin-bottom: 70px;
}

.sodamore-shop-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 0 0 60px;
	padding: 0;
}

.sodamore-shop-filters .sodamore-filter {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 1.1rem;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 0.95rem;
	line-height: 1.2;
	text-decoration: none;
	color: inherit;
	background: transparent;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
}

.sodamore-shop-filters .sodamore-filter:hover,
.sodamore-shop-filters .sodamore-filter:focus-visible {
	background: rgba(0, 0, 0, 0.06);
}

.sodamore-shop-filters .sodamore-filter.is-active {
	background: #111;
	border-color: #111;
	color: #fff;
}

/* Stato di caricamento del wrapper prodotti */
.sodamore-shop-products {
	position: relative;
	min-height: 120px;
	transition: opacity 0.2s ease;
}

.sodamore-shop-products.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.sodamore-shop-products.is-loading::after {
	content: "";
	position: absolute;
	top: 60px;
	left: 50%;
	width: 36px;
	height: 36px;
	margin-left: -18px;
	border: 3px solid rgba(0, 0, 0, 0.15);
	border-top-color: #111;
	border-radius: 50%;
	animation: sodamore-spin 0.7s linear infinite;
}

@keyframes sodamore-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Mobile */
@media (max-width: 767.98px) {
	.sodamore-shop-filters .sodamore-filter {
		padding: 5px 14px;
	}
}
