/* ============ Page-specific: request-a-quote.html ============ */
/* Depends on the design tokens defined in css/style.css and the shared layout in css/page.css */

.page-hero {
  background:
    linear-gradient(180deg, rgba(6,7,5,0.72) 0%, rgba(6,7,5,0.82) 100%),
    url('../assets/quote-hero.jpg');
  background-size: cover;
  background-position: center;
}

.page-hero-small {
  padding: 130px 0 110px;
  text-align: center;
}
.page-hero-small .kicker {
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.page-hero-small h1 { font-size: 3.6rem; }

@media (max-width: 800px) {
  .page-hero-small { padding: 90px 0 70px; }
  .page-hero-small h1 { font-size: 2.6rem; }
}

.quote-section {
  background: var(--black);
  padding: 100px 0 150px;
}
.quote-container {
  max-width: 760px;
}
.quote-field-label {
  display: block;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-top: -2px;
}

.quote-container .contact-form {
  gap: 22px;
}
.quote-container .contact-form input {
  font-size: 1.1rem;
  padding: 20px 20px;
}
.quote-container .contact-form button[type="submit"] {
  font-size: 1.2rem;
  padding: 22px 40px;
}

.product-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-row:not(:first-child) {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact-form button.remove-product-btn {
  position: absolute;
  top: 12px;
  right: 0;
  width: 26px;
  height: 26px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.contact-form button.remove-product-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.add-product-btn {
  align-self: stretch;
  justify-content: center;
  font-size: 1rem;
  padding: 16px 22px;
  margin: 6px 0 8px;
}
