.flying-cart-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.flying-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #333;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s ease;
}

.flying-cart:hover {
    background-color: #555;
    transform: scale(1.1);
}

.cart-icon {
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff0000;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Animation when item is added */
.flying-cart.added {
    animation: bounce 0.5s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}