/* ─────────────────────────────────────────────────────────────
   Trust Bar + Spots Badge — added in 5.8.3
   Neo-brutalist style matching the rest of the theme.
   ───────────────────────────────────────────────────────────── */

/* ─── Trust Bar ──────────────────────────────────────────── */
.tt-trust-bar {
	background: var(--acid, #DFFF5C);
	border-top: var(--b-thick, 3px solid #111);
	border-bottom: var(--b-thick, 3px solid #111);
	padding: 18px 0;
	margin: 40px 0;
	position: relative;
}

.tt-trust-bar__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
	align-items: center;
}

.tt-trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 4px;
	padding: 6px 10px;
}

.tt-trust-item__icon {
	font-size: 26px;
	line-height: 1;
	margin-bottom: 4px;
}

.tt-trust-item__value {
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
	color: var(--black, #111);
	letter-spacing: -0.02em;
}

.tt-trust-item__label {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--black, #111);
	opacity: 0.75;
}

@media (max-width: 640px) {
	.tt-trust-bar {
		padding: 14px 0;
		margin: 28px 0;
	}
	.tt-trust-bar__inner {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.tt-trust-item__value {
		font-size: 22px;
	}
}

/* ─── Spots Badge ────────────────────────────────────────── */
.tt-spots-badge {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	border: var(--b-thick, 3px solid #111);
	border-radius: 999px;
	font-weight: 900;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1;
	white-space: nowrap;
}

.tt-spots-badge--ok {
	background: var(--white, #fff);
	color: var(--black, #111);
}

.tt-spots-badge--urgent {
	background: #FFE033;
	color: var(--black, #111);
	animation: tt-spots-pulse 2s ease-in-out infinite;
	box-shadow: 3px 3px 0 var(--black, #111);
}

.tt-spots-badge--full {
	background: #FF3366;
	color: var(--white, #fff);
	border-color: var(--black, #111);
}

@keyframes tt-spots-pulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
	.tt-spots-badge--urgent { animation: none; }
}
