/* Push Notification Styles */

/* Push notification card in contact section */
.push-card {
  border: 1px solid var(--border);
}

.push-card .contact-icon svg {
  stroke: var(--logo-orange);
}

.push-status {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.5rem 0 1rem;
  line-height: 1.4;
}

.push-toggle-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.7rem 1rem;
}

/* Notification permission prompt overlay */
.notification-prompt {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.notification-prompt.visible {
  opacity: 1;
  pointer-events: all;
}

.notification-prompt-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  max-width: 360px;
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.3s;
}

.notification-prompt.visible .notification-prompt-inner {
  transform: translateY(0);
}

.notification-prompt-inner h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.notification-prompt-inner p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.notification-prompt-inner .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.notification-prompt-inner .btn-secondary {
  width: 100%;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
}

/* Bell animation for notification icon */
@keyframes bell-ring {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(10deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-5deg); }
  70% { transform: rotate(2deg); }
  80% { transform: rotate(-2deg); }
}

.push-card:hover .contact-icon svg {
  animation: bell-ring 1s ease;
}

/* Toast notification enhanced for push */
.toast.push-toast {
  border-left: 3px solid var(--logo-orange);
}

/* Badge on app icon (simulated via CSS for demo) */
.app-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--logo-orange);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
