/* ==========================================
   FAVORITES COMPONENT STYLES
   ========================================== */

.favorites-container {
    margin-top: 24px;
}

/* Favorite Button */
.favorite-button {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    text-decoration: none;
    cursor: pointer;
}

.favorite-button i {
    font-size: 14px;
    -webkit-text-stroke: 1px #333;
    -webkit-text-fill-color: white;
    transition: all 0.2s ease;
}

.favorite-button.active i {
    -webkit-text-stroke: 0;
    -webkit-text-fill-color: #E30613;
    color: #E30613;
}

.toast {
    position: fixed;
    top: 140px;
    right: 80px;
    background: #F0F8E8;
    border: 1px solid #C4D99F;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    min-width: 440px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rebranding-icon-notification-success:before {
    content: "\e902";
    color: #5d9a16;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

.toast-icon {
    color: #5D9A16;
    font-size: 18px;
    flex-shrink: 0;
    font-family: 'rebranding-icomoon' !important;
    font-style: normal;
    font-weight: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.toast-icon:before {
    content: "\e902";
    color: #5d9a16;
}

.toast-message {
    color: #5D9A16;
    font-size: 14px;
    line-height: 20px;
    flex-grow: 1;
}

.toast-close {
    background: none;
    border: none;
    color: #5D9A16;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Favorites Empty State */
.favorites-empty-state {
    text-align: center;
    color: #000000;
}

.favorites-empty-state p {
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0 124px;
    text-align: left;
}

.favorites-empty-state a {
    color: #0057B8;
    text-decoration: underline !important;
}
