/**
 * Badge statut centre — SOS Pare-Brise+
 * Pilule fit-content, 3 états : open / closing-soon / closed.
 */

.sospb-statut {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 12px;
	font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1;
	white-space: nowrap;
}

.sospb-statut__dot {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

/* --- Ouvert --- */
.sospb-statut--open {
	color: #1FA76F;
	background-color: rgba(31, 167, 111, 0.10);
}

.sospb-statut--open .sospb-statut__dot {
	background-color: #1FA76F;
	box-shadow: 0 0 0 4px rgba(31, 167, 111, 0.40);
}

/* --- Ferme bientôt (<30 min) --- */
.sospb-statut--closing-soon {
	color: #E89C2B;
	background-color: rgba(232, 156, 43, 0.12);
}

.sospb-statut--closing-soon .sospb-statut__dot {
	background-color: #E89C2B;
}

/* --- Fermé --- */
.sospb-statut--closed {
	color: #D94F30;
	background-color: rgba(217, 79, 48, 0.10);
}

.sospb-statut--closed .sospb-statut__dot {
	background-color: #D94F30;
}
