/* نورآنی سوشیال پروف — استایل باکس */

.norani-sp-box {
	background-color: #ffffff;
	border: 1px solid #dff6e8;
	border-radius: 12px;
	padding: 12px 16px;
	margin: 14px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	direction: rtl;
	font-family: inherit;
	box-shadow: 0 1px 2px rgba(16, 185, 129, 0.06);
}

.norani-sp-row {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	line-height: 1.6;
	color: #1f2937;
}

.norani-sp-num {
	font-weight: 700;
	color: #15803d;
	display: inline-block;
	transition: transform 0.35s ease, color 0.35s ease;
}

/* انیمیشن ملایم هنگام تغییر عدد */
.norani-sp-num.norani-sp-pulse {
	animation: norani-sp-pulse 0.5s ease;
}

@keyframes norani-sp-pulse {
	0%   { transform: scale(1);    opacity: 1;   }
	40%  { transform: scale(1.15); opacity: 0.7; }
	100% { transform: scale(1);    opacity: 1;   }
}

/* ریسپانسیو */
@media (max-width: 480px) {
	.norani-sp-box {
		padding: 10px 12px;
		border-radius: 10px;
	}
	.norani-sp-row {
		font-size: 13px;
	}
}
