.item-cart-fab {
	position: fixed;
	right: 16px;
	bottom: 16px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #0f1f46;
	color: #fff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 24px rgba(15, 31, 70, 0.28);
	z-index: 2200;
	opacity: 0;
	transform: translateY(8px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}

.item-cart-fab.is-visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.item-cart-fab__icon {
	width: 24px;
	height: 24px;
	display: block;
}

.item-cart-fab__badge {
	position: absolute;
	top: -4px;
	right: -4px;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: #e11d48;
	color: #fff;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(225, 29, 72, 0.35);
}

.item-cart-toast {
	position: fixed;
	right: 16px;
	bottom: 82px;
	max-width: 220px;
	padding: 10px 12px;
	border-radius: 10px;
	background: rgba(17, 24, 39, 0.94);
	color: #fff;
	font-size: 12px;
	line-height: 1.4;
	z-index: 2201;
	opacity: 0;
	transform: translateY(6px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease;
}

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

a[data-ajax-cart="1"].is-cart-adding {
	opacity: 0.6;
	pointer-events: none;
}

@media (max-width: 767px) {
	.item-cart-fab {
		right: 12px;
		bottom: 12px;
		width: 52px;
		height: 52px;
	}

	.item-cart-toast {
		right: 12px;
		bottom: 72px;
	}
}
