/* dark overlay */
.enquiry-modal-overlay {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);

  display: none; /* toggled to flex in JS */
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

/* modal card */
.enquiry-modal {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.4), 0 0 0 1px rgba(0, 0, 0, 0.05);
  padding: 1.5rem 1.5rem 1.25rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  color: #0f172a;
}

/* close (X) button */
.enquiry-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: transparent;
  border: 0;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
  color: #6b7280;
  cursor: pointer;
}
.enquiry-close-btn:hover {
  color: #111827;
}

/* heading */
.enquiry-title {
  margin: 0 2rem 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.3;
}

.enquiry-subtext {
  margin: 0 2rem 1rem 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7280;
}

/* form fields */
.enquiry-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.enquiry-label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #374151;
  margin-bottom: 0.4rem;
}

.enquiry-input {
  width: 100%;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #111827;
  background: #fff;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.6rem 0.75rem;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
}

.enquiry-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25),
    0 1px 2px rgba(15, 23, 42, 0.08);
}

/* readonly product field style */
.enquiry-input-readonly {
  background: #f9fafb;
  color: #4b5563;
  cursor: not-allowed;
  font-weight: 500;
}

/* actions row */
.enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.enquiry-submit-btn {
  appearance: none;
  border: 0;
  border-radius: 0.6rem;
  /* background: linear-gradient(90deg, #5b21b6 0%, #7c3aed 50%, #a21caf 100%); */
  background: linear-gradient(135deg, #0072ff 0%, #00c6ff 40%, #00ff99 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  line-height: 1.2;
  padding: 0.75rem 1rem;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.35);
  transition: all 0.2s ease;
}
.enquiry-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(124, 58, 237, 0.45);
}

.enquiry-cancel-btn {
  appearance: none;
  background: transparent;
  border-radius: 0.6rem;
  border: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  color: #6b7280;
  padding: 0.75rem 1rem;
  cursor: pointer;
}
.enquiry-cancel-btn:hover {
  color: #111827;
}

/* flash after submit */
.pd-flash-success {
  max-width: 900px;
  margin: 0 auto 1rem auto;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  border-radius: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.4;
  padding: 0.75rem 1rem;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.15);
}
