.eapf-filter {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
	gap: 2rem;
	margin-bottom: 1.5rem;
}

.eapf-group__title {
	margin: 0 0 .5em;
	font-family: "Antonio", Sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	text-transform: uppercase;
}

/* Checkbox con el color de marca en vez del azul del navegador. */
.eapf-option input[type="checkbox"],
.eapf-group input[type="checkbox"] {
	accent-color: #F1CAD0;
}

.eapf-group__options {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem 1rem;
}

.eapf-option {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
	cursor: pointer;
}

.eapf-estado {
	font-family: monospace;
	font-size: 13px;
}

/* --- Range de precio: dos sliders superpuestos sobre una misma pista --- */
.eapf-group--price {
	min-width: 200px;
}

.eapf-price-slider {
	position: relative;
	height: 2rem;
}

.eapf-price-track {
	position: absolute;
	inset-inline: 0;
	top: 50%;
	height: 3px;
	transform: translateY(-50%);
	background: currentColor;
	opacity: .25;
	border-radius: 2px;
}

.eapf-price-input {
	position: absolute;
	inset-inline: 0;
	top: 50%;
	width: 100%;
	margin: 0;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
}

.eapf-price-input::-webkit-slider-thumb {
	pointer-events: auto;
	-webkit-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: currentColor;
	cursor: pointer;
}

.eapf-price-input::-moz-range-thumb {
	pointer-events: auto;
	width: 16px;
	height: 16px;
	border: none;
	border-radius: 50%;
	background: currentColor;
	cursor: pointer;
}

.eapf-price-values {
	margin-top: .25rem;
	font-size: .9rem;
}

@media only screen and (min-width: 320px) and (max-width: 767px){
	.eapf-filter {
		flex-wrap: wrap;
		justify-content: flex-start;
	}
}
