/* ============================================================
   MODULE 14 — Notification Bell + Center  (.sh-bell / .sh-notif)
   ============================================================ */
.sh-bell{position:relative;border:0;background:transparent;cursor:pointer;font-size:20px;line-height:1;padding:6px 8px;border-radius:10px}
.sh-bell:hover{background:rgba(255,255,255,.12)}
.sh-bell__badge{position:absolute;top:-2px;right:-2px;min-width:18px;height:18px;padding:0 5px;border-radius:20px;background:#e10600;color:#fff;font-size:11px;font-weight:800;display:flex;align-items:center;justify-content:center;box-shadow:0 0 0 2px var(--sh-navy)}

/* full-page center */
.sh-notif{position:fixed;inset:0;z-index:1200;display:none;justify-content:flex-end;background:rgba(10,16,35,.5);backdrop-filter:blur(3px)}
.sh-notif.open{display:flex}
.sh-notif__panel{width:100%;max-width:440px;height:100%;background:var(--sh-bg,#f6f7fb);box-shadow:-14px 0 50px rgba(10,16,35,.35);display:flex;flex-direction:column;animation:sh-notif-in .22s ease}
@keyframes sh-notif-in{from{transform:translateX(24px);opacity:.4}to{transform:none;opacity:1}}
.sh-notif__head{display:flex;align-items:center;gap:10px;padding:16px 18px;background:var(--sh-navy);color:#fff}
.sh-notif__title{font-weight:800;font-size:16px;flex:1}
.sh-notif__tools{display:flex;align-items:center;gap:6px}
.sh-notif__mark{border:0;background:rgba(255,255,255,.16);color:#fff;font-family:inherit;font-size:12px;font-weight:700;border-radius:8px;padding:6px 10px;cursor:pointer}
.sh-notif__mark:hover{background:rgba(255,255,255,.26)}
.sh-notif__x{border:0;background:transparent;color:#fff;font-size:24px;line-height:1;cursor:pointer;padding:0 4px}
.sh-notif__body{flex:1;overflow-y:auto;padding:14px}
.sh-notif__empty{text-align:center;color:var(--sh-muted);padding:60px 20px;font-size:14px}
.sh-notif__group{margin-bottom:18px}
.sh-notif__gtitle{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px;color:var(--sh-muted);margin:0 4px 8px}
.sh-notif__row{display:flex;gap:12px;align-items:flex-start;width:100%;text-align:left;border:1px solid var(--sh-line);background:#fff;border-radius:12px;padding:12px 13px;margin-bottom:8px;cursor:pointer;font-family:inherit;transition:.12s}
.sh-notif__row:hover{border-color:var(--sh-navy);box-shadow:0 4px 14px rgba(10,16,35,.08)}
.sh-notif__row.unread{background:linear-gradient(90deg,rgba(21,86,214,.06),#fff)}
.sh-notif__ic{font-size:20px;line-height:1.2;flex:0 0 auto}
.sh-notif__txt{flex:1;min-width:0;display:flex;flex-direction:column;gap:2px}
.sh-notif__t{font-weight:700;font-size:14px;color:var(--sh-ink)}
.sh-notif__b{font-size:12.5px;color:#555;line-height:1.45}
.sh-notif__meta{flex:0 0 auto;font-size:11px;color:var(--sh-muted);display:flex;align-items:center;gap:6px;white-space:nowrap}
.sh-notif__dot{width:8px;height:8px;border-radius:50%;background:#e10600;display:inline-block}
@media(max-width:480px){.sh-notif__panel{max-width:100%}}
