/* Price alert modal */
.price-alert-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.price-alert-modal.show {
  opacity: 1;
  pointer-events: auto;
}
.price-alert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}
.price-alert-modal-dialog {
  position: relative;
  width: min(420px, calc(100% - 2rem));
  background: #fff;
  border-radius: 12px;
  padding: 1.35rem 1.4rem 1.25rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}
.price-alert-modal-dialog h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #1a1a2e;
}
.price-alert-current { color: #64748b; margin: 0 0 1rem; font-size: 0.9rem; }
.price-alert-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.85rem;
}
.price-alert-label input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.95rem;
}
.price-alert-check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #475569;
  margin: 0 0 0.85rem;
}
.alert-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}
.price-alert-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.price-alert-submit,
.price-alert-cancel {
  flex: 1;
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  border: 1px solid #e2e8f0;
}
.price-alert-submit {
  background: #7C4A85;
  color: #fff;
  border-color: #7C4A85;
}
.price-alert-cancel {
  background: #fff;
  color: #64748b;
}
.price-alert-msg {
  font-size: 0.85rem;
  margin: 0 0 0.65rem;
}
.price-alert-msg.error { color: #b91c1c; }
.price-alert-msg.success { color: #15803d; }

.footer-newsletter {
  margin-top: 1.25rem;
}
.footer-newsletter h4 {
  font-size: 0.95rem;
  margin: 0 0 0.5rem;
}
.footer-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-newsletter-form input[type="email"] {
  flex: 1 1 180px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.5rem 0.7rem;
  background: #fff;
}
.footer-newsletter-form button {
  border: none;
  border-radius: 8px;
  background: #7C4A85;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
}
.newsletter-message {
  width: 100%;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}
.newsletter-message.success { color: #86efac; }
.newsletter-message.error { color: #fecaca; }
