/* Social proof toast notifications */
.sv-social-toast {
	position: fixed;
	bottom: 24px;
	left: 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
	padding: 14px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 9999;
	transform: translateX(-120%);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	max-width: 340px;
	border-left: 3px solid #43a047;
}

.sv-social-toast.show {
	transform: translateX(0);
	opacity: 1;
}

.sv-social-toast.hide {
	transform: translateX(-120%);
	opacity: 0;
}

.sv-social-toast .toast-flag {
	width: 28px;
	height: 20px;
	border-radius: 3px;
	object-fit: cover;
	flex-shrink: 0;
}

.sv-social-toast .toast-content {
	flex: 1;
	min-width: 0;
}

.sv-social-toast .toast-text {
	font-size: 13px;
	color: #333;
	line-height: 1.4;
}

.sv-social-toast .toast-amount {
	color: var(--sv-primary);
}

.sv-social-toast .toast-time {
	font-size: 11px;
	color: #B5B5C3;
	margin-top: 2px;
}

.sv-social-toast .toast-loi {
	font-size: 11px;
	color: #80808F;
	font-weight: 400;
}

.sv-social-toast .toast-close {
	background: none;
	border: none;
	color: #ccc;
	font-size: 18px;
	cursor: pointer;
	padding: 0 4px;
	line-height: 1;
	flex-shrink: 0;
}

.sv-social-toast .toast-close:hover {
	color: #666;
}

/* Live counter */
.sv-live-counter {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: #80808F;
	padding: 8px 16px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.sv-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #43a047;
	animation: sv-pulse 2s infinite;
}

@keyframes sv-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

.sv-live-counter strong {
	color: var(--sv-primary);
}

@media (max-width: 575.98px) {
	.sv-social-toast {
		left: 12px;
		right: 12px;
		bottom: 80px;
		max-width: none;
	}
}
