/**
 * Fly-to-cart animation (single product add to cart).
 *
 * @package Swedish_Thrifting
 */

.st-fly-to-cart {
	position: fixed;
	z-index: 2147483645;
	margin: 0;
	pointer-events: none;
	border-radius: 6px;
	overflow: hidden;
	border: 1px solid #d1bc9b;
	background: #f4f1e6;
	opacity: 1;
	transform: translate(0, 0) scale(1);
	transition:
		transform 0.72s cubic-bezier(0.25, 0.8, 0.25, 1),
		opacity 0.72s ease;
	will-change: transform, opacity;
}

.st-fly-to-cart.is-flying {
	transform: translate(var(--st-fly-dx, 0), var(--st-fly-dy, 0)) scale(0.12);
	opacity: 0.12;
}

.st-fly-to-cart img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.st-fly-to-cart--dot {
	background: #967e5b;
}

.st-header-mini-cart a.cart-link.st-cart-target-pulse .st-header-action-icon {
	animation: st-cart-target-pulse 0.55s ease;
}

@keyframes st-cart-target-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	45% {
		transform: scale(1.22);
	}
}

@media (prefers-reduced-motion: reduce) {
	.st-fly-to-cart {
		display: none !important;
	}

	.st-header-mini-cart a.cart-link.st-cart-target-pulse .st-header-action-icon {
		animation: none;
	}
}
