#ncs-floating-cart{
	position:fixed;
	right:18px;
	bottom:90px;
	width:64px;
	height:64px;
	border-radius:999px;
	background:linear-gradient(135deg,#C70039,#ff3366);
	display:flex;
	align-items:center;
	justify-content:center;
	z-index:999999;
	text-decoration:none;
	box-shadow:0 10px 24px rgba(199,0,57,.28);
	user-select:none;
	touch-action:none;
	transition:transform .2s ease;
}

#ncs-floating-cart:active{
	transform:scale(.95);
}

.ncs-cart-icon{
	font-size:28px;
	color:#fff;
}

#ncs-floating-cart-count{
	position:absolute;
	top:-4px;
	right:-4px;
	background:#FFC300;
	color:#111;
	min-width:22px;
	height:22px;
	border-radius:999px;
	font-size:12px;
	font-weight:700;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0 6px;
}

#ncs-cart-added-popup{
	position:fixed;
	right:18px;
	bottom:165px;
	background:#111827;
	color:#fff;
	padding:12px 14px;
	border-radius:14px;
	font-size:13px;
	font-weight:700;
	opacity:0;
	transform:translateY(20px);
	pointer-events:none;
	transition:all .3s ease;
	z-index:999999;
}

#ncs-cart-added-popup.show{
	opacity:1;
	transform:translateY(0);
}

#ncs-cart-added-popup strong{
	display:block;
	margin-bottom:4px;
	color:#FFC300;
}