/**
 * Pure Life — анімація «товар летить у кошик» (лише ПК)
 */
@media (min-width: 1101px) {

	.pl-cart-flyer {
		position: fixed;
		z-index: 10050;
		pointer-events: none;
		border-radius: 10px;
		overflow: hidden;
		box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
		border: 2px solid #fff;
		will-change: left, top, width, height, opacity;
	}

	.pl-cart-flyer img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}

	.pl-cart-flyer--placeholder {
		background: linear-gradient(135deg, var(--main_color, #4caf50) 0%, var(--main_color_2, #66bb6a) 100%);
	}

	#cart.pl-cart-pulse > button,
	#cart.pl-cart-pulse > a {
		animation: pl-cart-icon-pulse 0.65s ease;
	}

	#cart.pl-cart-pulse > button:before,
	#cart.pl-cart-pulse > a:before {
		animation: pl-cart-icon-glow 0.65s ease;
	}

	#cart.pl-cart-pulse > button > span,
	#cart.pl-cart-pulse > a > span {
		animation: pl-cart-badge-bounce 0.55s ease;
	}

	@keyframes pl-cart-icon-pulse {
		0% {
			transform: scale(1);
		}
		35% {
			transform: scale(1.18);
		}
		65% {
			transform: scale(0.94);
		}
		100% {
			transform: scale(1);
		}
	}

	@keyframes pl-cart-icon-glow {
		0%,
		100% {
			background-color: #222;
		}
		35% {
			background-color: var(--main_color, #4caf50);
		}
	}

	@keyframes pl-cart-badge-bounce {
		0%,
		100% {
			transform: translate(0%, -50%) scale(1);
		}
		45% {
			transform: translate(0%, -50%) scale(1.45);
		}
	}
}
