/* Popup moderne - glisse depuis droite */
#favorites-list {
    position: fixed;
    top: 50%;
    right: -500px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px 0 0 20px;
    padding: 25px 30px;
    z-index: 9999;
    width: 350px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transition: right 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

/* Affichage actif */
#favorites-list.show {
    right: 0;
    opacity: 1;
}

/* Titre */
#favorites-list span {
    font-size: 1.5rem;
    font-weight: 600;
    color: #252324;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}

/* Items */
.favorites-item {
    display: flex;
    align-items: center;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.favorites-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.favorites-item img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 12px;
}
.favorites-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: #252324;
}
.favorites-item-price {
    margin-left: auto;
    margin-left: auto;
    color: #5c3719;
    font-family: "Instrument Sans", sans-serif;
    font-weight: 500;
    font-size: 1.3125rem;
}

/* Bouton fermer */
#close-favorites {
    margin-top: 15px;
    width: 100%;
    background: #5c3719;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}
#close-favorites:hover {
    background: #e03b3f;
}

/* Icône active */
.favorite-icon.active svg path {
    stroke: #ff4d4f !important;
    fill: #ff4d4f !important;
}