:root {
  --buy-ink: #333333;
  --buy-muted: #666666;
  --buy-line: #eeeeee;
  --buy-panel: #ffffff;
  --buy-soft: #f7f7f8;
  --buy-header: #eeeeee;
  --buy-brand: #8cff01;
  --buy-accent: #03b2ff;
  --buy-warn-bg: #fff8e1;
  --buy-warn-line: #ffecb3;
  --buy-warn-text: #f57f17;
}

* {
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.text-neutral-400 { color: #9ca3af !important; }
.text-neutral-500 { color: #6b7280 !important; }
.text-neutral-700 { color: #374151 !important; }
.text-emerald-500 { color: #10b981 !important; }
.text-emerald-600 { color: #059669 !important; }
.bg-neutral-300 { background-color: #d1d5db !important; }
.bg-yellow-400 { background-color: #facc15 !important; }
.bg-emerald-400 { background-color: #34d399 !important; }

body.buy-app {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  color: var(--buy-ink);
  background: #fff;
}

.buy-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--buy-header);
  border-bottom: 1px solid #e4e4e4;
}

.buy-header-inner {
  width: min(1200px, 94vw);
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.buy-logo {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #161616;
  text-decoration: none;
}

.buy-header-action {
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #333;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  text-decoration: none;
}

.buy-main {
  width: min(520px, 94vw);
  margin: 0 auto;
  padding: 24px 0 80px;
}

.buy-main.wide {
  width: min(1100px, 94vw);
}

.buy-flow-shell {
  width: min(470px, 94vw);
}

.buy-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: #1294ff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.buy-headline {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
}

.buy-subline {
  margin: 10px 0;
  font-size: 14px;
  color: var(--buy-muted);
}

.buy-step-caption {
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: #222;
}

.buy-step-counter {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #1294ff;
  font-size: 13px;
  font-weight: 600;
}

.buy-step-counter::after {
  content: '⌄';
  margin-left: 6px;
  font-size: 12px;
}

.buy-step-counter[aria-expanded='true']::after {
  content: '⌃';
}

.buy-path-card {
  display: none;
}

.buy-path-card.is-open {
  display: block;
}

.buy-path-title {
  margin: 0 0 8px;
  color: #9aa1ad;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.buy-path-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.buy-path-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6b7280;
  font-size: 14px;
}

.buy-path-item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1.8px solid #d3d7de;
  flex: 0 0 auto;
}

.buy-path-item.done::before {
  border-color: #8cff01;
  background: #eaffce;
}

.buy-path-item.active {
  color: #222;
  font-weight: 500;
}

.buy-path-item.active::before {
  border-color: #222;
}

.buy-section-title {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
}

.buy-section-subtitle {
  margin: 6px 0 0;
  font-size: 14px;
  color: #5f6975;
}

.buy-progress {
  margin-bottom: 20px;
}

.buy-progress-head {
  display: none;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.buy-progress-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--buy-ink);
}

.buy-progress-step {
  font-size: 13px;
  color: var(--buy-muted);
  font-weight: 600;
}

.buy-progress-bar {
  display: grid;
  grid-template-columns: repeat(var(--segments, 7), minmax(0, 1fr));
  gap: 6px;
}

.buy-progress-segment {
  height: 6px;
  border-radius: 999px;
  background: #ececed;
}

.buy-progress-segment.is-done,
.buy-progress-segment.is-current {
  background: #333;
}

.buy-card {
  border: 1px solid var(--buy-line);
  background: var(--buy-panel);
  border-radius: 18px;
  padding: 20px;
}

.buy-card + .buy-card {
  margin-top: 14px;
}

.buy-vehicle-card {
  overflow: hidden;
  padding: 0;
}

.buy-vehicle-media {
  aspect-ratio: 16/9;
  background: #f0f0f0;
}

.buy-vehicle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.buy-vehicle-body {
  padding: 18px;
}

.buy-vehicle-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  font-weight: 500;
}

.buy-vehicle-meta {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--buy-muted);
}

.buy-vehicle-price {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.buy-status {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid var(--buy-warn-line);
  background: var(--buy-warn-bg);
  border-radius: 12px;
  padding: 10px 12px;
}

.buy-status-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.buy-status-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--buy-warn-text);
  font-weight: 700;
}

.buy-status-time {
  font-size: 14px;
  color: var(--buy-warn-text);
  font-weight: 700;
}

.buy-status-state {
  font-size: 12px;
  color: #7b5200;
  font-weight: 600;
  text-align: right;
}

.buy-step-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--buy-ink);
}

.buy-step-subtitle {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--buy-muted);
}

.buy-grid {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.buy-grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.buy-option {
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  padding: 18px 16px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.buy-option:hover {
  border-color: #d1d1d1;
}

.buy-option.is-active {
  border-color: #333;
  background: #fdfdfd;
  box-shadow: inset 0 0 0 1px #333;
}

.buy-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f1f3f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #232323;
  flex: 0 0 auto;
}

.buy-option-icon svg {
  width: 22px;
  height: 22px;
}

.buy-option-title {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
}

.buy-option-text {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--buy-muted);
}

.buy-form {
  margin-top: 16px;
  display: grid;
  gap: 14px;
}

.buy-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.buy-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.buy-label {
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.buy-input,
.buy-select {
  width: 100%;
  border: 1px solid #dddddd;
  border-radius: 10px;
  min-height: 48px;
  font-size: 14px;
  color: #333;
  padding: 10px 12px;
  outline: none;
  background: #fff;
}

.buy-input:focus,
.buy-select:focus {
  border-color: var(--buy-accent);
  box-shadow: 0 0 0 2px rgba(3, 178, 255, 0.2);
}

.buy-segmented {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: #e9e9eb;
  border: 1px solid #e0e0e2;
}

.buy-segmented-btn {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #6b6b70;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}

.buy-segmented-btn.is-active {
  background: #fff;
  color: #2b2b30;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.12);
}

.buy-phone-row {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 10px;
}

.buy-phone-prefix {
  border: 1px solid #dddddd;
  border-radius: 10px;
  min-height: 48px;
  background: #fff;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
}

select.buy-phone-prefix {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b7280 50%), linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 30px;
}

.buy-whatsapp-optin {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f6975;
  font-size: 13px;
  line-height: 1.3;
}

.buy-whatsapp-optin input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.buy-whatsapp-switch {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: #d4d4d8;
  position: relative;
  flex: 0 0 auto;
  transition: background-color 0.2s ease;
}

.buy-whatsapp-switch::after {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s ease;
}

.buy-whatsapp-optin input:checked + .buy-whatsapp-switch {
  background: #020225;
}

.buy-whatsapp-optin input:checked + .buy-whatsapp-switch::after {
  transform: translateX(18px);
}

.buy-form-actions {
  margin-top: 12px;
}

.buy-reservation {
  margin-top: 18px;
}

.buy-delivery-shell {
  margin-top: 18px;
}

.buy-delivery-celebration {
  font-size: 44px;
  line-height: 1;
  text-align: center;
}

.buy-delivery-order {
  margin: 8px auto 0;
  width: fit-content;
  border-radius: 999px;
  background: #eceef2;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
}

.buy-delivery-title {
  margin: 14px 0 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 500;
  text-align: center;
}

.buy-delivery-subtitle {
  margin: 8px auto 0;
  max-width: 520px;
  text-align: center;
  color: #667085;
  font-size: 16px;
  line-height: 1.45;
}

.buy-delivery-methods {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.buy-delivery-method {
  min-height: 148px;
  border-radius: 20px;
  border: 2px solid #eaecf0;
  background: #fff;
  text-align: left;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.buy-delivery-method.is-active {
  border-color: #2f3137;
  box-shadow: inset 0 0 0 1px #2f3137;
}

.buy-delivery-method-icon {
  font-size: 30px;
  line-height: 1;
}

.buy-delivery-method strong {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #2f3137;
}

.buy-delivery-method-note {
  font-size: 14px;
  color: #667085;
  line-height: 1.3;
}

.buy-delivery-method.is-active .buy-delivery-method-note {
  color: #027a48;
  font-weight: 600;
}

.buy-note-box {
  border-radius: 18px;
  background: #f5f6f8;
  border: 1px solid #ebeef2;
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
  padding: 18px;
}

.buy-note-box strong {
  color: #475467;
}

.buy-delivery-pickup {
  margin-top: 20px;
}

.buy-pickup-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 500;
  color: #1f2937;
}

.buy-pickup-list {
  display: grid;
  gap: 12px;
}

.buy-pickup-item {
  width: 100%;
  border-radius: 18px;
  border: 2px solid #eaecf0;
  background: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  text-align: left;
}

.buy-pickup-item.is-active {
  border-color: #2f3137;
  box-shadow: inset 0 0 0 1px #2f3137;
}

.buy-pickup-main {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.buy-pickup-pin {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #f2f4f7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex: 0 0 auto;
}

.buy-pickup-item.is-active .buy-pickup-pin {
  background: #2f3137;
}

.buy-pickup-item.is-active .buy-pickup-pin span {
  filter: grayscale(100%) brightness(200%);
}

.buy-pickup-name {
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  color: #2f3137;
}

.buy-pickup-address {
  margin: 3px 0 0;
  font-size: 13px;
  line-height: 1.35;
  color: #667085;
}

.buy-pickup-label {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #dff5e6;
  color: #027a48;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 12px;
}

.buy-pickup-check {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1.5px solid #d0d5dd;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex: 0 0 auto;
}

.buy-pickup-item.is-active .buy-pickup-check {
  border-color: #2f3137;
  background: #2f3137;
  color: #fff;
}

.buy-pickup-calendar {
  margin-top: 14px;
  border: 1px solid #eaecf0;
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.buy-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.buy-calendar-head strong {
  font-size: 18px;
  font-weight: 500;
  color: #1f2937;
}

.buy-calendar-nav {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #e4e7ec;
  background: #fff;
  color: #667085;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
}

.buy-calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 6px;
}

.buy-calendar-weekday {
  text-align: center;
  font-size: 14px;
  color: #667085;
  font-weight: 500;
}

.buy-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.buy-calendar-day {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #1f2937;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.buy-calendar-day.is-empty {
  cursor: default;
  opacity: 0;
}

.buy-calendar-day.is-disabled {
  color: #c0c4cc;
  cursor: not-allowed;
}

.buy-calendar-day.is-selected {
  background: #020225;
  color: #fff;
}

.buy-calendar-day.is-today {
  background: #f2f4f7;
}

.buy-slots-title {
  margin-top: 18px;
}

.buy-pickup-slots {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.buy-slot-btn {
  min-height: 54px;
  border-radius: 12px;
  border: 1px solid #d7dbe3;
  background: #fff;
  color: #2f3137;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.buy-slot-btn.is-active {
  border-color: #2f3137;
  background: #2f3137;
  color: #fff;
}

.buy-alert-box {
  margin-top: 14px;
  border-radius: 14px;
  background: #dff3ff;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.buy-alert-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #1f2937;
}

.buy-alert-icon {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 2px solid #1294ff;
  color: #1294ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex: 0 0 auto;
}

.buy-total-head {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.buy-total-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buy-total-left strong {
  font-size: 20px;
  font-weight: 500;
}

.buy-total-left button {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}

.buy-total-left button::after {
  content: '⌄';
  margin-left: 4px;
}

.buy-total-left button[aria-expanded='true']::after {
  content: '⌃';
}

.buy-total-amount {
  font-size: 28px;
  font-weight: 500;
}

.buy-total-detail {
  margin-top: 10px;
  border-radius: 14px;
  background: #f2f3f5;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

.buy-total-detail > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  color: #495467;
}

.buy-total-line {
  padding-top: 10px;
  border-top: 1px solid #d9dde3;
}

.buy-total-line strong {
  color: #2b2b30;
  font-weight: 600;
}

.buy-res-divider {
  margin: 16px 0;
  border-top: 1px solid #e6e8eb;
}

.buy-pay-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
}

.buy-pay-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.buy-pay-method {
  min-height: 78px;
  border-radius: 14px;
  border: 2px solid #eceef2;
  background: #fff;
  display: grid;
  place-items: center;
  gap: 6px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
}

.buy-pay-method.is-active {
  border-color: #2f3137;
}

.buy-pay-panel {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.buy-input-hint {
  margin: 0 4px;
  font-size: 13px;
  color: #667085;
}

.buy-input-hint strong {
  margin-left: 6px;
  color: #344054;
  font-weight: 600;
}

.buy-brand-note {
  border-radius: 12px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
}

.buy-brand-note-apple {
  background: #050505;
  color: #fff;
}

.buy-brand-note-pse {
  background: #1540ad;
  color: #fff;
}

.buy-security-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 18px;
  color: #2f3137;
}

.buy-cards-brands {
  font-size: 13px;
  font-weight: 700;
  color: #3b4c8f;
}

.buy-legal-check {
  margin-top: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #4b5565;
}

.buy-legal-check input {
  margin-top: 2px;
}

.buy-legal-check a {
  color: #2563eb;
  text-decoration: none;
}

.buy-legal-footer {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.buy-legal-footer strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

.buy-legal-footer p {
  margin: 8px 0 0;
  font-size: 13px;
  color: #667085;
}

.buy-legal-footer a {
  color: #475467;
  text-decoration: none;
}

input[type='range'] {
  width: 100%;
  accent-color: #333;
}

.buy-estimate {
  margin-top: 14px;
  border: 1px solid var(--buy-line);
  border-radius: 12px;
  background: var(--buy-soft);
  padding: 14px;
}

.buy-estimate-label {
  margin: 0;
  font-size: 13px;
  color: var(--buy-muted);
}

.buy-estimate-value {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: #333;
}

.buy-feedback {
  margin-top: 12px;
  border-radius: 10px;
  font-size: 14px;
  padding: 10px 12px;
}

.buy-feedback.hidden {
  display: none;
}

.buy-feedback.buy-feedback-error {
  background: #fff1f2;
  color: #be123c;
}

.buy-feedback.buy-feedback-success {
  background: #ecfdf3;
  color: #15803d;
}

.buy-btn {
  margin-top: 16px;
  border: 0;
  border-radius: 12px;
  min-height: 52px;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
}

.buy-btn:hover {
  filter: brightness(0.96);
}

.buy-btn.primary {
  background: var(--buy-brand);
  color: #222;
}

.buy-btn.dark {
  background: #333;
  color: #fff;
}

.buy-btn.apple {
  background: #050505;
  color: #fff;
}

.buy-btn.pse {
  background: #1540ad;
  color: #fff;
}

.buy-link-btn {
  margin-top: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  min-height: 52px;
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #222;
  background: #fff;
}

.buy-link-btn.primary {
  background: var(--buy-brand);
  border-color: var(--buy-brand);
}

.buy-summary {
  margin-top: 14px;
  border: 1px solid var(--buy-line);
  border-radius: 12px;
  background: var(--buy-soft);
  padding: 14px;
  display: grid;
  gap: 8px;
}

.buy-summary-line {
  margin: 0;
  font-size: 14px;
  color: #454545;
}

.buy-summary-line strong {
  color: #222;
}

.buy-review-title {
  margin-top: 18px;
}

.buy-review-vehicle {
  margin-top: 14px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d9dde3;
  background: #fff;
}

.buy-review-vehicle-media-wrap {
  background: #07070a;
}

.buy-review-vehicle-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.buy-review-vehicle-body {
  padding: 14px 16px 10px;
}

.buy-review-vehicle-name {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #1f2937;
}

.buy-review-vehicle-meta {
  margin: 6px 0 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.35;
}

.buy-review-price-row {
  border-top: 1px solid #e5e7eb;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  font-size: 17px;
  color: #475467;
}

.buy-review-price-row strong {
  font-size: 20px;
  line-height: 1;
  color: #1f2937;
}

.buy-review-section {
  margin-top: 18px;
}

.buy-review-heading {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 600;
  color: #1f2937;
}

.buy-review-delivery-card {
  border-radius: 18px;
  border: 1px solid #d9dde3;
  background: #fff;
  padding: 16px;
}

.buy-review-delivery-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
}

.buy-review-delivery-line {
  margin: 6px 0 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.35;
}

.buy-review-divider {
  border-top: 1px solid #e5e7eb;
  margin: 14px 0;
}

.buy-review-delivery-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
  color: #475467;
}

.buy-review-delivery-date-row strong {
  color: #1f2937;
  font-size: 16px;
}

.buy-review-costs {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid #e4e7ec;
  background: #f8fafc;
  padding: 16px;
}

.buy-review-cost-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  color: #475467;
}

.buy-review-cost-line + .buy-review-cost-line {
  margin-top: 10px;
}

.buy-review-cost-line strong {
  color: #344054;
}

.buy-review-green {
  color: #16a34a !important;
}

.buy-review-total-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 19px;
  font-weight: 600;
  color: #1f2937;
}

.buy-review-payment-ok {
  margin-top: 14px;
  border: 1px solid #ccefd8;
  background: #ecfdf3;
  border-radius: 12px;
  min-height: 46px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #15803d;
  font-size: 16px;
  font-weight: 600;
}

.buy-review-payment-ok svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.buy-review-payment-pending {
  border-color: #fde68a;
  background: #fffbeb;
  color: #a16207;
}

.buy-review-payment-ok circle,
.buy-review-payment-ok path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buy-review-process {
  margin-top: 18px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.buy-review-process-grid {
  display: grid;
  gap: 8px;
}

.buy-review-process-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #4b5563;
}

.buy-review-process-grid strong {
  color: #1f2937;
}

.buy-review-security {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #98a2b3;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.buy-review-security svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.buy-review-security path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buy-review-finalize {
  margin-top: 18px;
}

.buy-purchase-hero {
  margin-bottom: 16px;
}

.buy-purchase-greeting {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 500;
  color: #1f2937;
}

.buy-purchase-subtitle {
  margin: 10px 0 0;
  font-size: 14px;
  color: #475467;
}

.buy-purchase-grid {
  display: grid;
  gap: 18px;
}

.buy-purchase-main-card,
.buy-purchase-side-card {
  border-radius: 24px;
  border: 1px solid #e4e7ec;
  background: #fff;
  padding: 22px;
}

.buy-purchase-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.buy-purchase-main-head h2,
.buy-purchase-side-card h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  color: #1f2937;
}

.buy-purchase-badge {
  border-radius: 999px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 14px;
}

.buy-purchase-timeline {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.buy-purchase-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
}

.buy-purchase-step + .buy-purchase-step {
  margin-top: 12px;
  padding-top: 12px;
}

.buy-purchase-step + .buy-purchase-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: -12px;
  width: 2px;
  height: 24px;
  background: #e4e7ec;
}

.buy-purchase-step-marker {
  margin-top: 2px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid #d0d5dd;
  background: #fff;
  color: #98a2b3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.buy-purchase-step-marker[data-state='done'] {
  border-color: #65d64f;
  background: #8cff01;
  color: #14532d;
}

.buy-purchase-step-marker[data-state='active'] {
  border-color: #0ea5e9;
  background: #0ea5e9;
  color: #fff;
}

.buy-purchase-step-marker svg {
  width: 18px;
  height: 18px;
}

.buy-purchase-step-marker path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.buy-purchase-step-body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 500;
  color: #1f2937;
}

.buy-purchase-step-body p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475467;
}

.buy-purchase-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.buy-purchase-step-status {
  border-radius: 999px;
  border: 1px solid #d0d5dd;
  color: #667085;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 7px 12px;
}

.buy-purchase-step-status.is-active {
  border-color: #bae6fd;
  color: #0284c7;
  background: #e0f2fe;
}

.buy-purchase-step-status.is-done {
  border-color: #86efac;
  color: #15803d;
  background: #f0fdf4;
}

.buy-purchase-doc-card {
  margin-top: 12px;
  border: 1px solid #cae9ff;
  background: #f0f9ff;
  border-radius: 16px;
  padding: 14px;
}

.buy-purchase-doc-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #98a2b3 !important;
  font-size: 12px !important;
  font-weight: 700;
}

.buy-purchase-doc-title {
  margin: 6px 0 0 !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
  color: #1f2937 !important;
  font-weight: 600;
}

.buy-purchase-doc-id {
  margin: 4px 0 0 !important;
  color: #667085 !important;
  font-size: 13px !important;
}

.buy-purchase-doc-btn {
  margin-top: 12px;
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 0;
  background: #0ea5e9;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.buy-purchase-doc-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.buy-purchase-side-card h2 {
  margin-bottom: 14px;
}

.buy-purchase-vehicle-media-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
}

.buy-purchase-vehicle-media {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.buy-purchase-vehicle-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 999px;
  background: #8cff01;
  color: #14532d;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 12px;
}

.buy-purchase-side-label {
  margin: 14px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #98a2b3;
  font-weight: 700;
}

.buy-purchase-side-model {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  color: #1f2937;
}

.buy-purchase-side-specs {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.buy-purchase-side-specs p {
  margin: 3px 0 0;
  color: #1f2937;
  font-size: 15px;
  font-weight: 600;
}

.buy-purchase-side-summary {
  margin-top: 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid #e4e7ec;
  padding: 14px;
  display: grid;
  gap: 10px;
}

.buy-purchase-side-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.buy-purchase-side-summary span {
  font-size: 13px;
  color: #475467;
}

.buy-purchase-side-summary strong {
  font-size: 15px;
  color: #1f2937;
}

.buy-purchase-side-link {
  margin-top: 14px;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.buy-dashboard-box {
  margin-top: 14px;
  border: 1px solid var(--buy-line);
  border-radius: 12px;
  padding: 14px;
  background: var(--buy-soft);
  display: grid;
  gap: 4px;
}

.buy-dashboard-label {
  margin: 0;
  font-size: 13px;
  color: var(--buy-muted);
}

.buy-dashboard-state {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
}

.buy-dashboard-time {
  margin: 0;
  font-size: 14px;
  color: var(--buy-warn-text);
  font-weight: 600;
}

.buy-confirm {
  text-align: center;
  padding: 28px 22px;
}

.buy-confirm-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--buy-brand);
  color: #1f1f1f;
  font-size: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-weight: 700;
}

.buy-confirm h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.buy-confirm p {
  margin: 8px 0 0;
  color: var(--buy-muted);
  font-size: 14px;
}

.buy-intent-grid {
  display: grid;
  gap: 16px;
}

.buy-intent-note {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.45;
  color: #8a5a00;
}

@media (min-width: 980px) {
  .buy-intent-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .buy-purchase-grid {
    grid-template-columns: minmax(0, 1.7fr) minmax(340px, 1fr);
    align-items: start;
  }
}

@media (max-width: 560px) {
  .buy-grid.cols-2 {
    grid-template-columns: 1fr;
  }

  .buy-flow-shell {
    width: min(92vw, 470px);
  }

  .buy-delivery-title {
    font-size: 22px;
  }

  .buy-delivery-subtitle {
    font-size: 14px;
  }

  .buy-delivery-methods {
    grid-template-columns: 1fr;
  }

  .buy-delivery-method {
    min-height: 138px;
  }

  .buy-delivery-method strong {
    font-size: 15px;
  }

  .buy-delivery-method-note {
    font-size: 13px;
  }

  .buy-note-box {
    font-size: 13px;
  }

  .buy-pickup-name {
    font-size: 14px;
  }

  .buy-pickup-address {
    font-size: 12px;
  }

  .buy-calendar-head strong {
    font-size: 16px;
  }

  .buy-calendar-day {
    font-size: 15px;
  }

  .buy-pickup-slots {
    grid-template-columns: 1fr;
  }

  .buy-review-vehicle-media {
    height: 180px;
  }

  .buy-review-price-row {
    font-size: 15px;
  }

  .buy-review-price-row strong {
    font-size: 18px;
  }

  .buy-review-delivery-date-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-review-delivery-date-row strong {
    font-size: 15px;
  }

  .buy-review-cost-line {
    font-size: 15px;
  }

  .buy-review-total-line {
    font-size: 18px;
  }

  .buy-purchase-greeting {
    font-size: 26px;
  }

  .buy-purchase-subtitle {
    font-size: 13px;
  }

  .buy-purchase-main-card,
  .buy-purchase-side-card {
    padding: 16px;
  }

  .buy-purchase-main-head h2,
  .buy-purchase-side-card h2 {
    font-size: 18px;
  }

  .buy-purchase-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .buy-purchase-step + .buy-purchase-step::before {
    left: 18px;
  }

  .buy-purchase-step-marker {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .buy-purchase-step-body h3 {
    font-size: 15px;
  }

  .buy-purchase-step-body p {
    font-size: 13px;
  }

  .buy-purchase-step-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .buy-purchase-vehicle-media {
    height: 186px;
  }

  .buy-purchase-side-model {
    font-size: 16px;
  }

  .buy-purchase-side-summary strong {
    font-size: 14px;
  }
}

@media (min-width: 720px) {
  .buy-row.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buy-row.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
