/* Sepete Ekleme Animasyonu */

.cart-animation-item {
    position: fixed;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease-in-out;
    transform-origin: center center;
}

.cart-animation-item svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Sepet ikonuna vurgu animasyonu */
@keyframes cartPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.cart-icon-pulse {
    animation: cartPulse 0.3s ease-in-out;
}

