/* ============================================================
   NOTIFICATIONS.CSS - Système de notifications
   Version : V2.0 - Glass Ready
   ============================================================ */

/* ── Badge notification ── */
#notif-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 2px 5px;
  background: linear-gradient(135deg, #ff3b3b, #ef4444);
  color: white;
  font-size: 10px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  box-shadow: 0 0 0 2px var(--bg-primary, #0a0a0f);
}

#notif-badge.pulse {
  display: flex;
  animation: notifPulse 2s infinite;
}

@keyframes notifPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* ── Bouton notification ── */
.notif-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-md, 16px);
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-base, 0.3s ease);
}

.notif-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.notif-btn i {
  font-size: 20px;
}