@font-face {
  font-family: "Reliable Avenir Heavy";
  font-style: normal;
  font-weight: 700;
  src: url("https://static.parastorage.com/fonts/v2/74290729-59ae-4129-87d0-2eec3974dce1/v1/avenir-lt-w05_85-heavy.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Reliable Helvetica Light";
  font-style: normal;
  font-weight: 400;
  src: url("https://static.parastorage.com/fonts/v2/8eac109b-0fa9-42bf-a305-43e471e23779/v1/helvetica-w01-light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Reliable Work Sans";
  font-style: normal;
  font-weight: 700;
  src: url("https://static.parastorage.com/tag-bundler/api/v1/fonts-cache/googlefont/woff2/s/worksans/v19/QGYsz_wNahGAdqQ43Rh_fKDptfpA4Q.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --card: #ffffff;
  --card-strong: #f7f7f7;
  --ink: #3b3a3a;
  --muted: #949494;
  --line: #c6c6c6;
  --accent: #000073;
  --accent-dark: #000057;
  --accent-soft: #f7f7f7;
  --accent-blue-soft: #c0d2e5;
  --success: #000073;
  --warning: #3b3a3a;
  --shadow: none;
  --radius-large: 0;
  --radius-medium: 0;
  --display-font: "Reliable Avenir Heavy", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body-font: "Reliable Helvetica Light", Arial, Helvetica, sans-serif;
  --nav-font: "Reliable Work Sans", "Work Sans", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: var(--bg);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.app-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px 48px;
}

.site-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: center;
  justify-items: center;
  background: #ffffff;
  border: 0;
  border-bottom: 5px solid var(--accent);
  border-radius: 0;
  box-shadow: none;
  padding: 8px 0 12px;
  margin-bottom: 22px;
}

.site-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.site-logo {
  width: 100%;
  max-width: 462px;
  height: auto;
  display: block;
}

.site-banner-meta {
  display: grid;
  gap: 6px;
  justify-items: center;
  width: 100%;
}

.contact-line,
.brand-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact-line {
  font-size: 1rem;
  color: var(--accent);
}

.contact-line a {
  font-weight: 400;
}

.contact-divider {
  color: #8b92a6;
}

.brand-nav {
  font-family: var(--nav-font);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--accent);
  border-top: 0;
  padding-top: 0;
}

.brand-nav span {
  padding: 8px 12px;
  border: 2px solid transparent;
}

.hero-card,
.card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  border-radius: 0;
  padding: 28px 24px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--accent);
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--nav-font);
}

h1,
h2 {
  margin: 0;
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.12;
}

h2 {
  font-size: 1.45rem;
}

.hero-text,
.section-header p,
.field-help,
.status-text,
.field-meta {
  color: var(--muted);
  font-size: 1rem;
}

.summary-label,
.keyword-search-label,
.keyword-search-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-family: var(--nav-font);
  font-weight: 700;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 20px;
}

.grid-single {
  grid-template-columns: 1fr;
}

.grid-single .section-card {
  margin-top: 6px;
}

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

.workflow-shell.dimensions-layout {
  grid-template-columns: minmax(240px, 1fr) minmax(0, 3fr);
  align-items: start;
  gap: 28px;
}

.workflow-shell.dimensions-layout #quoteForm {
  max-width: none;
}

.card {
  border-radius: 0;
  padding: 24px;
}

.section-header {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.step-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
  border-bottom: 0;
  min-width: 0;
}

.wizard-toolbar {
  display: grid;
  grid-template-columns: minmax(130px, 160px) minmax(0, 1fr) minmax(130px, 190px);
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.wizard-toolbar-side {
  display: flex;
  align-items: center;
}

.wizard-toolbar-side-left {
  justify-content: flex-start;
}

.wizard-toolbar-side-right {
  justify-content: flex-end;
  gap: 12px;
}

.wizard-toolbar-side .ghost-button,
.wizard-toolbar-side .primary-button {
  min-width: 130px;
}

.step-tab {
  border: 2px solid var(--accent);
  background: #ffffff;
  color: var(--accent);
  border-radius: 0;
  padding: 10px 14px;
  cursor: pointer;
  font-family: var(--nav-font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.step-tab.active {
  background: var(--accent);
  color: #ffffff;
  border-bottom-color: var(--accent);
}

.step-tab.complete {
  border-color: #5b86b0;
  color: #5b86b0;
}

.step-stack,
.dimension-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}

.dimension-grid {
  grid-template-columns: 1fr;
}

.customer-grid {
  margin-bottom: 20px;
}

.dimension-stack-card {
  display: grid;
  gap: 0;
  max-width: none;
}

.dimension-stack-item {
  padding: 0;
}

.dimension-stack-item.with-divider {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.field-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 18px;
  box-shadow: inset 0 4px 0 0 var(--accent);
}

.customer-form-shell {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 22px;
}

.customer-form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

.customer-form-row:last-child {
  margin-bottom: 0;
}

.customer-form-row.single {
  grid-template-columns: 1fr;
}

.customer-form-row.double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-form-row.triple {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.9fr);
}

.customer-form-field {
  min-width: 0;
}

.customer-form-field .field-row {
  margin-bottom: 6px;
}

.customer-form-field textarea {
  min-height: 120px;
}

.result-list-summary {
  margin: 14px 0 0;
  color: var(--muted);
}

.keyword-search-shell {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.photo-match-shell {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.keyword-search-label {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.keyword-search-title {
  color: var(--accent);
  margin-bottom: 8px;
}

.keyword-search-input {
  width: 100%;
  max-width: 100%;
}

.keyword-search-summary {
  margin-top: 14px;
  color: var(--muted);
}

.keyword-search-results {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.photo-match-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.photo-upload-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 14px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
}

.photo-upload-title {
  color: var(--accent);
  font-family: var(--nav-font);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-upload-preview {
  width: 100%;
  min-height: 180px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: #f7f7f7;
  object-fit: cover;
  color: var(--muted);
  text-align: center;
  padding: 14px;
}

.photo-upload-file {
  color: var(--muted);
  font-size: 0.92rem;
  min-height: 1.2em;
}

.photo-upload-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.photo-match-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.photo-match-measurement-card {
  margin-top: 16px;
}

.photo-match-summary,
.photo-match-message,
.photo-match-reason,
.photo-match-signals {
  color: var(--muted);
}

.photo-match-summary,
.photo-match-message {
  margin-top: 14px;
}

.photo-match-message.error {
  color: #8b0000;
}

.photo-match-expert-callout {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: #f7f9ff;
  padding: 14px 16px;
  display: grid;
  gap: 8px;
}

.photo-match-expert-callout.warning {
  border-left-color: #8a1f17;
  background: #fff7f6;
  color: #6b1f18;
}

.photo-match-expert-title {
  color: var(--accent-dark);
  font-family: var(--display-font);
  font-size: 1rem;
}

.photo-match-expert-callout.warning .photo-match-expert-title {
  color: #6b1f18;
}

.photo-match-expert-copy {
  line-height: 1.5;
}

.photo-match-expert-link {
  font-family: var(--nav-font);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.photo-match-results {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.photo-match-option.selected {
  border-color: var(--accent);
  background: #f7f9ff;
}

.photo-match-result-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}

.photo-match-confidence {
  color: var(--accent);
  font-family: var(--nav-font);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.keyword-search-option {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 16px;
}

.keyword-search-option-media {
  display: flex;
}

.keyword-search-option-body {
  min-width: 0;
}

.keyword-search-preview {
  width: 100%;
  max-width: 220px;
  height: 180px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.keyword-search-meta {
  margin: 6px 0 8px;
  color: var(--accent);
  font-size: 0.92rem;
}

.group-explainer {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  background: #f7f7f7;
}

.mulhern-filter-shell {
  display: grid;
  gap: 14px;
  margin: 8px 0 22px;
  padding: 18px;
  border: 1px solid var(--line);
  background: #f7f7f7;
}

.mulhern-filter-grid {
  display: grid;
  gap: 14px;
}

.mulhern-filter-grid-quick {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mulhern-filter-grid-sliders {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mulhern-filter-header {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.mulhern-filter-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mulhern-filter-search-row .keyword-search-input {
  flex: 1 1 auto;
}

.mulhern-filter-search-row .primary-button {
  flex: 0 0 auto;
}

.mulhern-filter-select-card {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.mulhern-filter-select-card .field-row {
  margin-bottom: 0;
}

.mulhern-filter-accordion {
  padding: 0;
}

.mulhern-filter-accordion summary {
  list-style: none;
}

.mulhern-filter-accordion summary::-webkit-details-marker {
  display: none;
}

.mulhern-filter-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 18px;
}

.mulhern-filter-summary-value {
  color: var(--muted);
  font-size: 0.92rem;
}

.mulhern-filter-options {
  display: grid;
  gap: 10px;
  padding: 0 18px 18px;
  border-top: 1px solid var(--line);
}

.mulhern-filter-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  cursor: pointer;
}

.mulhern-filter-option input {
  min-height: auto;
  width: auto;
  margin: 2px 0 0;
}

.mulhern-filter-option-copy {
  display: grid;
  gap: 2px;
}

.mulhern-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 4px;
}

.mulhern-slider-card {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.mulhern-slider-range-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.mulhern-slider-track {
  display: block;
}

.mulhern-slider-control {
  position: relative;
  height: 28px;
}

.mulhern-slider-rail {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #d6d9e5;
  transform: translateY(-50%);
}

.mulhern-slider-fill {
  position: absolute;
  top: 0;
  bottom: 0;
  background: var(--accent);
}

.mulhern-slider-input {
  appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 28px;
  margin: 0;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  outline: none;
  pointer-events: none;
}

.mulhern-slider-input::-webkit-slider-runnable-track {
  height: 4px;
  background: transparent;
  border: 0;
}

.mulhern-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  pointer-events: auto;
}

.mulhern-slider-input::-moz-range-track {
  height: 4px;
  background: transparent;
  border: 0;
}

.mulhern-slider-input::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  pointer-events: auto;
}

.mulhern-slider-input:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 115, 0.15);
}

.mulhern-slider-input:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 3px rgba(0, 0, 115, 0.15);
}

.mulhern-slider-bounds {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
}

.group-explainer-title {
  font-family: var(--display-font);
  font-size: 1.08rem;
  color: var(--accent-dark);
}

.group-explainer-copy {
  margin: 10px 0 0;
  color: var(--ink);
  line-height: 1.55;
}

.result-list-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding-top: 4px;
  flex-wrap: wrap;
}

.result-list-count {
  color: var(--muted);
}

.result-list-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.result-list-link:hover {
  color: var(--accent-dark);
}

.result-list {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.result-empty {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: #f7f7f7;
  color: var(--muted);
}

.result-option {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.result-option:hover {
  transform: none;
  border-color: #5b86b0;
}

.result-option.selected {
  border-color: var(--accent);
  border-top-color: var(--accent);
  background: #f7f7f7;
  box-shadow: none;
}

.result-option-media {
  display: grid;
  align-content: start;
  justify-items: start;
}

.belt-preview {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  border: 1px solid var(--line);
  background: #f7f7f7;
  object-fit: cover;
}

.belt-preview-placeholder {
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-dark);
  background: #f7f7f7;
}

.selected-belt-preview {
  width: 100%;
  max-width: none;
}

.result-option-body,
.selected-belt-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.result-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.result-page-button {
  min-width: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--accent-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.result-page-button.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #ffffff;
}

.result-page-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.selected-belt-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.summary-card .selected-belt-card {
  grid-template-columns: 1fr;
  gap: 16px;
}

.summary-card .selected-belt-preview {
  max-width: none;
  width: 100%;
}

.summary-card .spec-detail-row {
  grid-template-columns: minmax(0, 160px) minmax(0, 1fr);
  gap: 12px;
}

.result-option-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.result-option-title {
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--accent-dark);
  font-family: var(--display-font);
}

.result-option-action {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-family: var(--nav-font);
}

.spec-block {
  display: grid;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
}

.spec-block-emphasis {
  background: #f7f9ff;
  border-top: 2px solid var(--accent-blue-soft);
}

.spec-block-public {
  background: #f7f7f7;
  border-top: 1px solid var(--line);
}

.spec-block-label {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-family: var(--display-font);
}

.spec-detail-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.spec-detail-row {
  display: grid;
  grid-template-columns: minmax(0, 130px) minmax(0, 1fr);
  gap: 12px;
  margin: 0;
}

.spec-detail-row dt,
.spec-detail-row dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  min-width: 0;
  overflow-wrap: anywhere;
}

.spec-detail-row dt {
  color: var(--muted);
  font-weight: 400;
}

.spec-detail-row dd {
  color: var(--ink);
}

.spec-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.spec-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 0;
  padding: 6px 10px;
  background: #f7f7f7;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.2;
}

.spec-sheet-link {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.result-select-button {
  justify-self: start;
  border: 2px solid var(--accent);
  border-radius: 0;
  padding: 10px 16px;
  background: #ffffff;
  color: var(--accent);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--nav-font);
  font-size: 0.84rem;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.result-select-button:hover {
  transform: none;
  background: var(--accent);
  color: #ffffff;
}

.field-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.field-label {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--accent-dark);
  font-family: var(--nav-font);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  height: 32px;
  border-radius: 0;
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--line);
  font-size: 0.76rem;
  font-family: var(--nav-font);
  letter-spacing: 0.04em;
}

label,
input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--line);
  min-height: 46px;
  padding: 11px 14px;
  background: #ffffff;
  color: var(--ink);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 0, 115, 0.18);
  border-color: var(--accent);
}

.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.wizard-actions {
  justify-content: space-between;
}

.primary-button,
.ghost-button {
  border-radius: 0;
  padding: 11px 20px;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  font-family: var(--nav-font);
  font-weight: 700;
  border-width: 2px;
}

.result-select-button {
  font-weight: 700;
}

.primary-button {
  background: var(--accent);
  color: #ffffff;
  border: 2px solid var(--accent);
}

.primary-button:hover,
.ghost-button:hover {
  transform: none;
}

.primary-button:disabled,
.ghost-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.ghost-button {
  background: #ffffff;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
}

.ghost-button:hover {
  background: var(--accent);
  color: #ffffff;
}

.summary-card {
  position: static;
  width: 100%;
  max-width: 760px;
  margin: 22px auto 0;
}

.workflow-shell.dimensions-layout .summary-card {
  max-width: none;
  margin: 0;
}

.summary-panel {
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 16px;
  background: #ffffff;
  margin-bottom: 14px;
  box-shadow: inset 0 4px 0 0 var(--accent);
}

.summary-panel.muted {
  background: #f7f7f7;
}

.review-stage,
.review-card,
.success-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 18px;
  box-shadow: inset 0 4px 0 0 var(--accent);
}

.success-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 42px 36px;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.success-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.15;
}

.success-message {
  margin: 0;
  max-width: 640px;
  font-size: 1.12rem;
  line-height: 1.6;
  color: var(--ink);
}

.success-request-id {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.compound-input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.compound-input-grid.single-unit {
  grid-template-columns: 1fr;
}

.compound-input-field {
  display: grid;
  gap: 8px;
}

.compound-input-label {
  font-family: var(--nav-font);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.submit-note {
  color: var(--muted);
}

.part-number {
  margin-top: 10px;
  font-size: 1.35rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--accent-dark);
  font-family: var(--display-font);
}

.spec-summary {
  margin: 10px 0 0;
  white-space: pre-wrap;
  font-family: var(--body-font);
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
}

.review-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--warning);
}

.status-text {
  margin: -6px 0 18px;
  min-height: 24px;
}

.status-text.error {
  color: #8a1f17;
}

.status-text.success {
  color: var(--success);
}

@media (max-width: 980px) {
    .site-banner,
    .hero-card,
    .grid {
      grid-template-columns: 1fr;
    }

    .workflow-shell.dimensions-layout {
      grid-template-columns: 1fr;
    }

    .workflow-shell.dimensions-layout #quoteForm {
      max-width: none;
    }

    .site-banner-meta {
      justify-items: center;
    }

  .contact-line,
  .brand-nav {
    justify-content: center;
  }

  .summary-card {
    position: static;
  }

  .wizard-toolbar {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wizard-toolbar-side,
  .wizard-toolbar-side-left,
  .wizard-toolbar-side-right {
    justify-content: center;
  }
}

  @media (max-width: 640px) {
  .app-shell {
    padding: 14px 12px 30px;
  }

  .site-banner,
  .hero-card,
  .card {
    padding: 18px 16px;
  }

    .dimension-grid,
    .actions,
    .compound-input-grid,
    .photo-match-grid {
      grid-template-columns: 1fr;
      display: grid;
    }

    .dimension-stack-card {
      max-width: none;
    }

    .customer-form-shell {
      padding: 18px 16px;
    }

    .customer-form-row.double,
    .customer-form-row.triple {
      grid-template-columns: 1fr;
    }

  .step-nav {
    display: grid;
    grid-template-columns: 1fr;
  }

  .wizard-toolbar-side {
    width: 100%;
  }

  .wizard-toolbar-side .ghost-button,
  .wizard-toolbar-side .primary-button {
    width: 100%;
    max-width: 280px;
  }

  .keyword-search-option,
  .result-option,
  .selected-belt-card {
    grid-template-columns: 1fr;
  }

  .mulhern-filter-grid {
    grid-template-columns: 1fr;
  }

  .mulhern-filter-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .keyword-search-option-media,
  .result-option-media {
    justify-content: center;
    justify-items: center;
  }

  .result-option-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .spec-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .summary-card .spec-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
