/* ── Favoris badge ── */
.badge-favori {
    display: inline-flex; align-items: center; gap: 3px;
    background: #fef3c7; color: #d97706;
    border: 1px solid #fbbf24; border-radius: 99px;
    font-size: 10px; font-weight: 700; padding: 1px 6px;
    margin-top: 3px;
}
.dark-mode .badge-favori { background: #451a03; color: #fbbf24; border-color: #92400e; }

/* ── Icône ♥ sur la carte (favori) ── */
.marker-fav-dot {
    position: absolute; top: -4px; right: -4px;
    width: 12px; height: 12px;
    background: #f59e0b; border: 2px solid #fff; border-radius: 50%;
}

/* ── Onglet favoris ── */
#tabFavoris { position: relative; }

/* ── Carte produit favori ── */
.produit-card {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-bottom: 1px solid var(--border);
    cursor: pointer; transition: background .15s;
}
.produit-card:hover, .produit-card.active { background: var(--hover); }
.produit-icon {
    width: 40px; height: 40px; border-radius: 8px;
    background: var(--bg-2); display: flex; align-items: center;
    justify-content: center; font-size: 20px; flex-shrink: 0;
}
.produit-prix {
    font-size: 12px; font-weight: 700; color: var(--primary);
    margin-top: 2px;
}

/* ── Section titre dans la liste ── */
.list-section-title {
    padding: 8px 14px 4px;
    font-size: 10px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--txt-3);
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

/* ── Bouton favori dans popup ── */
.popup-btn-fav {
    background: none; border: 1px solid var(--border);
    border-radius: 6px; padding: 5px 10px;
    font-size: 11px; cursor: pointer; color: var(--txt-2);
    transition: background .15s, color .15s, border-color .15s;
    display: inline-flex; align-items: center; gap: 5px;
}
.popup-btn-fav.is-fav { color: #f59e0b; border-color: #f59e0b; background: #fef3c7; }
.dark-mode .popup-btn-fav.is-fav { background: #451a03; }