/* Hot tub inventory section — outcome-focused cards */
.ht-inventory-section {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 24px 16px 8px;
}

.ht-inventory-section h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  color: var(--dark-section);
  line-height: 1.15;
  margin-bottom: 10px;
}

.ht-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 18px;
}

.ht-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.ht-chip {
  border: 2px solid var(--dark-section);
  background: #fff;
  color: var(--dark-section);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.ht-chip:hover {
  background: rgba(13, 76, 174, 0.06);
}

.ht-chip.active {
  background: var(--dark-section);
  color: #fff;
}

.ht-pay-disclaimer {
  font-size: 11px;
  line-height: 1.45;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 900px;
}

.ht-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ht-grid .inv-card-outcome {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-secondary);
  margin: 0 0 14px;
}

.ht-grid .inv-card-micro {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
  line-height: 1.4;
}

.ht-grid .inv-card-cta {
  background: var(--dark-section);
  border: none;
  cursor: pointer;
  font: inherit;
}

.ht-grid .inv-card-cta:hover {
  background: var(--darker-navy);
}

.ht-results-bar {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
}

.ht-results-bar strong {
  color: var(--dark-section);
}

.ht-help-section {
  width: min(100%, 1200px);
  margin: 40px auto 0;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid rgba(13, 76, 174, 0.1);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(13, 76, 174, 0.08);
  text-align: center;
}

.ht-help-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 800;
  color: var(--dark-section);
  margin-bottom: 12px;
}

.ht-help-section p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 20px;
}

.ht-help-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 56px;
  padding: 0 28px;
  border: none;
  border-radius: 7px;
  background: var(--dark-section);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s;
}

.ht-help-cta:hover {
  background: var(--darker-navy);
}

.ht-help-cta .inv-card-cta-arrow {
  color: var(--amber);
}

.ht-final-disclaimer {
  width: min(100%, 1200px);
  margin: 24px auto 0;
  padding: 0 16px 32px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-muted);
}

.inv-other-section {
  width: min(100%, 980px);
  margin: 36px auto 0;
  padding: 0 16px;
}

.inv-other-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-section);
  margin-bottom: 16px;
}

.ghl-modal-product {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-section);
  background: var(--section-alt);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  text-align: center;
}

.ghl-modal-product[hidden] {
  display: none !important;
}

@media (min-width: 640px) {
  .ht-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ht-inventory-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .ht-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ht-inventory-section {
    max-width: 520px;
  }

  .ht-help-section {
    margin-left: 16px;
    margin-right: 16px;
    width: auto;
  }
}
