/* Sol Air Services — Barres de filtres thématiques (Ouinet.fr, 2026-08) */

.sa-refi {
	--sa-refi-bleu: #1e2d5a;
	--sa-refi-orange: #e8760a;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin: 0 auto 40px;
	padding: 0;
	width: 100%;
	list-style: none;
}

.sa-refi-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 11px 22px;
	border: 1px solid rgba(30, 45, 90, 0.18);
	border-radius: 999px;
	background: #fff;
	color: var(--sa-refi-bleu);
	font-family: inherit;
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
	-webkit-appearance: none;
	appearance: none;
}

.sa-refi-btn:hover,
.sa-refi-btn:focus-visible {
	border-color: var(--sa-refi-orange);
	background: #fff;
	color: var(--sa-refi-orange);
	text-decoration: none;
	box-shadow: 0 2px 10px rgba(30, 45, 90, 0.08);
}

.sa-refi-btn:focus-visible {
	outline: 2px solid var(--sa-refi-orange);
	outline-offset: 2px;
}

.sa-refi-btn.is-active {
	background: var(--sa-refi-bleu);
	border-color: var(--sa-refi-bleu);
	color: #fff;
	box-shadow: 0 4px 14px rgba(30, 45, 90, 0.18);
}

.sa-refi-n {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 999px;
	background: rgba(30, 45, 90, 0.08);
	color: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.sa-refi-btn.is-active .sa-refi-n {
	background: var(--sa-refi-orange);
	color: #fff;
}

/* Filtrage instantané (réalisations) */
.sa-refi-item.sa-refi-hidden {
	display: none !important;
}

.sa-refi-item.sa-refi-in {
	animation: sa-refi-fade 0.3s ease both;
}

@keyframes sa-refi-fade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sa-refi-item.sa-refi-in {
		animation: none;
	}
}

/* Message « aucun résultat » */
.sa-refi-vide {
	margin: 0 auto 40px;
	padding: 22px;
	border: 1px dashed rgba(30, 45, 90, 0.25);
	border-radius: 10px;
	color: #1e2d5a;
	font-size: 0.95rem;
	text-align: center;
}

.sa-refi-vide[hidden] {
	display: none !important;
}

@media (max-width: 600px) {
	.sa-refi {
		gap: 8px;
		margin-bottom: 30px;
	}

	.sa-refi-btn {
		padding: 9px 16px;
		font-size: 0.86rem;
	}
}
