/* Filtro de Orientación en páginas de marca (/marca/{slug}/) - chips
   clicables, encima del loop de productos (ver
   fitness-pro-brand-filters.php). */

.fp-brand-orientacion-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 20px;
}

.fp-orientacion-chip {
	display: inline-block;
	font-family: 'Fjalla One', sans-serif;
	font-size: 13px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: #000000;
	background: #ffffff;
	border: 1px solid #e4e4e1;
	border-radius: 999px;
	padding: 8px 18px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fp-orientacion-chip:hover {
	border-color: #000000;
}

.fp-orientacion-chip.is-active {
	background: var( --theme-palette-color-1, #FA0000 );
	border-color: var( --theme-palette-color-1, #FA0000 );
	color: #ffffff;
}

.fp-orientacion-chip.is-active::after {
	content: " \2715";
	font-size: 11px;
	margin-left: 6px;
}
