
/* ==============================
   Product Quote Modal Styling
   ============================== */
#productQuoteModal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.callback-content {
  background: #fff;
  max-width: 600px;
  width: 90%;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  margin: 5% auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.callback-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}

.callback-close:hover {
  color: #333;
}

#quoteModalTitle {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #4b0082;
  text-align: center;
}

#quoteIntroText {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-bottom: 1rem;
}

#productQuoteForm .form-group {
  margin-bottom: 1.25rem;
}

#productQuoteForm label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333;
}

#productQuoteForm input,
#productQuoteForm textarea,
#productQuoteForm select {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: sans-serif;
}

#productQuoteForm input:focus,
#productQuoteForm textarea:focus,
#productQuoteForm select:focus {
  outline: none;
  border-color: #4b0082;
  box-shadow: 0 0 0 2px rgba(75, 0, 130, 0.2);
}

.button-orange {
  background-color: #f79e1b;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button-orange:hover {
  background-color: #e68e0f;
}

.callback-status {
  margin-top: 1rem;
  font-weight: bold;
  text-align: center;
}

.text-xs {
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to {opacity: 1; transform: scale(1);}
}
