/* Notify Me Feature Styles */

/* Bell Animation */
@keyframes ringBell {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-10deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

.btn-notify-me.is-animating .bell-icon {
  animation: ringBell 0.8s ease-in-out;
  transform-origin: top center;
}

/* Modal Overlay */
.notify-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 7, 9, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.notify-modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Modal Content */
.notify-modal {
  background: #ffffff;
  width: 90%;
  max-width: 420px;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  position: relative;
}

.notify-modal-overlay.is-active .notify-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Modal Header */
.notify-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.notify-modal__close:hover {
  background: rgba(0,0,0,0.05);
  color: #000;
}

.notify-modal__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(202, 32, 253, 0.1), rgba(242, 120, 57, 0.1));
  color: #ca20fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.notify-modal__icon svg {
  width: 28px;
  height: 28px;
}

.notify-modal__title {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #1a1a2e;
}

.notify-modal__desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

/* Modal Form */
.notify-form__group {
  margin-bottom: 16px;
}

.notify-form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.notify-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #f8f9fa;
}

.notify-form__input:focus {
  outline: none;
  background: #ffffff;
  border-color: #ca20fd;
  box-shadow: 0 0 0 4px rgba(202, 32, 253, 0.1);
}

.notify-form__input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.notify-form__prefix {
  position: absolute;
  left: 16px;
  color: #1a1a2e;
  font-weight: 600;
  font-size: 14px;
  pointer-events: none;
}

.notify-form__input--with-prefix {
  padding-left: 48px;
}

.notify-form__submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: linear-gradient(135deg, #ca20fd, #f27839);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.notify-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(242, 120, 57, 0.3);
}

.notify-form__submit:active {
  transform: translateY(0);
}
