/* ===== PUSH NOTIFICATION PERMISSION PROMPT ===== */

.push-prompt {
  position: fixed; bottom: -120px; left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  transition: bottom 0.4s ease;
}
.push-prompt-show {
  bottom: 20px;
}
.push-prompt-inner {
  display: flex; align-items: center; gap: 1rem;
  background: white;
  border-radius: 20px;
  padding: 1rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.04);
  border: 1.5px solid #E8ECF1;
  max-width: 500px;
}
.push-prompt-icon {
  font-size: 2rem; flex-shrink: 0;
}
.push-prompt-text strong {
  font-size: 0.92rem; font-weight: 900; display: block;
  color: #1e293b; margin-bottom: 0.15rem;
}
.push-prompt-text p {
  font-size: 0.78rem; color: #64748b; font-weight: 700;
  margin: 0; line-height: 1.5;
}
.push-prompt-btns {
  display: flex; flex-direction: column; gap: 0.4rem;
  flex-shrink: 0;
}
.push-yes {
  background: linear-gradient(135deg, #5b5ef4, #7209b7);
  color: white; border: none; border-radius: 12px;
  padding: 0.55rem 1rem; font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.82rem; cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 16px rgba(91,94,244,0.2);
  position: relative; overflow: hidden;
}
.push-yes::after {
  content: '';
  position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: rotate(45deg) translateX(-100%);
}
.push-yes:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(91,94,244,0.35);
}
.push-yes:hover::after {
  animation: pushShine 0.6s ease forwards;
}
@keyframes pushShine {
  to { transform: rotate(45deg) translateX(100%); }
}
.push-no {
  background: none; border: none; color: #94a3b8;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 0.75rem;
  cursor: pointer; padding: 0.3rem;
}
.push-no:hover { color: #64748b; }

@media (max-width: 540px) {
  .push-prompt-inner {
    flex-direction: column; text-align: center;
    padding: 1.25rem;
  }
  .push-prompt-btns {
    flex-direction: row; gap: 0.6rem;
    width: 100%; justify-content: center;
  }
  .push-yes { flex: 1; }
}
