﻿:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #5a5a5a;
  --border: #111111;
  --accent: #d61f2c;
  --panel: #fff5f5;
  --header-bg: #d61f2c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.phone-explainer {
  margin-bottom: 10px;
}

.phone-explainer-title {
  margin: 0 0 4px;
  font-weight: 700;
  color: var(--ink);
}

.phone-explainer-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.phone-routes {
  margin-top: 10px;
  padding: 8px 10px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.phone-routes-title {
  margin: 0 0 6px;
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

.phone-routes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

a:hover {
  text-decoration: underline;
}

.site-header {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
  min-height: 72px;
  height: auto;
}


.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  min-height: 72px;
  height: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  line-height: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 2px 6px;
}

.logo::after {
  content: none;
}

.logo-img {
  height: 72px;
  width: auto;
  display: block;
  opacity: 1;
  object-fit: contain;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.section {
  margin-top: 24px;
}

.lazy-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

h1,
h2,
h3 {
  margin: 0 0 8px;
}

.intro h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.quick-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.search-panel {
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
}

.search-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.search-content .search-title {
  text-align: left;
}

.search-media {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.search-slider {
  position: relative;
  width: 100%;
  min-height: 320px;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
}

.search-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 400ms ease;
}

.search-slide.is-active {
  opacity: 1;
}

.search-title {
  text-align: center;
  color: var(--ink);
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.flow-guide {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  font-weight: 600;
  color: var(--muted);
  display: block;
}

.search-console .flow-guide {
  display: none;
}

.search-console {
  border: 2px solid var(--ink);
  box-shadow: none;
  padding: 8px;
}

.search-console .search-kicker {
  margin: 0 0 2px;
  text-align: center;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.search-console .search-title {
  text-align: center;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.search-console .search-kicker {
  color: var(--accent);
}

.search-console .finder {
  gap: 6px;
}

.search-console .field label {
  margin-bottom: 2px;
  font-size: 0.82rem;
}

.search-console .primary-btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  box-shadow: none;
}

.search-console .primary-btn:hover {
  background: #222222;
}

.search-console .make-display,
.search-console .make-search,
.search-console .model-display,
.search-console .model-search,
.search-console .year-display,
.search-console .year-search,
.search-console .year-select,
.search-console .part-input {
  padding: 6px 8px;
  font-size: 0.88rem;
}

.search-console .part-input {
  min-height: 44px;
}

.search-console .make-options,
.search-console .model-buttons,
.search-console .year-buttons,
.search-console .part-suggestions {
  max-height: 130px;
}

.optional-details {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 8px 10px;
  background: #ffffff;
}

.optional-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
}

.optional-details summary::marker {
  color: var(--accent);
}

.optional-body {
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

.search-console .field select,
.search-console .model-row input {
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: #f2f2f2;
}

.search-console .year-select {
  display: none;
  margin-bottom: 0;
}

.search-console #year-input {
  display: none;
}

.search-console .year-buttons {
  display: none;
}

.finder {
  display: grid;
  gap: 14px;
}

.make-picker,
.model-picker,
.year-picker {
  display: grid;
  gap: 8px;
}

.make-display,
.model-display,
.year-display {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #f2f2f2;
  padding: 12px 40px 12px 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.make-display::after,
.model-display::after,
.year-display::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #777777;
  transform: translateY(-35%);
}

.make-search,
.model-search,
.year-search {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid #c9c9c9;
  border-radius: 6px;
  background: #ffffff;
  padding: 10px 12px;
}

.make-search-label,
.model-search-label,
.year-search-label {
  display: none;
}

.make-search input,
.model-search input,
.year-search input {
  border: none;
  background: transparent;
  flex: 1;
  min-width: 120px;
  font-size: 1rem;
  outline: none;
}

.make-picker.is-open .make-search {
  display: flex;
}

.model-picker.is-open .model-search {
  display: flex;
}

.year-picker.is-open .year-search {
  display: flex;
}

.make-options {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background: #ffffff;
  max-height: 220px;
  overflow-y: auto;
  display: none;
}

.make-option {
  padding: 10px 12px;
  border-bottom: 1px solid #f0dede;
  cursor: pointer;
  font-weight: 600;
}

.make-option:last-child {
  border-bottom: none;
}

.make-option:hover,
.make-option.is-active {
  background: var(--panel);
}

.make-empty,
.model-empty,
.year-empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.make-picker.is-open .make-options {
  display: block;
}

.stepper {
  display: grid;
  gap: 12px;
}

.stepper.is-simple .stepper-head,
.stepper.is-simple .stepper-nav {
  display: none;
}

.stepper.is-simple .stepper-body {
  min-height: 0;
  max-height: none;
  overflow: visible;
  border: none;
  padding: 0;
}

.stepper.is-simple .step-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.stepper-head {
  display: grid;
  gap: 4px;
}

.step-counter {
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: var(--ink);
}

.stepper-steps {
  display: none;
}

.step-chip {
  border: 1px solid var(--ink);
  background: #ffffff;
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
}

.step-chip.is-active {
  background: var(--accent);
  color: #111111;
}

.step-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.stepper-body {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  background: #ffffff;
  min-height: 260px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.step-panel {
  display: none;
}

.step-panel.is-active {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: auto 0;
}

.stepper-body.is-loading .step-panel {
  opacity: 0.15;
  pointer-events: none;
}

.step-loader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
}

.stepper-body.is-loading .step-loader {
  display: flex;
}

.step-spinner {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: var(--accent);
  animation: spin 0.8s linear infinite;
}

.step-loader-text {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.stepper-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.step-btn {
  border: 1px solid var(--ink);
  background: #ffffff;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.step-btn-primary {
  background: var(--ink);
  color: #ffffff;
}

.step-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.site-header a:not(.whatsapp-pill):not(.nav-cta) {
  color: #ffffff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111111;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: #ffffff;
  color: #111111;
  box-shadow: 3px 3px 0 #111111;
}

.nav-cta:hover {
  text-decoration: none;
  background: #ffe5e5;
}
.field .note {
  margin-top: 6px;
}

.field select,
.field input,
.field textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--panel);
  font-size: 1rem;
}

.make-input {
  background: #ffffff;
  background-image: none;
  padding-right: 12px;
}

.model-input {
  background: #ffffff;
  background-image: none;
  padding-right: 12px;
}

.make-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.make-row .make-input {
  flex: 1;
}

.make-search-btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.make-note {
  margin-top: 6px;
}

.make-search-btn,
.model-search-btn {
  display: none;
}

.field .sub-label {
  display: block;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.model-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.model-row .model-input {
  flex: 1;
}

.model-search-btn {
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.model-note {
  margin-top: 6px;
}

.phone-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: center;
}

.phone-row select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: #ffffff;
  font-size: 1rem;
}

.field textarea {
  min-height: 90px;
  resize: vertical;
}

.make-select {
  display: block;
  margin-bottom: 8px;
}

.make-buttons {
  display: none;
}

.model-buttons,
.year-buttons {
  display: none;
  flex-direction: column;
  gap: 0;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background: #ffffff;
  max-height: 220px;
  overflow-y: auto;
  padding: 0;
}

.model-picker.is-open .model-buttons,
.year-picker.is-open .year-buttons {
  display: flex;
}


.make-button,
.model-button,
.year-button {
  border: 1px solid var(--ink);
  background: #ffffff;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.model-buttons .model-button,
.year-buttons .year-button {
  width: 100%;
  border: none;
  border-bottom: 1px solid #f0dede;
  border-radius: 0;
  text-align: left;
  padding: 10px 12px;
}

.model-buttons .model-button:last-child,
.year-buttons .year-button:last-child {
  border-bottom: none;
}

.make-button {
  background: #fca5a5;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
}

.make-logo {
  max-height: 22px;
  max-width: 90px;
  width: auto;
  height: auto;
  display: block;
}

.make-button.has-logo .make-label {
  display: none;
}

.make-button:hover {
  background: #f87171;
}

.make-button.is-active {
  background: #ef4444;
  color: #111111;
}

.model-button.is-active,
.year-button.is-active {
  background: var(--ink);
  color: #ffffff;
}

.make-button:focus-visible,
.model-button:focus-visible,
.year-button:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #111111 50%),
    linear-gradient(135deg, #111111 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.part-input {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  border: 2px solid var(--ink);
  background: #f2f2f2;
  border-radius: 6px;
  padding: 10px;
  min-height: 64px;
}

.part-input input {
  border: none;
  background: transparent;
  flex: 1;
  min-width: 160px;
  padding: 6px 4px;
  outline: none;
}

.part-suggestions {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  border: 1px solid #c9c9c9;
  border-radius: 8px;
  background: #ffffff;
  max-height: 220px;
  overflow-y: auto;
}

.search-console .sub-label,
.search-console .make-row,
.search-console .make-note,
.search-console .model-note,
.search-console .make-search-btn,
.search-console .model-search-btn {
  display: none;
}

.search-console .model-row {
  margin-top: 0;
}

.part-suggestions li {
  padding: 10px 12px;
  border-bottom: 1px solid #f0dede;
  cursor: pointer;
  font-weight: 600;
}

.part-suggestions li:last-child {
  border-bottom: none;
}

.part-suggestions li:hover {
  background: var(--panel);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 4px 8px;
  font-weight: 600;
}

.tag-remove {
  border: none;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}

.condition {
  border: none;
  padding: 0;
  margin: 0;
}

.condition legend {
  font-weight: 700;
  margin-bottom: 8px;
}

.radio {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 16px;
  font-weight: 600;
}

.primary-btn {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}

.primary-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.link-btn {
  border: none;
  background: transparent;
  color: var(--ink);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  justify-self: center;
}

.inventory-head {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

#selection-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
  background: #ffffff;
}

.selection-header h3 {
  margin-bottom: 6px;
}

.selection-part {
  margin-bottom: 12px;
  color: var(--muted);
}

.selection-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px 16px;
  margin-bottom: 16px;
}

.selection-meta .label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.selection-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #1c7c2e;
  background: #2f9e44;
  color: #ffffff;
  font-weight: 700;
}

.whatsapp-btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 1000;
}

.modal-backdrop.is-open {
  display: flex;
}

.modal {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid var(--ink);
  max-width: 420px;
  width: 100%;
  box-shadow: 6px 6px 0 var(--ink);
}

.modal.modal-wide {
  max-width: 640px;
}

.modal label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
}

.modal input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--panel);
  font-size: 1rem;
}

.field-error {
  color: #b91c1c;
  font-weight: 600;
  margin-top: 8px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
}

.modal .primary-btn {
  width: auto;
  box-shadow: none;
}

#result-count {
  font-weight: 600;
  color: var(--ink);
}

.parts {
  display: grid;
  gap: 12px;
}

.part {
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 6px;
  background: #ffffff;
}

.part h3 {
  margin-bottom: 4px;
}

.part .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.part[hidden] {
  display: none;
}

.empty-state {
  border: 1px dashed var(--border);
  padding: 16px;
  margin-top: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  background: #ffffff;
}

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.submit-status {
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

.submit-status.is-error {
  color: #b91c1c;
}

.submit-status.is-success {
  color: #c2410c;
}

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #1f8e3e;
  color: #ffffff;
  font-weight: 700;
  border: 1px solid #14632b;
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 1000;
}

.floating-whatsapp:hover {
  text-decoration: none;
  background: #197a34;
}


.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px 16px;
  background: var(--header-bg);
  color: #ffffff;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-brand h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #ffe5e7;
}

.footer-links h3 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: #ffffff;
}

.footer-btn {
  background: none;
  border: none;
  padding: 0;
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
}

.footer-bottom {
  margin: 16px 0 0;
  text-align: center;
  color: #ffe5e7;
  font-size: 0.85rem;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 32px));
  z-index: 1000;
}

.cookie-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-text h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.cookie-text p {
  margin: 0;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .cookie-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    justify-content: flex-end;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 720px) {
  .site-header {
    height: auto;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 10px 14px;
    gap: 10px;
  }

  .logo {
    align-self: flex-start;
  }

  .logo-img {
    height: 60px;
    max-width: 75vw;
  }

  .nav-actions {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    gap: 8px;
  }

  .nav-cta,
  .whatsapp-pill {
    flex: 1 1 160px;
    justify-content: center;
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .page {
    padding: 16px 12px 32px;
  }

  .section {
    margin-top: 16px;
  }

  .search-panel,
  .hero,
  .popular-requests,
  .supplier-feature {
    padding: 14px;
    border-radius: 10px;
    box-shadow: none;
  }

  .search-grid {
    gap: 12px;
  }

  .search-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .search-console .search-title {
    font-size: 1rem;
  }

  .search-console .finder {
    gap: 8px;
  }

  .search-console .field label {
    font-size: 0.78rem;
  }

  .search-console .make-display,
  .search-console .model-display,
  .search-console .year-display {
    padding: 10px 34px 10px 10px;
  }

  .search-media {
    padding: 8px;
  }

  .search-slider {
    min-height: 200px;
  }

  .cookie-banner {
    width: calc(100% - 16px);
    bottom: 8px;
  }

  .cookie-card {
    padding: 12px;
    box-shadow: 3px 3px 0 var(--ink);
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 96px;
  }

  .make-row {
    flex-direction: column;
    align-items: stretch;
  }

  .make-search-btn {
    width: 100%;
  }

  .model-row {
    flex-direction: column;
    align-items: stretch;
  }

  .model-search-btn {
    width: 100%;
  }

  .phone-row {
    grid-template-columns: 1fr;
  }

  .inventory-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .radio {
    display: flex;
    margin-bottom: 6px;
  }
}

@media (max-width: 420px) {
  .logo-img {
    height: 54px;
    max-width: 80vw;
  }

  .search-slider {
    min-height: 180px;
  }

  .floating-whatsapp {
    bottom: 110px;
  }

  .nav-cta,
  .whatsapp-pill {
    width: 100%;
  }
}

.part-select {
  display: none;
}

.make-select {
  display: none;
}

.model-select {
  display: none;
  margin-bottom: 0;
}

.year-select {
  display: none;
  margin-bottom: 0;
}


.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #111111;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: #ffffff;
  color: #111111;
}

.whatsapp-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}


.hero {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: center;
}

.hero-media {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media img {
  width: 100%;
  height: auto;
  max-width: 360px;
}

.hero-copy h1 {
  margin-top: 0;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.hero-sub {
  margin-bottom: 12px;
  color: var(--muted);
}

.hero-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.popular-requests {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.request-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.request-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: #ffffff;
  box-shadow: 3px 3px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.request-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.request-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.request-price {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.request-meta {
  display: grid;
  gap: 4px;
  font-size: 0.95rem;
}

.request-meta .meta-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: center;
}

.request-meta span {
  color: var(--ink);
  font-weight: 600;
}

.request-meta .meta-value {
  color: var(--muted);
  font-weight: 500;
}

.request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.request-btn {
  width: 100%;
  padding: 8px 12px;
  font-size: 0.95rem;
  box-shadow: 3px 3px 0 var(--ink);
}

.request-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #14632b;
  background: #1f8e3e;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 700;
  padding: 8px 12px;
  box-shadow: 3px 3px 0 var(--ink);
}

.request-whatsapp:hover {
  text-decoration: none;
}

.supplier-feature {
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 6px 6px 0 var(--ink);
}

.supplier-card {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr) minmax(0, 0.9fr);
  align-items: center;
}

.supplier-media {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  background: var(--panel);
}

.supplier-media img {
  display: block;
  width: 100%;
  height: auto;
}

.supplier-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.supplier-actions {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  background: #ffffff;
  display: grid;
  gap: 10px;
}

.supplier-location {
  font-weight: 700;
  margin: 0;
  color: var(--ink);
}

.supplier-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
  text-align: center;
}

.supplier-btn:hover {
  text-decoration: none;
}

.supplier-btn-outline {
  background: #ffffff;
  color: var(--ink);
}

.seo-content h2 {
  margin-top: 24px;
}

.seo-intro {
  margin: 0 0 12px;
  padding: 10px 12px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  background: var(--panel);
}

.seo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.seo-media {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  background: var(--panel);
}

.seo-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.seo-accordion-stack {
  display: grid;
  gap: 12px;
}

.seo-accordion {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}

.seo-accordion summary {
  list-style: none;
  padding: 14px 44px 14px 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  background: var(--panel);
  transition: background 0.2s ease, color 0.2s ease;
}

.seo-accordion summary:hover {
  background: #fff1e6;
}

.seo-accordion summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.seo-accordion[open] summary {
  background: #fff1e6;
}

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

.seo-accordion summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.seo-accordion[open] summary::after {
  content: "-";
}

.seo-accordion-body {
  padding: 8px 16px 16px;
  animation: seoSlideDown 0.2s ease;
}

@keyframes seoSlideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-accordion summary {
    transition: none;
  }

  .seo-accordion-body {
    animation: none;
  }

  .search-slide {
    transition: none;
  }
}

.seo-content p {
  color: var(--muted);
}

.seo-steps {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.seo-steps strong {
  color: var(--ink);
}

.seo-list {
  margin: 0;
  padding-left: 18px;
  column-count: 3;
  column-gap: 24px;
  color: var(--muted);
}

.seo-list li {
  break-inside: avoid;
  margin-bottom: 4px;
}

.seo-requests {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.seo-table {
  overflow-x: auto;
}

.seo-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.seo-table th,
.seo-table td {
  border: 1px solid var(--border);
  padding: 8px;
  text-align: left;
}

.seo-table th {
  background: var(--panel);
}

@media (max-width: 980px) {
  .seo-list {
    column-count: 2;
  }

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

  .search-media {
    margin-top: 8px;
    height: auto;
  }

  .search-slider {
    height: auto;
    min-height: 240px;
  }

  .stepper-body {
    max-height: none;
  }

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

  .seo-media {
    margin-top: 12px;
  }
}

@media (max-width: 720px) {
  .hero {
    box-shadow: 4px 4px 0 var(--ink);
  }

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

  .supplier-card {
    grid-template-columns: 1fr;
  }

  .seo-list {
    column-count: 1;
  }

  .stepper-nav {
    flex-direction: column;
    align-items: stretch;
  }

  .stepper-nav .step-btn {
    width: 100%;
  }
}
