/*
Theme Name: Irecco Child
Author: WebGeniusLab
Author URI: http://webgeniuslab.net
Description: -
Version: 1.0
Template: irecco
Text Domain:  irecco-child
*/

.product-quote-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Inter", sans-serif;
}

.product-quote-form h2 {
  margin-bottom: 15px;
  font-weight: 600;
}

.product-quote-form h4 {
  margin: 25px 0 8px;
  font-size: 1rem;
  font-weight: 600;
}

.product-quote-form label {
  display: block;
  margin-top: 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-quote-form input,
.product-quote-form select,
.product-quote-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  font-size: 0.95rem;
  background: #fafafa;
}

.product-quote-form input:focus,
.product-quote-form select:focus,
.product-quote-form textarea:focus {
  border-color: #f9a825;
  outline: none;
}

.product-quote-form textarea {
  height: 110px;
}

.product-quote-form .consent {
  margin-top: 15px;
  font-size: 0.85rem;
}

.product-quote-form [type="submit"] {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: #f9a825;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* Bold labels */
.product-quote-form label{
  font-weight: 600!important;
}

/* Greyed-out readonly fields */
.product-quote-form #product-title,
.product-quote-form #product-brand {
  background: #f1f1f1!important;     /* light grey */
  color: #555!important;             /* darker text grey */
  border: 1px solid #ccc!important;
  border-radius: 6px!important;
  cursor: not-allowed!important;     /* indicates not editable */
}