/**
 * Favorites - Минималистичные стили
 */

/* Кнопка избранного - минимализм */
.favorite-button {
    background: none;
    border: 1px solid #ddd;
    padding: 6px 12px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 3px;
}

.favorite-button:hover {
    border-color: #999;
    color: #333;
}

.favorite-button.active {
    border-color: #000;
    color: #000;
}

/* Счетчик */
.favorites-counter {
    font-size: 14px;
    color: #666;
}

.favorites-counter-value {
    font-weight: 600;
    color: #000;
}

/* Список - минимализм */
.favorites-list {
    max-width: 100%;
}

.fav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 16px;
}

.fav-item:last-child {
    border-bottom: none;
}

.fav-link {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 15px;
}

.fav-link:hover {
    color: #000;
}

.fav-remove,
.favorite-remove-btn {
    background: none;
    border: 1px solid #e0e0e0;
    width: 24px;
    height: 24px;
    padding: 0;
    color: #999;
    cursor: pointer;
    border-radius: 3px;
    font-size: 18px;
    line-height: 1;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fav-remove:hover,
.favorite-remove-btn:hover {
    border-color: #ff4444;
    color: #ff4444;
}

/* Пустой список */
.favorites-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
    font-size: 14px;
}

/* Кнопка очистки */
.fav-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.favorites-clear-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 8px 16px;
    color: #666;
    cursor: pointer;
    font-size: 13px;
    border-radius: 3px;
    transition: all 0.2s;
}

.favorites-clear-btn:hover {
    border-color: #999;
    color: #333;
}

/* Уведомления - минимализм */
.favorites-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 13px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s;
}

.favorites-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.favorites-notification-success {
    border-left: 3px solid #4CAF50;
}

.favorites-notification-error {
    border-left: 3px solid #f44336;
}

/* Разделы */
.favorites-section {
    margin-bottom: 40px;
}

.favorites-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

/* Адаптивность */
@media (max-width: 768px) {
    .fav-item {
        padding: 10px 0;
    }
    
    .fav-link {
        font-size: 14px;
    }
    
    .favorites-notification {
        left: 10px;
        right: 10px;
    }
}

