body.automotive-tint-journey {
  --brand: #ed1b2f;
  --brand-dark: #c81022;
  --brand-rgb: 237, 27, 47;
}

.vehicle-type-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(360px, 100%);
  margin: 18px 0 14px;
  padding: 4px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
}

.vehicle-type-tabs[hidden] {
  display: none;
}

.vehicle-type-tab {
  min-height: 42px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--muted);
  font: 700 13px/1 var(--font-body);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.vehicle-type-tab:hover {
  color: var(--ink);
}

.vehicle-type-tab.is-active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--brand-rgb), 0.24);
}

.vehicle-type-tab:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.automotive-profile-panel {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.025);
}

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

.automotive-choice-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-control);
  background: var(--input-bg);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.automotive-choice-card:hover {
  border-color: rgba(var(--brand-rgb), 0.7);
  transform: translateY(-1px);
}

.automotive-choice-card.is-active {
  border-color: var(--brand);
  background: rgba(var(--brand-rgb), 0.11);
  box-shadow: inset 3px 0 0 var(--brand);
}

.automotive-choice-card strong,
.automotive-choice-card span {
  display: block;
}

.automotive-choice-card strong {
  font-family: var(--font-heading);
  font-size: 18px;
}

.automotive-choice-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.automotive-shade-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(88px, 1fr));
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 8px;
}

.automotive-shade-card {
  min-width: 88px;
  min-height: 122px;
  padding: 10px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-control);
  background: var(--input-bg);
  color: var(--ink);
  cursor: pointer;
  text-align: center;
}

.automotive-shade-card.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(var(--brand-rgb), 0.18);
}

.automotive-shade-swatch {
  display: block;
  height: 58px;
  margin-bottom: 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 5px;
  background:
    linear-gradient(rgba(5, 6, 7, var(--shade-opacity)), rgba(5, 6, 7, var(--shade-opacity))),
    linear-gradient(135deg, #f4f6f7 0 44%, #9aa4aa 44% 51%, #d9dfe2 51% 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    inset 0 -16px 24px rgba(0, 0, 0, 0.12);
}

.automotive-shade-card strong,
.automotive-shade-card small {
  display: block;
}

.automotive-shade-card small {
  margin-top: 3px;
  color: var(--muted);
}

.automotive-windshield-shade {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
}

.automotive-windshield-shade h4 {
  margin: 0 0 12px;
  font-size: 15px;
}

.automotive-removal-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.automotive-removal-option {
  min-height: 88px;
  padding: 15px 16px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: var(--input-bg);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.automotive-removal-option:hover {
  border-color: rgba(var(--brand-rgb), 0.5);
}

.automotive-removal-option.is-active {
  border-color: var(--brand);
  background: rgba(var(--brand-rgb), 0.09);
  box-shadow: inset 3px 0 0 var(--brand);
}

.automotive-removal-option strong,
.automotive-removal-option span {
  display: block;
}

.automotive-removal-option strong {
  font-size: 14px;
}

.automotive-removal-option span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.automotive-removal-option:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(var(--brand-rgb), 0.32);
}

.automotive-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.automotive-location-map {
  width: 100%;
  height: 320px;
  margin-top: 12px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-panel);
  overflow: hidden;
  background: #111;
}

.automotive-map-note {
  margin: 7px 0 18px;
  color: var(--muted);
  font-size: 12px;
}

.automotive-address-grid textarea,
#automotive-comments {
  width: 100%;
  resize: vertical;
}

.automotive-acknowledgements {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.automotive-consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: 14px 15px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: var(--input-bg);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.automotive-consent-row:hover {
  border-color: rgba(var(--brand-rgb), 0.48);
}

.automotive-consent-row:has(input:checked) {
  border-color: rgba(var(--brand-rgb), 0.72);
  background: rgba(var(--brand-rgb), 0.07);
}

.automotive-consent-copy {
  order: 1;
  min-width: 0;
}

.automotive-consent-copy strong,
.automotive-consent-copy > span {
  display: block;
}

.automotive-consent-copy strong {
  font-size: 14px;
  line-height: 1.3;
}

.automotive-consent-copy > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.automotive-consent-control {
  position: relative;
  order: 2;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.automotive-consent-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.automotive-consent-box {
  position: absolute;
  inset: 0;
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  place-items: center;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.automotive-consent-control input:checked + .automotive-consent-box {
  border-color: var(--brand);
  background: var(--brand);
}

.automotive-consent-control input:checked + .automotive-consent-box::after {
  content: "\2713";
}

.automotive-consent-control input:focus-visible + .automotive-consent-box {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(var(--brand-rgb), 0.32);
}

.automotive-site-checks-head {
  margin-top: 22px;
}

.automotive-site-checks-head h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16px;
}

.automotive-site-checks-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.automotive-site-checks {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.automotive-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 13px 15px;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: var(--input-bg);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.automotive-toggle-row:hover {
  border-color: rgba(var(--brand-rgb), 0.48);
}

.automotive-toggle-row:has(input:checked) {
  border-color: rgba(var(--brand-rgb), 0.72);
  background: rgba(var(--brand-rgb), 0.07);
}

.automotive-toggle-copy {
  min-width: 0;
}

.automotive-toggle-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}

.automotive-toggle-heading strong {
  font-size: 14px;
  line-height: 1.3;
}

.automotive-toggle-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.automotive-toggle-badge {
  padding: 2px 6px;
  border: 1px solid rgba(var(--brand-rgb), 0.4);
  border-radius: 4px;
  color: var(--brand);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.automotive-toggle-badge.is-optional {
  border-color: var(--card-border);
  color: var(--muted);
}

.automotive-toggle-control {
  position: relative;
  flex: 0 0 46px;
  width: 46px;
  height: 26px;
}

.automotive-toggle-control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
}

.automotive-toggle-track {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.automotive-toggle-track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  transition: transform 160ms ease;
}

.automotive-toggle-control input:checked + .automotive-toggle-track {
  border-color: var(--brand);
  background: var(--brand);
}

.automotive-toggle-control input:checked + .automotive-toggle-track::after {
  transform: translateX(20px);
}

.automotive-toggle-control input:focus-visible + .automotive-toggle-track {
  outline: 2px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(var(--brand-rgb), 0.32);
}

.automotive-review-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-panel);
  background: var(--card-border);
}

.automotive-review-details div {
  padding: 13px 14px;
  background: var(--input-bg);
}

.automotive-review-details div.is-wide {
  grid-column: 1 / -1;
}

.automotive-review-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.automotive-review-details dd {
  margin: 0;
  font-weight: 650;
  line-height: 1.4;
}

.automotive-help-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.automotive-help-button:hover {
  background: var(--brand-dark);
}

.automotive-help-dock {
  display: contents;
}

body.automotive-tint-journey .customer-account-trigger,
body.automotive-tint-journey .customer-account-checkout-card,
body.automotive-tint-journey .customer-account-mode-grid,
body.automotive-tint-journey .customer-account-mode-option,
body.automotive-tint-journey .customer-account-status,
body.automotive-tint-journey .draft-controls,
body.automotive-tint-journey #vehicle-field-label,
body.automotive-tint-journey .vehicle-detail-grid,
body.automotive-tint-journey .picker-panel:has(#service-card-grid),
body.automotive-tint-journey .picker-panel:has(#staff-card-grid) {
  display: none;
}

body.automotive-tint-journey .booking-review-card .review-grid,
body.automotive-tint-journey .booking-review-card .consent-check,
body.automotive-tint-journey .is-tint-removal-addon {
  display: none;
}

body.automotive-tint-journey .booking-review-card,
body.automotive-tint-journey .customer-details-card,
body.automotive-tint-journey .automotive-confirmation-panel {
  padding: 18px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

body.automotive-tint-journey .booking-review-card {
  border-top: 3px solid var(--brand);
}

body.automotive-tint-journey .booking-review-card .panel-description {
  margin-top: 5px;
}

body.automotive-tint-journey .customer-details-card .picker-headline,
body.automotive-tint-journey .automotive-confirmation-panel .picker-headline {
  margin-bottom: 14px;
}

.field-optional {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

body.automotive-tint-journey .category-tab-bar.automotive-film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  overflow: visible;
}

body.automotive-tint-journey .automotive-film-card {
  display: flex;
  min-height: 310px;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-panel);
  background: var(--input-bg);
  color: var(--ink);
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  white-space: normal;
}

body.automotive-tint-journey .automotive-film-card:hover,
body.automotive-tint-journey .automotive-film-card.is-active {
  border-color: var(--brand);
  background: rgba(var(--brand-rgb), 0.09);
}

.automotive-film-positioning {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.automotive-film-card > strong {
  margin-top: 9px;
  font-family: var(--font-heading);
  font-size: 24px;
}

.automotive-film-description {
  min-height: 40px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.automotive-film-card dl {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.automotive-film-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--card-border);
}

.automotive-film-card dt {
  color: var(--muted);
  font-size: 11px;
}

.automotive-film-card dd {
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.automotive-film-price {
  margin-top: auto;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

body.automotive-tint-journey .customer-topbar {
  justify-content: flex-end;
}

body.automotive-tint-journey #distance-input-wrap {
  margin-bottom: 0;
}

body.automotive-tint-journey #distance-input-wrap > #distance-status {
  display: none;
}

body.automotive-tint-journey #customer-consent {
  display: none;
}

body.automotive-tint-journey #customer-consent + span {
  display: none;
}

body.automotive-tint-journey .payment-choice-card {
  display: none;
}

body.automotive-tint-journey .booking-terms-note {
  display: none;
}

body.automotive-tint-journey #checkout-btn {
  width: 100%;
  min-height: 52px;
  font-size: 16px;
}

body.automotive-tint-journey .addon-picker-card .automotive-addon-price {
  display: grid;
  gap: 3px;
  margin-top: 8px;
}

.automotive-addon-original {
  color: var(--muted);
  font-size: 12px;
  text-decoration: line-through;
}

.automotive-addon-saving {
  color: #7ee2a8;
  font-size: 12px;
  font-weight: 700;
}

.automotive-addon-included {
  color: #7ee2a8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.automotive-film-facts {
  display: grid;
  gap: 5px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.automotive-film-facts strong {
  color: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
}

body.automotive-tint-journey .addon-picker-card:disabled {
  cursor: default;
  opacity: 0.78;
}

body.automotive-tint-journey .wizard-alert.success {
  position: relative;
  min-height: 44px;
  padding: 11px 14px 11px 44px;
  border-color: rgba(var(--brand-rgb), 0.58);
  background: rgba(var(--brand-rgb), 0.09);
  color: var(--ink);
  font-weight: 650;
}

body.automotive-tint-journey .wizard-alert.success::before {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 14px;
  display: grid;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(var(--brand-rgb), 0.72);
  border-radius: 50%;
  background: rgba(var(--brand-rgb), 0.16);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
}

body.automotive-tint-journey .booking-success-kicker {
  color: var(--brand);
}

body.automotive-tint-journey .garage-status.success,
body.automotive-tint-journey .customer-account-status.tone-success {
  color: var(--ink);
  font-weight: 650;
}

body.automotive-tint-journey .garage-status.success::before,
body.automotive-tint-journey .customer-account-status.tone-success::before {
  content: "\2713";
  margin-right: 6px;
  color: var(--brand);
  font-weight: 900;
}

body.automotive-tint-journey .status-pill.ok {
  border-color: rgba(var(--brand-rgb), 0.42);
  background: rgba(var(--brand-rgb), 0.1);
  color: var(--ink);
}

body.automotive-tint-journey #location-card-grid.single-location-mode {
  display: block;
}

.single-location-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(320px, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.single-location-copy {
  display: flex;
  min-width: 0;
  padding: 12px 8px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.single-location-eyebrow {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.single-location-copy h4 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 23px;
  line-height: 1.2;
}

.single-location-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.single-location-directions {
  margin-top: 16px;
}

.single-location-map {
  min-height: 224px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 6px;
  background: var(--input-bg);
}

.single-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 224px;
  border: 0;
}

@media (max-width: 760px) {
  body.automotive-tint-journey {
    padding-bottom: 24px;
  }

  body.automotive-tint-journey .customer-mobile-bar {
    display: none;
  }

  .automotive-help-dock {
    position: sticky;
    top: 0;
    z-index: 950;
    display: flex;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(12, 12, 13, 0.96);
    justify-content: flex-end;
    backdrop-filter: blur(10px);
  }

  .automotive-profile-panel {
    padding: 16px;
  }

  .automotive-choice-grid,
  .automotive-removal-options,
  .automotive-review-details {
    grid-template-columns: 1fr;
  }

  .automotive-consent-row {
    min-height: 84px;
    padding: 13px;
  }

  body.automotive-tint-journey .category-tab-bar.automotive-film-grid {
    display: flex;
    width: auto;
    max-width: 100%;
    min-width: 0;
    contain: inline-size;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  body.automotive-tint-journey .automotive-film-card {
    flex: 0 0 min(82vw, 320px);
    min-height: 292px;
    min-width: 0;
    scroll-snap-align: start;
  }

  .automotive-shade-list {
    display: flex;
    width: auto;
    max-width: 100%;
    min-width: 0;
    contain: inline-size;
  }

  .automotive-shade-card {
    flex: 0 0 92px;
  }

  body.automotive-tint-journey .journey-step,
  body.automotive-tint-journey .journey-step-host,
  body.automotive-tint-journey #wizard-step-region,
  body.automotive-tint-journey .category-tabs-panel,
  body.automotive-tint-journey .picker-panel,
  body.automotive-tint-journey .service-selector-block,
  body.automotive-tint-journey .addon-list-fieldset {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  body.automotive-tint-journey .journey-step-host,
  body.automotive-tint-journey #wizard-step-region,
  body.automotive-tint-journey .category-tabs-panel {
    contain: inline-size;
    overflow-x: hidden;
  }

  .automotive-location-map {
    height: 270px;
  }

  .single-location-detail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .single-location-copy {
    padding: 8px 4px 4px;
  }

  .single-location-copy h4 {
    font-size: 20px;
  }

  .single-location-map,
  .single-location-map iframe {
    min-height: 190px;
  }

  .automotive-help-button {
    position: static;
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 44px;
    padding: 10px 15px;
    border-color: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    box-shadow: none;
    font-size: 13px;
    line-height: 1;
    align-items: center;
  }
}
.same-day-whatsapp-link {
  display: block;
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 3px solid var(--brand-primary, #e31e24);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  background: rgba(227, 30, 36, 0.06);
}

.same-day-whatsapp-link:hover {
  background: rgba(227, 30, 36, 0.11);
}

.same-day-whatsapp-link[hidden] {
  display: none;
}
