/**
 * Emilie Product Filters v2.1 — Styles pills uniquement
 */

.epf-wrapper {
	margin-bottom: 1.5rem;
}

.epf-filters {
	padding-bottom: 0.5rem;
}

.epf-filter-group {
	margin-bottom: 1rem;
}

.epf-filter-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8a8579;
	margin-bottom: 0.5rem;
}

/* Pills */
.epf-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.epf-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	padding: 0.45em 0.9em;
	font-family: inherit;
	font-size: 0.82rem;
	font-weight: 400;
	line-height: 1.3;
	color: #4a4540;
	background: transparent;
	border: 1px solid #d5d0c9;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	-webkit-appearance: none;
}

.epf-pill:hover {
	border-color: #4a4540;
	color: #1a1815;
}

.epf-pill--active {
	background: #1a1815;
	border-color: #1a1815;
	color: #fff;
}

.epf-pill--active:hover {
	background: #333;
	border-color: #333;
	color: #fff;
}

.epf-pill-count {
	font-size: 0.75em;
	opacity: 0.6;
}

.epf-pill--active .epf-pill-count {
	opacity: 0.8;
}

/* Reset */
.epf-reset {
	display: inline-flex;
	align-items: center;
	gap: 0.3em;
	margin-top: 0.5rem;
	padding: 0.4em 0.8em;
	font-family: inherit;
	font-size: 0.78rem;
	color: #a0453e;
	background: transparent;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}

.epf-reset:hover {
	color: #c0342e;
}

/* Loading state — applied via JS on ul.products */
ul.products {
	transition: opacity 0.2s ease;
}

/* No results */
.epf-no-results {
	list-style: none !important;
}

/* AJAX pagination */
.epf-ajax-pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
	padding-top: 1rem;
}

.epf-ajax-pagination a,
.epf-ajax-pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 0.6em;
	font-size: 0.82rem;
	color: #4a4540;
	border: 1px solid #d5d0c9;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.epf-ajax-pagination a:hover {
	border-color: #1a1815;
	color: #1a1815;
}

.epf-ajax-pagination .current {
	background: #1a1815;
	border-color: #1a1815;
	color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
	.epf-pills { gap: 0.3rem; }
	.epf-pill { font-size: 0.75rem; padding: 0.4em 0.7em; }
}

@media (max-width: 480px) {
	.epf-filter-group { margin-bottom: 0.75rem; }
	.epf-pills {
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.3rem;
	}
	.epf-pills::-webkit-scrollbar { display: none; }
}
