
#notification-bell {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
}
#notification-bell svg { pointer-events: none; }
#notification-bell #badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 12px;
  display: none;
}
#notification-drawer {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 340px;
  max-height: 400px;
  overflow-y: auto;
  background: #f5f5f5;
  color: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  padding: 16px;
  border-radius: 12px;
  z-index: 9999;
  font-family: sans-serif;
  display: none;
}
#notification-drawer.dark {
  background: #222;
  color: #fff;
}
#notification-drawer h3 {
  margin: 0 0 12px;
  font-weight: bold;
  text-transform: uppercase;
}
.notification-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.notification-item img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
}
