
.fav-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    transition: all 0.25s;
}
.fav-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fbbf24;
    border-radius: 0 2px 2px 0;
}
.fav-card:hover {
    box-shadow: 0 4px 16px rgba(245,158,11,0.1);
    border-color: #fde68a;
}

.fav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: #334155;
}

.fav-link:hover {
    background: #f8fafc;
}

.fav-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: #f59e0b;
    transition: all 0.2s;
}
.fav-card:hover .fav-icon {
    transform: scale(1.05);
}

.fav-info {
    flex: 1;
    min-width: 0;
}

.fav-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 2px;
}

.fav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fef9c3;
    color: #fbbf24;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.2s;
}
.fav-link:hover .fav-arrow {
    background: #f59e0b;
    color: #fff;
}

.empty-state-page {
    text-align: center;
    padding: 80px 20px;
    color: #94a3b8;
}

.empty-state-page .empty-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.empty-state-page p {
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 640px) {
    .page-header-inner { padding: 24px 0 20px; }
    .page-header h1 { font-size: 1.4rem; }
}
