/**
 * LELYS One — abas de filtro instantâneo da seção "Populares" (home).
 */

.lelys-populares-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
	padding: 0.25rem;
	border-radius: 999px;
	background-color: var(--wp--preset--color--surface, #f9fafb);
}

.lelys-populares-tabs__tab {
	border: none;
	border-radius: 999px;
	padding: 0.5rem 1rem;
	background-color: transparent;
	color: var(--wp--preset--color--muted, #6b7280);
	font-family: var(--wp--preset--font-family--body, sans-serif);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.lelys-populares-tabs__tab:hover {
	color: var(--wp--preset--color--ink, #111827);
}

.lelys-populares-tabs__tab.is-active {
	background-color: var(--wp--preset--color--base, #ffffff);
	color: var(--wp--preset--color--ink, #111827);
	font-weight: 600;
}

.lelys-populares-tabs.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.lelys-populares-tabs__error {
	margin: 0.5rem 0 0;
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted, #6b7280);
}

.wp-block-woocommerce-product-collection[aria-busy="true"] {
	opacity: 0.5;
	transition: opacity 0.15s ease;
}

@media (max-width: 782px) {
	.lelys-populares-tabs {
		width: 100%;
		overflow-x: auto;
	}
}
