/* Flying product image */
.tbt-flying-cart-image {
	position: fixed;
	z-index: 20000;
	margin: 0;
	pointer-events: none;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	will-change: transform, opacity;
}

/* Cart bounce */
.tbt-cart-bounce {
	animation: tbt-cart-bounce 0.38s ease;
}

@keyframes tbt-cart-bounce {
	0%   { transform: scale(1); }
	40%  { transform: scale(1.28) rotate(-8deg); }
	70%  { transform: scale(0.92) rotate(4deg); }
	100% { transform: scale(1); }
}

/* Dark centre notification */
.tbt-cart-toast {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 21000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 190px;
	padding: 22px 24px;
	border-radius: 14px;
	background: rgba(25, 25, 25, 0.86);
	color: #ffffff;
	text-align: center;
	opacity: 0;
	transform: translate(-50%, -45%) scale(0.94);
	transition: opacity 0.2s ease, transform 0.2s ease;
	pointer-events: none;
	backdrop-filter: blur(5px);
}

.tbt-cart-toast.is-visible {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.tbt-cart-toast-check {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #ffffff;
	color: #333333;
	font-size: 34px;
	font-weight: 700;
	line-height: 1;
}

.tbt-cart-toast-text {
	font-size: 16px;
	font-weight: 600;
}