/**
 * Styles pour le bouton panier personnalisé #cart-button
 */

#cart-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Badge compteur - style moderne */
#cart-button .cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background-color: var(--e-global-color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    line-height: 1;
}

/* Animation au changement */
@keyframes cartBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

#cart-button .cart-count {
    animation: cartBounce 0.3s ease;
}

