/* ── NOTIFICACIONES ── */
.m26-notif-wrap { position: relative; }
.m26-notif-btn { background: var(--surface2); border: 1px solid var(--border); color: var(--text); padding: 6px 10px; border-radius: 8px; cursor: pointer; font-size: 16px; position: relative; display: flex; align-items: center; gap: 4px; }
.m26-notif-btn:hover { border-color: var(--gold); }
.m26-notif-count { background: var(--red); color: white; border-radius: 999px; font-size: 10px; font-weight: 700; padding: 1px 5px; min-width: 16px; text-align: center; }
.m26-notif-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 8px); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); width: 320px; max-height: 400px; overflow-y: auto; box-shadow: 0 8px 24px rgba(0,0,0,.4); z-index: 200; }
.m26-notif-dropdown.open { display: block; }
.m26-notif-header { display: flex; justify-content: space-between; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
.m26-notif-item { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background .15s; color: var(--text); }
.m26-notif-item:hover { background: var(--surface2); }
.m26-notif-unread { background: rgba(201,168,76,.05); border-left: 3px solid var(--gold); }
.m26-notif-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.m26-notif-msg { font-size: 13px; line-height: 1.4; }
.m26-notif-time { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

@media(max-width: 480px) {
  .m26-notif-dropdown { width: calc(100vw - 32px); right: -80px; }
}
