// SATMELI — Feed de notificaciones (el corazón de la app). function deltaInfo(price, target) { if (!target) return null; const pct = Math.round(((target - price) / target) * 100); if (pct >= 0) return { pct, under: true, label: `${pct}% bajo tu tope` }; return { pct: -pct, under: false, label: `${-pct}% sobre tu tope` }; } // ── Item de notificación ─────────────────────────────────────────────────── function NotifItem({ n, search, mode, onOpenSearch, onMarkRead, onGoMeli, i }) { const cat = search ? search.cat : 'tech'; const c = SAT_CATS[cat]; const delta = deltaInfo(n.price, n.target); const unread = !n.read; const desktop = mode === 'desktop'; return (