/* Vendor Card */
.vendor-card {
    position: relative;
    /*background: #f9f9f9;*/
    /*padding: 20px;*/
    border-radius: 8px;
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    text-align: center;
    overflow: hidden;
}

.vendor-card .balloons-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
}

.vendor-card .balloon {
    position: absolute;
    width: 30px;
    height: 50px;
    background: radial-gradient(circle, #ff6666, #ff3333);
    border-radius: 50% 50% 50% 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    animation: fly 3s linear infinite;
}

/* Tie for the balloon */
.vendor-card .balloon:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 2px;
    height: 15px;
    background: #555;
    transform: translateX(-50%);
}

@keyframes fly {
    0% {
        transform: translateY(100%) scale(1);
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-150%) scale(1.2);
        opacity: 0;
    }
}

/* Cart Icon */
.cart-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #004481;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.cart-icon .bounce {
    transform: scale(1.2);
}
