/**
 * Style pour la pastille du panier
 */
#icon-cart .fl-icon a {
    position: relative;
    display: inline-block;
}

#icon-cart .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #f9af10;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    z-index: 10;
    transition: all 0.3s ease;
}

#icon-cart .cart-badge.empty {
    display: none;
}

/* Animation lors de l'ajout au panier */
#icon-cart .cart-badge.pulse {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
