/* ====== סיידבר ====== */
#savedSidebar {
    position: fixed;
    top: 25%;
    right: -300px;
    width: 280px;
    height: auto;
    min-height: 70px;
    background: #f0aa1a;
    border: solid 1px #f27f10;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
    padding: 20px;
    transition: .4s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column; /* מתאים לרשימה */
    align-items: flex-start;
}

/* סיידבר פתוח */
#savedSidebar.open { right: 0; }

/* ====== כפתור צף ====== */
#savedToggle {
    display: flex; /* מוסתר/מופיע ע”פ JS */
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    position: fixed;
    right: 0px;
    top: 25%;
    background: #000000;
    color: #FFFFFF;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    z-index: 10000;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .2);
    transition: right .4s ease;
}
#savedToggle i{
    font-size: 45px;
    color: #f0aa1a;
}

/* כשהסיידבר פתוח, הכפתור זז יחד איתו */
#savedSidebar.open ~ #savedToggle {
    right: 280px; /* רוחב הסיידבר */
}

/* רשימת ספקים בסיידבר */
#savedList{
    width: 100%;
    margin: 10px 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 20px;
    text-shadow: 0 0 3px rgb(146 40 9 / 30%);
    flex-direction: column;
}
#savedList i{
    margin: 0 0 0 7px;
}
/* רשימת ספקים */
.savedVendor {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding: 10px 0;
    direction: rtl;
    border-bottom: solid 1px #FFF;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* תמונה */
.savedVendor img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

/* כפתור מחיקה – ריבוע אחיד */
.removeBtn { 
    display: flex;
    width: 20px;
    height: 20px;
    font-size: 13px;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
    user-select: none;
    justify-content: center;
    box-shadow: 0px 0px 3px #ffffff;
}

/* קישור שמור */
.savedVendor a.saved { 
    font-weight: 400; 
    color: #FFFFFF; 
    text-align: center;
    flex-grow: 1;
    margin: 0 10px;
}

/* ====== בר עליון ====== */
#topBar a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    font-weight: 600;
    position: relative;
}
.saveVendorBtn{
    max-width: 115px;
    background: #ffffff;
    border: solid 1px #3d9aff;
    color: #3d9aff;
    padding: 9px 12px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    outline: none;
}
.saveVendorBtn.saved{
    background: #fff3f6;
    border: solid 1px #ff6885;
    color: #ff4367;
}
.saveVendorBtn i{
    margin: 0 0 0 2px;
}

/* הלב */
#topBar #savedTopIcon {
    transition: color .3s;
    color: #ccc; /* אפור ברירת מחדל */
}
#topBar #savedTopIcon.active {
    color: #ff4367; /* אדום אם יש ספקים שמורים */
}

/* המונה הקטן */
#topBar #savedCounter {
    position: absolute;
    top: 12px;
    right: -3px;
    background: #3d9aff;
    color: #fff;
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    padding: 0 5px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    line-height: 18px;
    display: flex;
}
