/* ====================================
SUDANADS FAVORITES
==================================== */

.favorites-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.favorites-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111827;
}

.favorites-page-subtitle {
    color: #6b7280;
    margin-bottom: 30px;
}

.empty-state {
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    padding: 60px 30px;
    text-align: center;
    background: #fafafa;
}

.empty-state-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.empty-state-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.empty-state-text {
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Future ad grid */

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Future favorite button */

.favorite-btn {
    cursor: pointer;
    border: none;
    background: transparent;
    font-size: 24px;
    transition: transform .2s ease;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #ef4444;
}