/* 3DFila Addons — social proof on product page */

.tdfa-sp {
	--tdfa-sp-accent: #e67e22;
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 14px 0;
}

.tdfa-sp-line {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 1.3;
	color: #3a3a3a;
}

.tdfa-sp-line[hidden] { display: none; }

.tdfa-sp-text strong {
	color: var(--tdfa-sp-accent);
	font-weight: 700;
}

/* Pulsing "live" dot for viewers */
.tdfa-sp-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #2ecc71;
	position: relative;
	flex: none;
	box-shadow: 0 0 0 rgba(46, 204, 113, .6);
	animation: tdfa-sp-pulse 1.8s infinite;
}

@keyframes tdfa-sp-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(46, 204, 113, .6); }
	70%  { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0); }
	100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.tdfa-sp-cart-icon {
	display: inline-flex;
	color: var(--tdfa-sp-accent);
	flex: none;
}

/* Subtle highlight when a number changes */
.tdfa-sp-text strong.tdfa-sp-bump {
	animation: tdfa-sp-bump .5s ease;
}

@keyframes tdfa-sp-bump {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.25); }
	100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
	.tdfa-sp-dot,
	.tdfa-sp-text strong.tdfa-sp-bump { animation: none; }
}
