/* ============================================================
   Gain de contact SmartClub — carte « live » compteur + « +1 ».
   ============================================================ */
.scb-gain {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px 12px 14px;
	background: #fff;
	border-radius: 16px;
	font-family: inherit;
	line-height: 1.2;
	overflow: visible;
}

.scb-gain__badge {
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.scb-gain__badge svg { width: 56%; height: 56%; display: block; }

.scb-gain__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.scb-gain__label {
	font-size: 12px;
	color: #6B7280;
	white-space: nowrap;
}

.scb-gain__num {
	font-size: 22px;
	font-weight: 800;
	color: #1D1D1B;
	font-variant-numeric: tabular-nums;
	display: inline-block;
}

/* Micro-pop du nombre à chaque incrément. */
.scb-gain__num.is-pop {
	animation: scb-gain-pop .45s ease;
}
@keyframes scb-gain-pop {
	0%   { transform: scale(1); }
	35%  { transform: scale(1.18); }
	100% { transform: scale(1); }
}

/* « +1 » qui flotte vers le haut puis s'estompe. */
.scb-gain__float {
	position: absolute;
	right: 16px;
	top: 50%;
	font-size: 14px;
	font-weight: 800;
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
}
.scb-gain--plusone .scb-gain__float {
	right: auto;
	left: 50%;
	transform: translateX(-50%);
	font-size: 18px;
}
.scb-gain__float.is-go {
	animation: scb-gain-float 1.3s ease-out;
}
@keyframes scb-gain-float {
	0%   { opacity: 0; transform: translateY(0) scale(.8); }
	18%  { opacity: 1; transform: translateY(-8px) scale(1); }
	100% { opacity: 0; transform: translateY(-38px) scale(1); }
}
.scb-gain--plusone .scb-gain__float.is-go {
	animation: scb-gain-float-center 1.3s ease-out;
}
@keyframes scb-gain-float-center {
	0%   { opacity: 0; transform: translateX(-50%) translateY(0) scale(.8); }
	18%  { opacity: 1; transform: translateX(-50%) translateY(-8px) scale(1); }
	100% { opacity: 0; transform: translateX(-50%) translateY(-40px) scale(1); }
}

