#dff-cart-toast {
	position: fixed;
	bottom: 200px;
	left: 50%;
	z-index: 2147483647;
	display: flex;
	align-items: center;
	gap: 10px;
	max-width: 90vw;
	padding: 13px 24px;
	transform: translateX(-50%) translateY(80px);
	border-radius: 8px;
	background: #22a06b;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
	color: #fff;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.4;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease, transform .35s cubic-bezier(.34, 1.26, .64, 1);
	white-space: nowrap;
}

#dff-cart-toast.dff-cart-toast--show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

#dff-cart-toast .dff-cart-toast__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .2);
}

#dff-cart-toast .dff-cart-toast__icon svg {
	width: 12px;
	height: 12px;
	fill: none;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

@media (max-width: 600px) {
	#dff-cart-toast {
		bottom: 100px;
		white-space: normal;
	}
}

@media (prefers-reduced-motion: reduce) {
	#dff-cart-toast {
		transition: opacity .15s ease;
	}
}

