/* ── BB Premium: Loan Approval Time ─────────────────────────────────────── */

.bbpe-lt { width: 100%; }

/* ── Shared elements ─────────────────────────────────────────────────────── */
.bbpe-lt__icon { display: inline-flex; align-items: center; flex-shrink: 0; }
.bbpe-lt__icon svg { display: block; }

/* ── Banner variant ──────────────────────────────────────────────────────── */
.bbpe-lt--banner .bbpe-lt__wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 18px 32px;
	background: linear-gradient( 135deg, #0f172a 0%, #1e3a8a 100% );
	border-radius: 12px;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}

/* Subtle shimmer overlay */
.bbpe-lt--banner .bbpe-lt__wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient( 90deg, transparent 0%, rgba(255,255,255,0.03) 50%, transparent 100% );
	pointer-events: none;
}

.bbpe-lt--banner .bbpe-lt__icon {
	font-size: 1.625rem;
	color: #fbbf24;
	animation: bbpe-lt-bounce 1.8s ease-in-out infinite;
}
.bbpe-lt--banner .bbpe-lt__icon svg { width: 1.625rem; height: 1.625rem; fill: #fbbf24; }

.bbpe-lt--banner .bbpe-lt__text {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
}

.bbpe-lt--banner .bbpe-lt__prefix,
.bbpe-lt--banner .bbpe-lt__suffix {
	font-size: 1.0625rem;
	font-weight: 500;
	color: rgba(255,255,255,0.88);
}

.bbpe-lt--banner .bbpe-lt__time {
	display: inline-flex;
	align-items: center;
	background: #fbbf24;
	color: #0f172a;
	font-weight: 800;
	font-size: 1.1875rem;
	letter-spacing: 0.03em;
	padding: 5px 16px;
	border-radius: 8px;
	font-variant-numeric: tabular-nums;
	box-shadow: 0 0 20px rgba(251,191,36,0.45), 0 2px 8px rgba(0,0,0,0.25);
}

.bbpe-lt--banner .bbpe-lt__fallback {
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255,255,255,0.85);
}

/* ── Badge variant ───────────────────────────────────────────────────────── */
.bbpe-lt--badge .bbpe-lt__wrap {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	background: #052e16;
	border: 1.5px solid rgba(74,222,128,0.35);
	border-radius: 100px;
	box-shadow: 0 0 0 4px rgba(74,222,128,0.07);
}

.bbpe-lt--badge .bbpe-lt__icon { font-size: 1rem; color: #4ade80; }
.bbpe-lt--badge .bbpe-lt__icon svg { width: 1rem; height: 1rem; fill: #4ade80; }

.bbpe-lt--badge .bbpe-lt__text {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.bbpe-lt--badge .bbpe-lt__prefix,
.bbpe-lt--badge .bbpe-lt__suffix {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #d1fae5;
}

.bbpe-lt--badge .bbpe-lt__time {
	color: #4ade80;
	font-weight: 800;
	font-size: 0.9375rem;
	font-variant-numeric: tabular-nums;
}

.bbpe-lt--badge .bbpe-lt__fallback {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #d1fae5;
}

/* ── Card variant ────────────────────────────────────────────────────────── */
.bbpe-lt--card .bbpe-lt__wrap {
	padding: 48px 40px;
	background: linear-gradient( 145deg, #0f172a 0%, #1e3a8a 100% );
	border-radius: 24px;
	text-align: center;
	box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
	position: relative;
	overflow: hidden;
}

.bbpe-lt--card .bbpe-lt__wrap::before {
	content: '';
	position: absolute;
	top: -40%;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	height: 60%;
	background: radial-gradient( ellipse, rgba(251,191,36,0.12) 0%, transparent 70% );
	pointer-events: none;
}

.bbpe-lt--card .bbpe-lt__icon {
	font-size: 3.25rem;
	color: #fbbf24;
	display: block;
	margin-bottom: 20px;
	animation: bbpe-lt-bounce 1.8s ease-in-out infinite;
}
.bbpe-lt--card .bbpe-lt__icon svg { width: 3.25rem; height: 3.25rem; fill: #fbbf24; display: block; margin: 0 auto 20px; }

.bbpe-lt--card .bbpe-lt__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.bbpe-lt--card .bbpe-lt__prefix,
.bbpe-lt--card .bbpe-lt__suffix {
	font-size: 1.0625rem;
	font-weight: 500;
	color: rgba(255,255,255,0.7);
	display: block;
}

.bbpe-lt--card .bbpe-lt__time {
	display: block;
	font-size: clamp( 2.5rem, 8vw, 4rem );
	font-weight: 900;
	color: #fbbf24;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	text-shadow: 0 0 40px rgba(251,191,36,0.6);
	letter-spacing: -0.02em;
}

.bbpe-lt--card .bbpe-lt__fallback {
	font-size: 1.0625rem;
	font-weight: 600;
	color: rgba(255,255,255,0.8);
}

/* ── Animation ───────────────────────────────────────────────────────────── */
@keyframes bbpe-lt-bounce {
	0%, 100% { transform: translateY(0); }
	50%       { transform: translateY(-4px); }
}
