/* ===== Notification Dots ===== */
.desktop-icon {
  position: relative;
}

.notif-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff3b30;
  border: 2px solid #ece9d8;
  z-index: 9999;
  pointer-events: none;
  display: none;
  animation: notif-pulse 1.8s ease-in-out infinite;
}

.notif-dot.active {
  display: block;
}

@keyframes notif-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,59,48,0.5); }
  60% { transform: scale(1.2); box-shadow: 0 0 0 5px rgba(255,59,48,0); }
}

#chat-fab .notif-dot,
#updates-fab .notif-dot {
  width: 7px;
  height: 7px;
  border-width: 1px;
  border-color: #1a1a2e;
  top: -1px;
  right: -1px;
}
