/* ============================================================================
   FAVORIS — CSS
   Réutilise les variables et composants de recherche.css
   ============================================================================ */

/* ── Header ──────────────────────────────────────────────────────────────── */
.fav-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0 1rem;
    background: var(--cream);
    border-bottom: 1px solid var(--border-light);
    gap: 0.75rem;
}

.fav-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.15s;
    flex-shrink: 0;
}

.fav-back-btn:hover {
    background: var(--border-light);
}

.fav-header-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
    flex: 1;
}

.fav-header-spacer {
    width: 36px;
    flex-shrink: 0;
}

/* ── Main ─────────────────────────────────────────────────────────────────── */
.fav-main {
    max-width: 680px;
    margin: 0 auto;
    padding: 1.25rem 1rem 3rem;
}

/* ── Compteur ─────────────────────────────────────────────────────────────── */
.fav-meta {
    margin-bottom: 1rem;
}

.fav-count {
    font-size: 0.78rem;
    color: var(--text-soft);
    font-weight: 400;
    min-height: 1.1em;
}

/* ── Message vide ─────────────────────────────────────────────────────────── */
.fav-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-soft);
}

.fav-empty-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.3;
    display: block;
}

.fav-empty-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 0.4rem;
}

.fav-empty-sub {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.fav-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    background: var(--green-mid);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}

.fav-empty-cta:hover {
    background: var(--green-deep);
}

/* ── Animation d'entrée des cards ────────────────────────────────────────── */
.annonce-card {
    animation: fav-card-in 0.3s ease both;
}

@keyframes fav-card-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}