/* Style pour le panier mobile */
.mobile-cart {
    display: none; /* Caché par défaut */
}

/* Afficher uniquement en mode responsive */
@media (max-width: 768px) {
    .mobile-cart {
        display: flex;
        position: fixed;
        top: 15px;
        right: 60px; /* Espace pour le bouton hamburger */
        z-index: 1100;
        background-color: #fff;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        padding: 8px 12px;
        align-items: center;
    }
    
    .mobile-cart a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
    }
    
    .mobile-cart .cart-icon {
        margin-right: 5px;
        position: relative;
    }
    
    .mobile-cart .cart-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: #6AC4CC;
        color: white;
        border-radius: 50%;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
    }
    
    .mobile-cart .cart-total {
        font-weight: bold;
    }
}