/* Notification bell + dropdown. Lives in the LIGHT nav bar (.nav-actions,
   white/blurred), so the bell is styled like the gold outline buttons there;
   the badge uses red and the dropdown is a standard white popover. */

.notif-wrap { position: relative; display: inline-flex; }

.notif-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--gold, #B79B58);
  border-radius: 999px;
  background: transparent;
  color: var(--gold, #B79B58);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  transition: all 0.2s ease-out;
}
.notif-bell:hover { background: var(--gold-subtle, rgba(183,155,88,0.10)); }
.notif-bell-icon { font-size: 16px; line-height: 1; }

.notif-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e5484d;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 2px #fff;
}

.notif-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 24px);
  background: #fff;
  color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  z-index: 60;
}

.notif-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #eceef1;
  font-weight: 600;
  font-size: 14px;
}
.notif-read-all {
  background: none;
  border: none;
  color: var(--gold-dark, #9A8145);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.notif-read-all:hover { text-decoration: underline; }

.notif-list { max-height: 60vh; overflow-y: auto; }

.notif-empty {
  padding: 28px 16px;
  text-align: center;
  color: #8a8f98;
  font-size: 14px;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid #f1f2f4;
  padding: 12px 14px;
  cursor: pointer;
  font: inherit;
}
.notif-item:hover { background: #f7f8fa; }
.notif-item.unread { background: var(--gold-subtle, rgba(183,155,88,0.08)); }
.notif-item.unread:hover { background: var(--gold-glow, rgba(183,155,88,0.15)); }

.notif-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold, #B79B58);
}

.notif-item-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.notif-item-title { font-size: 14px; font-weight: 600; color: #1a1a1a; }
.notif-item-snippet {
  font-size: 13px;
  color: #5a6069;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.notif-item-time { font-size: 12px; color: #9aa0a8; margin-top: 2px; }
