/* ============================================================
   Barre de comparaison SmartClub — icône + titre + jauge + note.
   ============================================================ */
.scb-bar {
	font-family: inherit;
}

.scb-bar__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 4px 12px;
	margin-bottom: 8px;
}

.scb-bar__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}
.scb-bar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 0;
	flex: 0 0 auto;
}
.scb-bar__icon svg { width: 1em; height: 1em; fill: currentColor; }
.scb-bar__icon i { font-size: inherit; }
.scb-bar__logo { width: 1em; height: 1em; object-fit: contain; display: block; }

.scb-bar__title {
	font-size: 16px;
	font-weight: 600;
	color: #1A1A18;
}
.scb-bar__status {
	font-size: 12px;
	font-weight: 500;
	color: #9A9384;
	white-space: nowrap;
}

.scb-bar__track {
	position: relative;
	width: 100%;
	height: 18px;
	background: #E3DCCF;
	border-radius: 8px;
	overflow: hidden;
}
.scb-bar__fill {
	height: 100%;
	border-radius: inherit;
	background: #BCE94A;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 12px;
	box-sizing: border-box;
}
.scb-bar__intext {
	font-size: 12px;
	font-weight: 700;
	color: #33420A;
	white-space: nowrap;
}

.scb-bar__note {
	margin-top: 7px;
	font-size: 12.5px;
	line-height: 1.45;
	color: #6B665C;
}

/* Animation de remplissage : la largeur cible est posée par le JS. */
.scb-bar--animate .scb-bar__fill {
	transition: width 1.1s cubic-bezier(.16, 1, .3, 1);
}
