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

/* 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;
}

/* Favorite Toast Notification */
.favorite-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;
}

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

.favorite-toast-icon {
    color: #5D9A16;
    font-size: 18px;
    flex-shrink: 0;
}

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

.favorite-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;
    padding: 80px 20px;
    color: #666;
    margin-left: 20px;
    margin-right: 40px;
}

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

@media (max-width: 768px) {
    .favorites-empty-state {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .favorites-empty-state {
        margin-left: 10px;
        margin-right: 10px;
    }
}

