/* Almasara Fast Cart */

/* اعلان افزودن به سبد */
.amfc-toast {
	position: fixed;
	inset-inline: 0;
	bottom: 24px;
	margin-inline: auto;
	width: max-content;
	max-width: calc(100% - 32px);
	z-index: 100001;
	padding: 12px 22px;
	border-radius: 999px;
	background-color: #16265c;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 8px 30px rgba(16, 24, 40, 0.25);
	opacity: 0;
	transform: translateY(16px);
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.amfc-toast.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* حالت خطا (رد شدن افزودن: ناموجودی، خطای شبکه و ...) */
.amfc-toast.is-error {
	background-color: #e5484d;
}

/* بج شمارنده — پایه؛ نمایش/مخفی بر اساس وجود آیتم */
.amfc-count:not(.amfc-has-items):empty {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.amfc-toast {
		transition: opacity 0.25s ease;
		transform: none;
	}
}

/* بج شناور روی آیکون سبد (موبایل) — والدِ آیکون باید position:relative باشد */
.amfc-badge {
	position: absolute;
	top: -4px;
	inset-inline-end: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background-color: #e6123d;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

/* بج فقط وقتی آیتم دارد دیده شود (از نمایش «۰» جلوگیری می‌کند) */
.amfc-badge:not(.amfc-has-items) {
	display: none;
}
