/* =========================================================
   Airport Shuttle TR - Vehicle Results V2
   Clean booking-flow layout + Premium vehicle media
========================================================= */

:root {
  --ast-r-navy: #07111f;
  --ast-r-blue: #2563eb;
  --ast-r-blue-2: #1d4ed8;
  --ast-r-green: #16a34a;
  --ast-r-gold: #f6b84b;
  --ast-r-bg: #f4f7fb;
  --ast-r-card: #ffffff;
  --ast-r-muted: #64748b;
  --ast-r-soft: #f8fafc;
  --ast-r-line: rgba(15, 23, 42, .08);
  --ast-r-line-strong: rgba(15, 23, 42, .13);
  --ast-r-shadow-soft: 0 10px 28px rgba(15, 23, 42, .045);
  --ast-r-shadow-card: 0 12px 28px rgba(15, 23, 42, .045);
  --ast-r-shadow-card-hover: 0 18px 44px rgba(15, 23, 42, .075);
}

.ast-results-page {
  min-height: 100vh;
  background: var(--ast-r-bg);
  color: #0f172a;
}

.ast-results-container {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

/* =========================================================
   Shell
========================================================= */

.ast-results-shell {
  padding: 20px 0 72px;
}

.ast-results-breadcrumb {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
}

.ast-results-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.ast-results-breadcrumb a:hover {
  color: var(--ast-r-blue);
  text-decoration: none;
}

.ast-results-breadcrumb i {
  font-size: 10px;
  color: #cbd5e1;
}

/* =========================================================
   Stepper
========================================================= */

.ast-results-stepper {
  margin-bottom: 22px;
  padding: 0 10px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 0;
  position: relative;
}

.ast-results-stepper::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 18px;
  height: 1px;
  background: rgba(15, 23, 42, .14);
  z-index: 0;
}

.ast-results-stepper span {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #94a3b8;
  font-size: 11.5px;
  font-weight: 850;
  text-align: center;
}

.ast-results-stepper b {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .16);
  color: #94a3b8;
  font-size: 14px;
  font-weight: 950;
}

.ast-results-stepper .is-active {
  color: var(--ast-r-blue);
}

.ast-results-stepper .is-active b {
  color: #fff;
  background: var(--ast-r-blue);
  border-color: var(--ast-r-blue);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .20);
}

/* =========================================================
   Main Layout
========================================================= */

.ast-results-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.ast-results-main,
.ast-results-sidebar {
  min-width: 0;
}

.ast-summary-sticky {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 14px;
}

/* =========================================================
   Left Search Panel
========================================================= */

.ast-search-panel {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ast-r-line);
  overflow: hidden;
}

.ast-search-panel-head {
  min-height: 48px;
  padding: 0 14px;
  border-bottom: 1px solid var(--ast-r-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ast-search-panel-head strong {
  color: var(--ast-r-navy);
  font-size: 13.5px;
  font-weight: 950;
}

.ast-search-panel-head a {
  color: var(--ast-r-blue);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.ast-search-panel-head a:hover {
  color: var(--ast-r-blue-2);
  text-decoration: none;
}

.ast-search-panel-body {
  padding: 12px;
}

.ast-search-panel-point {
  min-height: 62px;
  padding: 11px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .10);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ast-search-panel-point + .ast-search-panel-point {
  margin-top: 8px;
}

.ast-search-panel-point > i {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  font-size: 13px;
}

.ast-search-panel-point > i.is-start {
  color: #166534;
  background: #dcfce7;
}

.ast-search-panel-point > i.is-end {
  color: #1d4ed8;
  background: #dbeafe;
}

.ast-search-panel-point span,
.ast-search-panel-grid span,
.ast-search-panel-note span {
  color: var(--ast-r-muted);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.ast-search-panel-point strong {
  display: block;
  margin-top: 3px;
  color: #0f172a;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 900;
}

.ast-search-panel-swap {
  width: 34px;
  height: 34px;
  margin: -5px auto;
  position: relative;
  z-index: 2;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, .22);
  background: #eff6ff;
  color: var(--ast-r-blue);
  display: grid;
  place-items: center;
  cursor: default;
}

.ast-search-panel-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ast-search-panel-grid div {
  min-height: 54px;
  padding: 10px;
  border-radius: 14px;
  background: var(--ast-r-soft);
  border: 1px solid rgba(15, 23, 42, .07);
  display: grid;
  gap: 4px;
}

.ast-search-panel-grid span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ast-search-panel-grid span i {
  color: var(--ast-r-blue);
}

.ast-search-panel-grid strong {
  color: #334155;
  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 900;
}

.ast-search-panel-note {
  margin-top: 10px;
  padding: 10px;
  border-radius: 14px;
  background: #fffbeb;
  border: 1px solid rgba(246, 184, 75, .24);
}

.ast-search-panel-note span {
  color: #92400e;
}

.ast-search-panel-note p {
  margin: 4px 0 0;
  color: #78350f;
  font-size: 12.5px;
  line-height: 1.5;
}

.ast-search-panel-submit {
  margin-top: 12px;
  min-height: 42px;
  width: 100%;
  border-radius: 12px;
  background: var(--ast-r-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

.ast-search-panel-submit:hover {
  color: #fff;
  background: var(--ast-r-blue-2);
  text-decoration: none;
}

/* =========================================================
   Help / Side cards
========================================================= */

.ast-help-panel,
.ast-side-info-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ast-r-line);
}

.ast-help-panel {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 3px solid var(--ast-r-blue);
}

.ast-help-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--ast-r-blue);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.ast-help-panel strong,
.ast-side-info-title {
  color: var(--ast-r-navy);
  font-size: 13px;
  font-weight: 950;
}

.ast-help-panel span {
  display: block;
  margin-top: 2px;
  color: var(--ast-r-muted);
  font-size: 12px;
  line-height: 1.35;
}

.ast-side-info-card {
  padding: 14px;
}

.ast-side-info-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ast-side-info-title i {
  color: var(--ast-r-blue);
}

.ast-side-info-card p {
  margin: 8px 0 0;
  color: var(--ast-r-muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.ast-side-info-card p span {
  display: inline-block;
  margin-right: 8px;
}

/* =========================================================
   Mobile Summary
========================================================= */

.ast-results-mobile-summary {
  display: none;
}

/* =========================================================
   Results Header
========================================================= */

.ast-results-list-head {
  margin-bottom: 14px;
}

.ast-results-kicker {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--ast-r-blue);
  background: #eff6ff;
  border: 1px solid rgba(37, 99, 235, .12);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 900;
  margin-bottom: 9px;
}

.ast-results-list-head h1 {
  margin: 0;
  color: var(--ast-r-navy);
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -.05em;
  font-weight: 950;
}

.ast-results-list-head p {
  margin: 8px 0 0;
  max-width: 640px;
  color: var(--ast-r-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

/* =========================================================
   Alerts
========================================================= */

.ast-results-alert {
  margin-bottom: 12px;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid var(--ast-r-line);
  background: #fff;
}

.ast-results-alert-warning {
  color: #92400e;
  background: #fffbeb;
  border-color: rgba(246, 184, 75, .28);
}

/* =========================================================
   Toolbar
========================================================= */

.ast-results-toolbar {
  margin-bottom: 12px;
  border-radius: 16px;
  padding: 11px 12px;
  background: #fff;
  border: 1px solid var(--ast-r-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ast-results-count {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ast-r-navy);
  white-space: nowrap;
}

.ast-results-count strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -.04em;
}

.ast-results-count span {
  color: var(--ast-r-muted);
  font-size: 12.5px;
  font-weight: 800;
}

.ast-results-controls {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.ast-currency-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, .07);
}

.ast-currency-tabs a {
  min-width: 46px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 950;
}

.ast-currency-tabs a.is-active {
  color: var(--ast-r-blue);
  background: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .07);
}

.ast-control-field {
  display: grid;
  gap: 4px;
}

.ast-control-field label {
  margin: 0;
  color: #64748b;
  font-size: 10.5px;
  font-weight: 900;
}

.ast-control-field select {
  min-height: 36px;
  min-width: 132px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: #fff;
  color: #334155;
  padding: 0 32px 0 11px;
  font-size: 12px;
  font-weight: 800;
  outline: none;
}

.ast-control-field select:focus {
  border-color: rgba(37, 99, 235, .42);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
}

/* =========================================================
   Vehicle Cards
========================================================= */

.ast-vehicle-results-list {
  display: grid;
  gap: 14px;
}

.ast-result-vehicle-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--ast-r-line-strong);
  box-shadow: var(--ast-r-shadow-card);
  transition:
    border-color .16s ease,
    background .16s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.ast-result-vehicle-card:hover {
  border-color: rgba(37, 99, 235, .22);
  box-shadow: var(--ast-r-shadow-card-hover);
  transform: translateY(-1px);
}

.ast-result-vehicle-card.is-preferred {
  border-left: 4px solid var(--ast-r-green);
  box-shadow:
    0 14px 34px rgba(15, 23, 42, .055),
    inset 4px 0 0 rgba(22, 163, 74, .05);
}

.ast-result-vehicle-inner {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr) 210px;
  min-height: 205px;
}

/* =========================================================
   Vehicle Image - Professional card media
========================================================= */

.ast-result-media {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  background: #eef3f8;
  border-right: 1px solid rgba(15, 23, 42, .07);
  isolation: isolate;
}

.ast-result-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0) 46%, rgba(7, 17, 31, .18) 100%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, .18), transparent 42%);
}

.ast-result-media::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .68);
}

.ast-result-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 205px;
  display: block;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: scale(1.01);
  transition: transform .24s ease, filter .24s ease;
}

.ast-result-vehicle-card:hover .ast-result-media img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.ast-preferred-badge {
  position: absolute;
  z-index: 3;
  left: 10px;
  top: 10px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  color: #166534;
  background: rgba(240, 253, 244, .96);
  border: 1px solid rgba(22, 163, 74, .20);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 950;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(22, 163, 74, .12);
}

.ast-result-info {
  padding: 16px 17px;
  min-width: 0;
}

.ast-result-title-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.ast-result-title-row h2 {
  margin: 0;
  color: var(--ast-r-navy);
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -.04em;
  font-weight: 950;
}

.ast-result-subtitle {
  margin: 6px 0 0;
  color: var(--ast-r-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  font-weight: 750;
}

.ast-result-subtitle span:not(:last-child)::after {
  content: "•";
  margin-left: 6px;
  color: #cbd5e1;
}

.ast-rating-inline {
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid rgba(246, 184, 75, .24);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 950;
  white-space: nowrap;
}

.ast-rating-inline i {
  color: var(--ast-r-gold);
}

.ast-result-features,
.ast-service-tags,
.ast-price-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ast-result-features {
  margin-top: 13px;
}

.ast-result-features span,
.ast-service-tags span,
.ast-price-badges span {
  min-height: 27px;
  padding: 0 9px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 850;
}

.ast-result-features span {
  color: #334155;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .07);
}

.ast-result-features i,
.ast-service-tags i {
  color: var(--ast-r-blue);
}

.ast-service-tags {
  margin-top: 10px;
}

.ast-service-tags span {
  color: #475569;
  background: #fff;
  border: 1px dashed rgba(15, 23, 42, .12);
}

.ast-result-desc {
  margin-top: 11px;
}

.ast-result-desc p {
  margin: 0;
  color: var(--ast-r-muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ast-desc-more {
  margin-top: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ast-r-blue);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

/* =========================================================
   Price Area
========================================================= */

.ast-result-price {
  padding: 16px;
  border-left: 1px dashed rgba(15, 23, 42, .18);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.ast-price-main {
  display: grid;
  gap: 3px;
}

.ast-price-main span {
  color: var(--ast-r-muted);
  font-size: 11.5px;
  font-weight: 850;
}

.ast-price-main strong {
  color: var(--ast-r-navy);
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

.ast-price-main small {
  color: #94a3b8;
  font-size: 10.5px;
  font-weight: 900;
}

.ast-price-alt-list {
  margin-top: 9px;
  display: grid;
  gap: 5px;
}

.ast-price-alt-list div {
  min-height: 28px;
  border-radius: 10px;
  padding: 0 9px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.ast-price-alt-list div.is-active {
  border-color: rgba(37, 99, 235, .18);
  background: #eff6ff;
}

.ast-price-alt-list span {
  color: #64748b;
  font-size: 10.5px;
  font-weight: 850;
}

.ast-price-alt-list b {
  color: #334155;
  font-size: 11.5px;
  font-weight: 950;
}

.ast-price-badges {
  margin-top: 9px;
}

.ast-price-badges span {
  color: #166534;
  background: #f0fdf4;
  border: 1px solid rgba(22, 163, 74, .14);
}

.ast-price-badges span:nth-child(2) {
  color: var(--ast-r-blue);
  background: #eff6ff;
  border-color: rgba(37, 99, 235, .12);
}

.ast-price-missing {
  color: #b91c1c;
  font-size: 12.5px;
  font-weight: 900;
}

.ast-select-vehicle-btn,
.ast-results-empty a {
  min-height: 42px;
  border-radius: 10px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #fff;
  background: var(--ast-r-blue);
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.ast-select-vehicle-btn:hover,
.ast-results-empty a:hover {
  color: #fff;
  background: var(--ast-r-blue-2);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(37, 99, 235, .22);
}

/* =========================================================
   Empty / Pagination
========================================================= */

.ast-results-empty {
  min-height: 260px;
  border-radius: 18px;
  background: #fff;
  border: 1px dashed rgba(15, 23, 42, .16);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  text-align: center;
  padding: 32px;
}

.ast-results-empty > i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #eff6ff;
  color: var(--ast-r-blue);
  display: grid;
  place-items: center;
  font-size: 26px;
}

.ast-results-empty h2 {
  margin: 0;
  color: var(--ast-r-navy);
  font-size: 21px;
  font-weight: 950;
}

.ast-results-empty p {
  margin: 0;
  color: var(--ast-r-muted);
  font-size: 13.5px;
}

.ast-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.ast-pagination a,
.ast-pagination span,
.ast-pagination strong {
  min-width: 36px;
  height: 36px;
  padding: 0 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ast-r-line);
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 900;
}

.ast-pagination a:hover {
  color: var(--ast-r-blue);
  background: #eff6ff;
  border-color: rgba(37, 99, 235, .14);
}

.ast-pagination .is-disabled {
  opacity: .45;
}

.ast-cancel-note {
  margin: 12px 0 0;
  color: var(--ast-r-muted);
  font-size: 12px;
  line-height: 1.55;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1100px) {
  .ast-results-layout {
    grid-template-columns: 1fr;
  }

  .ast-results-sidebar {
    order: 1;
  }

  .ast-results-main {
    order: 2;
  }

  .ast-summary-sticky {
    position: static;
  }

  .ast-search-panel,
  .ast-help-panel,
  .ast-side-info-card {
    display: none;
  }

  .ast-results-mobile-summary {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
    padding: 11px 12px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--ast-r-line);
  }

  .ast-results-mobile-summary div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ast-r-navy);
    font-size: 12.5px;
    font-weight: 900;
  }

  .ast-results-mobile-summary strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ast-results-mobile-summary i {
    color: #94a3b8;
    flex: 0 0 auto;
  }

  .ast-results-mobile-summary span {
    color: var(--ast-r-muted);
    font-size: 11.5px;
    font-weight: 800;
  }
}

@media (max-width: 992px) {
  .ast-result-vehicle-inner {
    grid-template-columns: 250px minmax(0, 1fr);
  }

  .ast-result-price {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px dashed rgba(15, 23, 42, .18);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .ast-select-vehicle-btn {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .ast-results-container {
    width: min(100% - 24px, 1180px);
  }

  .ast-results-shell {
    padding: 14px 0 54px;
  }

  .ast-results-breadcrumb {
    display: none;
  }

  .ast-results-stepper {
    margin-bottom: 14px;
    padding: 0;
  }

  .ast-results-stepper::before {
    left: 12%;
    right: 12%;
    top: 15px;
  }

  .ast-results-stepper span {
    font-size: 10px;
    gap: 5px;
  }

  .ast-results-stepper b {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .ast-results-mobile-summary {
    margin-bottom: 10px;
  }

  .ast-results-list-head {
    margin-bottom: 12px;
  }

  .ast-results-list-head h1 {
    font-size: 25px;
  }

  .ast-results-list-head p {
    font-size: 13px;
  }

  .ast-results-toolbar {
    display: grid;
    gap: 11px;
    border-radius: 14px;
    padding: 11px;
  }

  .ast-results-controls {
    justify-content: stretch;
  }

  .ast-currency-tabs {
    width: 100%;
  }

  .ast-control-field {
    width: calc(50% - 4px);
  }

  .ast-control-field select {
    width: 100%;
    min-width: 0;
  }

  .ast-result-vehicle-card {
    border-radius: 16px;
  }

  .ast-result-vehicle-card:hover {
    transform: none;
  }

  .ast-result-vehicle-card.is-preferred {
    border-left-width: 1px;
    border-top: 4px solid var(--ast-r-green);
  }

  .ast-result-vehicle-inner {
    grid-template-columns: 1fr;
  }

  .ast-result-media {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, .07);
  }

  .ast-result-media img {
    width: 100%;
    height: 230px;
    min-height: 230px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center;
    padding: 0;
  }

  .ast-result-info,
  .ast-result-price {
    padding: 15px;
  }

  .ast-result-title-row h2 {
    font-size: 19px;
  }

  .ast-result-price {
    grid-template-columns: 1fr;
  }

  .ast-price-main strong {
    font-size: 26px;
  }

  .ast-select-vehicle-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 480px) {
  .ast-results-container {
    width: min(100% - 18px, 1180px);
  }

  .ast-results-stepper span {
    font-size: 9.5px;
  }

  .ast-results-mobile-summary div {
    font-size: 12px;
  }

  .ast-results-list-head h1 {
    font-size: 23px;
  }

  .ast-control-field {
    width: 100%;
  }

  .ast-result-media {
    min-height: 205px;
  }

  .ast-result-media img {
    height: 205px;
    min-height: 205px;
    padding: 0;
  }

  .ast-result-title-row {
    display: grid;
    gap: 8px;
  }

  .ast-rating-inline {
    justify-self: start;
  }

  .ast-result-features span,
  .ast-service-tags span,
  .ast-price-badges span {
    font-size: 11px;
  }
}