/* Icône dans le menu */
.panier-icone-cercle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #1a2b57;
}
.panier-icone-cercle svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}
.panier-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #e63946;
    color: #fff;
    font-size: 11px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.panier-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 9998;
}
.panier-overlay.panier-ouvert { opacity: 1; visibility: visible; }

/* Tiroir : glisse de la droite vers la gauche */
.panier-tiroir {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 380px;
    max-width: 85vw;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,.15);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}
.panier-tiroir.panier-ouvert { transform: translateX(0); }
body.panier-no-scroll { overflow: hidden; }

.panier-tiroir-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px; border-bottom: 1px solid #eee;
}
#panier-fermer { background: none; border: none; font-size: 24px; cursor: pointer; color: #1a2b57; }

.panier-tiroir-contenu { flex: 1; overflow-y: auto; padding: 20px; }
.panier-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; position: relative; }
.panier-item-image img { width: 60px; height: 60px; object-fit: cover; border-radius: 6px; }
.panier-item-details { flex: 1; }
.panier-item-titre { margin: 0 0 6px; font-size: 14px; font-weight: 600; }
.panier-item-qte { display: flex; align-items: center; gap: 8px; }
.panier-item-qte button { width: 24px; height: 24px; border: 1px solid #ddd; background: #fff; border-radius: 4px; cursor: pointer; }
.panier-item-prix { margin: 6px 0 0; font-size: 13px; color: #1a2b57; font-weight: 600; }
.panier-item-supprimer { background: none; border: none; font-size: 18px; color: #999; cursor: pointer; position: absolute; top: 12px; right: 0; }

.panier-tiroir-footer { padding: 20px; border-top: 1px solid #eee; }
.panier-sous-total { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 14px; }
.panier-btn-commander, .panier-btn-voir { display: block; text-align: center; padding: 12px; border-radius: 6px; margin-bottom: 10px; text-decoration: none; font-weight: 600; }
.panier-btn-commander { background: #1a2b57; color: #fff; }
.panier-btn-voir { background: #f2f2f2; color: #1a2b57; }
.panier-vide { text-align: center; color: #999; padding: 40px 0; }