/* ----- VARIABLES ----- */
@font-face {
  font-family: "Agenor Neue";
  /* change for live */
  src: url("../../fonts/AgenorNeue-Regular.woff2") format("woff2"), url("../../fonts/AgenorNeue-Regular.woff") format("woff");
}
/* --------- ALL STEPS --------*/
.quote .content h2 {
  text-align: center;
}

/* --- progress bar --- */
.quote-progress__bar {
  width: 100%;
  height: 6px;
  background: #f7f7f7;
  border-radius: 999px;
  overflow: hidden;
}

.quote-progress__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: #06b9c6;
  transition: width 0.3s ease;
}

.quote-progress {
  margin: 0 auto 20px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: space-between;
}
.quote-progress__bar {
  width: 100%;
  height: 10px;
  background: #f7f7f7;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 6px;
}
.quote-progress__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: #06b9c6;
  transition: width 0.3s ease;
}

#quoteProgressText {
  display: inline-block;
  margin: 0 10px 0 0;
  border: 0px solid rgba(6, 185, 198, 0.25);
  border-radius: 999px;
  color: #06b9c6;
  font-size: 1em;
}

/* --- quote steps --- */
.quote-step {
  display: none;
  margin: 0 auto;
  text-align: center;
}
.quote-step.active {
  display: block;
}
.quote-step h2 {
  margin-bottom: 35px;
}

.quote-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-option {
  display: block;
  cursor: pointer;
}
.quote-option input {
  display: none;
}
.quote-option__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 5px 15px;
  border: 2px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  transition: 0.25s ease;
}
.quote-option img {
  display: none;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.quote-option__label {
  font-weight: 400;
}
.quote-option:hover .quote-option__card {
  border-color: #06b9c6;
}
.quote-option input:checked + .quote-option__card {
  border-color: #06b9c6;
  background: rgba(6, 185, 198, 0.08);
}

.quote-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 500px;
  margin: 40px auto 0;
}

@media (min-width: 768px) {
  .quote-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, 150px);
    justify-content: center;
    gap: 20px;
  }
  .quote-option__card {
    flex-direction: column;
    justify-content: center;
    min-height: 150px;
    max-width: 150px;
    padding: 0;
    border-radius: 22px;
    text-align: center;
  }
  .quote-option__label {
    display: none;
  }
  .quote-option img {
    display: block;
    width: 150px;
    height: 150px;
  }
}
/* -- answers -- */
.answers__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  .answers__header {
    flex-direction: row;
  }
}
.answers__header h3 {
  margin: 0;
}

.answers {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  justify-content: center;
  margin-bottom: 40px;
}
.answers img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .answers img {
    width: 65px;
    height: 65px;
  }
}

/* --- grid of all cards --- */
.boiler-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .boiler-results-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.manual-quote-required {
  text-align: center;
}

/* --- card details --- */
.boiler-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #f7f7f7;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  align-items: start;
}
@media (min-width: 1024px) {
  .boiler-card {
    grid-template-columns: 20% 55% 25%;
    align-items: stretch;
  }
}
.boiler-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px;
}
.boiler-card__image img {
  width: 80%;
}
@media (min-width: 768px) {
  .boiler-card__image img {
    width: 100%;
  }
}
.boiler-card__image img.badge {
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
.boiler-card__image img.avail {
  width: auto;
  height: auto;
  position: absolute;
  top: 20px;
  right: 0;
}
.boiler-card__image img.hydrogen {
  width: auto;
  height: auto;
  position: absolute;
  top: 80px;
  right: 0;
}
.boiler-card__image img.hive, .boiler-card__image img.nest, .boiler-card__image img.pro {
  width: 80%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .boiler-card__image img.hive, .boiler-card__image img.nest, .boiler-card__image img.pro {
    width: auto;
  }
}
.boiler-card__content {
  background: #f7f7f7;
  padding: 0px;
  height: 100%;
}
.boiler-card__title {
  background-color: #06b9c6;
  padding: 10px 20px;
}
.boiler-card__title h3 {
  font-size: 1em;
  color: #fff;
  margin: 0;
}
.boiler-card__description {
  padding: 20px;
}
.boiler-card__description .idealfor {
  font-size: 1em;
  font-weight: 400;
}
@media (min-width: 768px) {
  .boiler-card__description .idealfor {
    font-size: 1.6em;
  }
}
.boiler-card__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .boiler-card__features {
    grid-template-columns: 35% 65%;
  }
}
.boiler-card__features h4, .boiler-card__features summary {
  font-size: 1em;
  color: #FF0083;
  font-weight: 400;
  margin: 0 0 20px 0;
}
.boiler-card__features p, .boiler-card__features li {
  font-size: 1em;
  margin: 0;
}
.boiler-card__features .features-accordion summary {
  list-style: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .boiler-card__features .features-accordion summary {
    cursor: default;
  }
}
.boiler-card__features .features-accordion summary::-webkit-details-marker {
  display: none;
}
.boiler-card__features .features-accordion .heading {
  margin-bottom: 0;
  position: relative;
  padding-right: 25px;
}
.boiler-card__features .features-accordion .heading::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
}
.boiler-card__features .features-accordion[open] .heading::after {
  content: "-";
}
@media (min-width: 769px) {
  .boiler-card__features .features-accordion {
    display: block;
  }
  .boiler-card__features .features-accordion .heading::after {
    display: none;
  }
}
.boiler-card__price {
  padding: 20px;
  text-align: center;
}
.boiler-card__price h3 {
  font-size: 1.6em;
  color: #555;
  margin: 0;
}
.boiler-card__price h4 {
  font-size: 1.6em;
  color: #06b9c6;
  margin: 0;
}
.boiler-card__price p, .boiler-card__price li {
  margin: 0;
}
.boiler-card__price ul {
  list-style: none;
  text-align: center;
  padding-left: 0;
  margin-left: 0;
}
.boiler-card__price button {
  width: 100%;
  margin: 10px 0 0;
}
.boiler-card .total {
  font-size: 2em;
  font-weight: 500;
  color: #FF0083;
  margin-bottom: 15px;
}

.manual-review .boiler-card__image,
.manual-review .boiler-card__price {
  display: none;
}

@media (min-width: 1024px) {
  .manual-review {
    grid-template-columns: 1fr;
  }
}

.upgrades {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  grid-template-areas: "image" "details" "buttons";
}
@media (min-width: 1024px) {
  .upgrades {
    grid-template-columns: 180px 1fr;
    grid-template-areas: "image details" "image buttons";
  }
}
.upgrades__image {
  grid-area: image;
}
.upgrades__image img {
  width: 150px;
  height: auto;
  object-fit: contain;
}
.upgrades__details {
  grid-area: details;
}
.upgrades__details h2 {
  font-size: 1.6em;
  color: #FF0083;
  margin: 0 0 10px 0;
}
.upgrades__details .price {
  font-size: 1em;
  color: #06b9c6;
}
.upgrades__details p, .upgrades__details li {
  margin: 0;
}
.upgrades__buttons {
  grid-area: buttons;
  text-align: right;
}

.included-badge,
.upgrade-toggle,
.upgrade-remove {
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
}

.included-badge {
  display: inline-block;
  background: #28a745;
  color: #fff;
}

.upgrade-toggle {
  background: #06b9c6;
  color: #fff;
}

.is-disabled .upgrade-toggle {
  background: #999;
  color: #fff;
  cursor: not-allowed;
}

.is-added .upgrade-toggle {
  background: #28a745;
}

.upgrade-remove {
  background: #aaa;
  color: #fff;
}

.upgrade-remove:disabled {
  opacity: 0.5;
}

.is-disabled {
  opacity: 0.45;
}

.is-disabled .upgrade-toggle {
  cursor: not-allowed;
}

.quote-summary-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.quote-price {
  margin-top: 15px;
  font-size: 1.4rem;
}

.quote-price strong {
  color: #06b9c6;
}

@media (max-width: 768px) {
  .quote-summary-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.customer-details-page .quote-container {
  margin: 0 auto;
}
.customer-details-page .intro-text {
  max-width: 680px;
  margin-bottom: 24px;
}
.customer-details-page .form-section {
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border: 0px solid #e5e7eb;
  border-radius: 14px;
}
.customer-details-page .form-section h2 {
  font-size: 1.6em;
  margin: 0 0 18px;
}
.customer-details-page .form-section h3 {
  font-size: 1.6em;
  margin: 0 0 18px;
}
.customer-details-page .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.customer-details-page label {
  display: block;
  margin-bottom: 6px;
}
.customer-details-page input[type=text],
.customer-details-page input[type=email],
.customer-details-page input[type=tel],
.customer-details-page input[type=password],
.customer-details-page select {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #cfd4dc;
  font-size: 1rem;
}
.customer-details-page input:focus,
.customer-details-page select:focus {
  outline: none;
  border-color: #1f6feb;
  box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.12);
}
.customer-details-page .email-lookup-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}
.customer-details-page .form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
}
.customer-details-page .form-message.success {
  background: #e8f7ee;
  border: 1px solid #9dd6b1;
}
.customer-details-page .form-message.error {
  background: #fdeaea;
  border: 1px solid #e2a0a0;
}
.customer-details-page .welcome-back {
  margin-bottom: 24px;
  padding: 22px;
  background: #f0f8ff;
  border: 1px solid #cfe0ff;
  border-radius: 14px;
}
.customer-details-page .welcome-back h2 {
  margin: 0 0 8px;
}
.customer-details-page .welcome-back p {
  margin: 0;
}
.customer-details-page .property-list {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}
.customer-details-page .radio-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border: 1px solid #d8dde6;
  border-radius: 12px;
  cursor: pointer;
}
.customer-details-page .radio-card:hover {
  border-color: #1f6feb;
}
.customer-details-page .form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}
@media (max-width: 700px) {
  .customer-details-page .form-grid,
  .customer-details-page .email-lookup-row {
    grid-template-columns: 1fr;
  }
  .customer-details-page .form-actions {
    flex-direction: column;
  }
}

.quote-confirmation {
  text-align: center;
}
.quote-confirmation .confirmation {
  background: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 14px;
  height: 88%;
}
.quote-confirmation .confirmation h2 {
  font-size: 1.6em;
  color: #132e49;
  margin: 0;
}
.quote-confirmation .confirmation ul {
  text-align: center;
  list-style: none;
  color: #06b9c6;
  margin: 0 0 20px 0;
  padding: 0;
}

.next {
  text-align: center;
  padding-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
}
@media (min-width: 768px) {
  .next {
    width: 70%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}
.next h3 {
  font-size: 1.6em;
}
@media (min-width: 768px) {
  .next h3 {
    font-size: 2em;
  }
}
.next .seeingyou {
  font-size: 1.6em;
  text-align: center;
  margin: 0 auto 10px;
}

.price-breakdown {
  text-align: left;
  display: none;
  border: 1px solid #e5e5e5;
  padding: 10px;
}

/*# sourceMappingURL=quote.css.map */
