/* ============================================================
   MODULE 14 - Notification Bell + Center  (.sh-bell / .sh-notif)
   Premium / luxury treatment: gradient header, gold accents,
   elevated cards, gender-neutral and conversion-focused.
   ============================================================ */
.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 (slides in from the right) */
.sh-notif{position:fixed;inset:0;z-index:1200;display:none;justify-content:flex-end;background:rgba(10,16,35,.5);backdrop-filter:blur(4px)}
.sh-notif.open{display:flex}
.sh-notif__panel{width:100%;max-width:440px;height:100%;background:var(--sh-bg-soft,#f6f7fb);box-shadow:-14px 0 50px rgba(10,16,35,.4);display:flex;flex-direction:column;animation:sh-notif-in .24s ease}
@keyframes sh-notif-in{from{transform:translateX(28px);opacity:.3}to{transform:none;opacity:1}}

/* luxury gradient header with a gold hairline */
.sh-notif__head{display:flex;align-items:center;gap:10px;padding:18px 18px;color:#fff;
  background:linear-gradient(120deg,#0c1730 0%,#152a5c 55%,#1c357a 100%);
  border-bottom:2px solid var(--sh-gold,#e8b53d);position:relative}
.sh-notif__head::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:2px;
  background:linear-gradient(90deg,transparent,var(--sh-gold,#e8b53d),transparent);opacity:.7}
.sh-notif__title{font-weight:800;font-size:16.5px;flex:1;letter-spacing:.2px}
.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:20px;padding:7px 12px;cursor:pointer;transition:.15s}
.sh-notif__mark:hover{background:var(--sh-gold,#e8b53d);color:#2a1e00}
.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:16px 14px}
.sh-notif__empty{text-align:center;color:var(--sh-muted);padding:64px 20px;font-size:14px}

.sh-notif__group{margin-bottom:20px}
.sh-notif__gtitle{font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1px;color:var(--sh-muted);margin:0 6px 10px;display:flex;align-items:center;gap:8px}
.sh-notif__gtitle::after{content:"";flex:1;height:1px;background:linear-gradient(90deg,var(--sh-line),transparent)}

/* elevated notification cards */
.sh-notif__row{display:flex;gap:13px;align-items:flex-start;width:100%;text-align:left;
  border:1px solid var(--sh-line);background:#fff;border-radius:15px;padding:14px 14px;margin-bottom:10px;
  cursor:pointer;font-family:inherit;transition:transform .12s ease,box-shadow .15s ease,border-color .15s ease;
  box-shadow:0 1px 3px rgba(10,16,35,.05)}
.sh-notif__row:hover{border-color:rgba(21,42,92,.35);box-shadow:0 8px 22px rgba(10,16,35,.12);transform:translateY(-1px)}
.sh-notif__row:active{transform:translateY(0)}
/* unread: gold left accent + soft gold wash */
.sh-notif__row.unread{border-left:3px solid var(--sh-gold,#e8b53d);
  background:linear-gradient(100deg,rgba(232,181,61,.11),#fff 62%);box-shadow:0 4px 16px rgba(232,181,61,.14)}

/* icon in a rounded gradient chip */
.sh-notif__ic{width:44px;height:44px;flex:0 0 44px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:21px;background:linear-gradient(135deg,#eef2ff,#e5ecfb);box-shadow:inset 0 0 0 1px rgba(15,27,61,.06)}
.sh-notif__row.unread .sh-notif__ic{background:linear-gradient(135deg,#fdf3d6,#f7e6ac)}
.sh-notif__txt{flex:1;min-width:0;display:flex;flex-direction:column;gap:3px}
.sh-notif__t{font-weight:800;font-size:14.5px;color:var(--sh-navy,#0f1b3d);line-height:1.3}
.sh-notif__b{font-size:12.8px;color:#54607a;line-height:1.5}
.sh-notif__meta{flex:0 0 auto;font-size:11px;color:var(--sh-muted);display:flex;flex-direction:column;align-items:flex-end;gap:6px;white-space:nowrap}
.sh-notif__dot{width:9px;height:9px;border-radius:50%;background:var(--sh-gold,#e8b53d);display:inline-block;box-shadow:0 0 0 3px rgba(232,181,61,.25)}
@media(max-width:480px){.sh-notif__panel{max-width:100%}}
