/* assets/css/notifications.css — Professional Bell Opt-in Styles */
/* ============================================================================= */

.notif-bell-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: var(--clr-blue);
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(26, 62, 240, 0.25);
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.notif-bell-btn:hover {
  transform: scale(1.1) rotate(15deg);
  background: var(--clr-blue-dark);
  box-shadow: 0 15px 35px rgba(26, 62, 240, 0.35);
}

.notif-bell-btn.granted {
  background: #34c759; /* Green */
  box-shadow: 0 10px 25px rgba(52, 199, 89, 0.2);
}

.notif-bell-btn.denied {
  background: #ff3b30; /* Red */
  opacity: 0.6;
}

/* Subtle pulse animation */
@keyframes bell-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.notif-bell-btn:not(.granted):not(.denied) {
  animation: bell-pulse 2s infinite ease-in-out;
}

@media (max-width: 768px) {
  .notif-bell-btn {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
  }
}
