.cart-flyer {
    position: fixed;
    pointer-events: none;
    z-index: 999999;
    width: 24px;
    height: 24px;
    border-radius: var(--radius-circle);
    background-color: var(--color-primary, var(--color-sale));
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0;
    transition: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-white);
    will-change: left, top, transform, opacity;
}

.cart-flyer svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
    display: block;
}

.cart-flyer.burst {
    opacity: 0.85;
    transform: translate(-50%, -50%) scale(1.2);
    transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.15s ease-out;
}

.cart-flyer.flying {
    transition: 
        left 1.4s cubic-bezier(0.4, 0, 0.2, 1), 
        top 1.4s cubic-bezier(0.1, 0.8, 0.2, 1), 
        transform 1.4s cubic-bezier(0.4, 0, 0.2, 1), 
        opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%) scale(0.6) rotate(360deg);
    opacity: 0.85;
}

.cart-flyer.fade-out {
    transition: 
        left 1.4s cubic-bezier(0.4, 0, 0.2, 1), 
        top 1.4s cubic-bezier(0.1, 0.8, 0.2, 1), 
        transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
        opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translate(-50%, -50%) scale(0.2) rotate(720deg);
    opacity: 0;
}

@keyframes cartBump {
    0% {
        transform: scale(1);
        scale: 1;
    }
    50% {
        transform: scale(1.3);
        scale: 1.3;
    }
    100% {
        transform: scale(1);
        scale: 1;
    }
}

.cart-bump {
    animation: cartBump 0.4s cubic-bezier(0.36, 0, 0.66, -0.56) both;
    display: inline-block;
}

.products .featured-product-card {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
}

