:root {
  color-scheme: light;
  --primary: #0057d9;
  --primary-dark: #003f9e;
  --bg: #f4f7fb;
  --card: #ffffff;
  --text: #1f2933;
  --muted: #667085;
  --border: #e4eaf2;
  --warn: #b45309;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.dropdown-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p,
a,
button,
span,
strong,
em,
select {
  word-break: keep-all;
  overflow-wrap: break-word;
}

button,
select {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.page {
  width: min(100%, 480px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--bg);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 14px 16px 10px;
  background: rgba(244, 247, 251, 0.94);
  backdrop-filter: blur(14px);
}

.back-link {
  justify-self: start;
  grid-column: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 10px 13px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.brand {
  grid-column: 2;
  justify-self: center;
  display: grid;
  gap: 4px;
  text-align: center;
}

.brand small {
  color: var(--primary);
  font-size: 11px;
  font-weight: 900;
}

.brand strong {
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.top-call {
  grid-column: 3;
  justify-self: end;
  border: 1px solid #cfe0fb;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
  color: var(--primary-dark);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(0, 87, 217, 0.08);
}

.content {
  display: grid;
  gap: 14px;
  padding: 12px 18px 30px;
}

.title {
  display: grid;
  gap: 8px;
  padding: 6px 2px 2px;
}

.title h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
}

.title p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.search-service-area-section {
  margin-top: 8px;
  margin-bottom: 10px;
}

.search-service-area-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #dfe7f2;
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.search-service-area-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.search-service-area-fallback {
  display: none;
  color: var(--muted);
  padding: 24px 16px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.search-service-area-card.is-missing .search-service-area-fallback {
  display: block;
}

.search-box,
.result-box {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--card);
  padding: 18px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 15px;
  font-weight: 900;
}

.field label span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  border-radius: 9px;
  background: #eaf2ff;
  color: var(--primary-dark);
  font-size: 12px;
}

select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 0 14px;
  outline: none;
  font-size: 16px;
}

select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.12);
}

select:disabled {
  background: #f0f4f8;
  color: #98a2b3;
}

.native-value-select {
  display: none;
}

.select-dropdown {
  position: relative;
  width: 100%;
}

.custom-select-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 0 42px 0 14px;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.custom-select-button::after {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #98a2b3;
  border-bottom: 2px solid #98a2b3;
  content: "";
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.18s ease;
}

.select-dropdown.is-open .custom-select-button::after {
  transform: translateY(-36%) rotate(225deg);
}

.custom-select-button:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.12);
}

.custom-select-button:disabled {
  background: #f0f4f8;
  color: #98a2b3;
  cursor: not-allowed;
}

.custom-select-button.is-placeholder {
  color: #667085;
}

.custom-select-button.has-logo {
  padding-right: 96px;
}

.select-dropdown-backdrop {
  display: none;
}

.select-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.16);
}

.select-dropdown-sheet-header {
  display: none;
}

.select-dropdown-list {
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.custom-select-option {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  background: #f5f9ff;
  outline: none;
}

.custom-select-option.is-selected {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
}

.custom-select-separator {
  padding: 8px 12px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.dropdown-help-text {
  border-top: 1px solid #f1f5f9;
  color: #dc2626;
  padding: 12px 10px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
  word-break: keep-all;
  background: #fff;
  pointer-events: none;
}

#detailSelect {
  min-height: 54px;
  height: 54px;
  padding-right: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
}

#detailSelect option {
  font-size: 14px;
  font-weight: 500;
}

.detail-native-select {
  display: none;
}

.detail-dropdown {
  position: relative;
  width: 100%;
}

.detail-dropdown-button {
  position: relative;
  display: block;
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 0 42px 0 14px;
  outline: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.detail-dropdown-button::after {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #98a2b3;
  border-bottom: 2px solid #98a2b3;
  content: "";
  transform: translateY(-62%) rotate(45deg);
  transition: transform 0.18s ease;
}

.detail-dropdown.is-open .detail-dropdown-button::after {
  transform: translateY(-36%) rotate(225deg);
}

.detail-dropdown-button:focus-visible {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.12);
}

.detail-dropdown-button:disabled {
  background: #f0f4f8;
  color: #98a2b3;
  cursor: not-allowed;
}

.detail-dropdown-button.is-placeholder {
  color: #667085;
}

.detail-dropdown-backdrop {
  display: none;
}

.detail-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 30;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.16);
}

.detail-dropdown-sheet-header {
  display: none;
}

.detail-dropdown-list {
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.detail-dropdown-option {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.detail-dropdown-option:hover,
.detail-dropdown-option:focus-visible {
  background: #f5f9ff;
  outline: none;
}

.detail-dropdown-option.is-selected {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 600;
}

.manufacturer-select-wrap {
  position: relative;
}

#manufacturerSelect.has-logo {
  padding-right: 96px;
}

.manufacturer-select-logo {
  position: absolute;
  right: 42px;
  top: 50%;
  width: auto;
  max-width: 48px;
  max-height: 26px;
  object-fit: contain;
  pointer-events: none;
  transform: translateY(-50%);
}

.field-note {
  margin: -2px 0 0;
  color: #c24135;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.message {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.phone-cta {
  display: grid;
  gap: 14px;
  border: 1px solid #dbeafe;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
  padding: 16px;
  color: var(--text);
  box-shadow: 0 14px 28px rgba(0, 87, 217, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.phone-cta-copy {
  display: grid;
  gap: 5px;
}

.phone-cta-copy strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.32;
}

.phone-cta-copy em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 650;
  line-height: 1.5;
}

.phone-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #2f7df4 100%);
  color: #fff;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(0, 87, 217, 0.18);
}

.phone-cta:hover,
.phone-cta:focus-visible {
  border-color: #bfd8ff;
  box-shadow: 0 18px 34px rgba(0, 87, 217, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.result-box h2 {
  margin: 0;
  font-size: 24px;
  letter-spacing: 0;
}

.result-list {
  display: grid;
  gap: 14px;
}

.result-card {
  display: grid;
  gap: 14px;
  border: 1px solid #dfe7f2;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 18px;
  box-shadow: 0 18px 36px rgba(31, 41, 51, 0.09);
}

.selected-vehicle,
.battery-card,
.contact-card,
.notice {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
}

.selected-vehicle {
  display: grid;
  align-items: center;
  gap: 16px;
  border-color: #dbe7f5;
  background: linear-gradient(135deg, #ffffff 0%, #f6faff 100%);
  padding: 18px;
  text-align: left;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.06);
}

.selected-vehicle.has-logo {
  grid-template-columns: minmax(76px, 88px) minmax(0, 1fr);
}

.selected-vehicle.no-logo {
  grid-template-columns: 1fr;
  text-align: center;
}

.selected-vehicle span,
.battery-card span,
.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
}

.vehicle-summary {
  display: grid;
  justify-items: start;
  gap: 9px;
  min-width: 0;
}

.selected-vehicle.no-logo .vehicle-summary {
  justify-items: center;
}

.vehicle-logo-panel {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-right: 1px solid #e4edf8;
  padding-right: 14px;
}

.vehicle-logo {
  display: block;
  width: auto;
  max-width: 64px;
  max-height: 44px;
  object-fit: contain;
}

.vehicle-summary strong {
  font-size: 19px;
  font-weight: 950;
  line-height: 1.38;
}

.vehicle-summary p {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.vehicle-summary .vehicle-detail-model {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: normal;
}

.battery-card {
  display: grid;
  gap: 14px;
  justify-items: stretch;
  min-height: 128px;
  border-color: #c8dcff;
  background: linear-gradient(135deg, #f7fbff 0%, #eaf3ff 100%);
  padding: 18px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 12px 26px rgba(0, 87, 217, 0.1);
}

.battery-card strong {
  display: block;
  color: var(--primary-dark);
  max-width: 100%;
  width: 100%;
  font-size: clamp(28px, 7vw, 44px);
  font-weight: 950;
  line-height: 1.16;
  text-align: center;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: anywhere;
  overflow: visible;
  text-overflow: unset;
}

.battery-card.upgrade {
  border-color: #f3c8cf;
  background: linear-gradient(135deg, #fffafa 0%, #ffedf1 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 26px rgba(158, 45, 62, 0.09);
}

.battery-card.upgrade strong {
  color: #a83a47;
  font-size: clamp(28px, 7vw, 44px);
}

.price-links {
  display: grid;
  gap: 12px;
  border: 1px solid #dbe7f5;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  padding: 16px;
  box-shadow: 0 12px 24px rgba(31, 41, 51, 0.055);
}

.price-links-heading {
  display: grid;
  gap: 5px;
}

.price-links-heading strong {
  color: var(--text);
  font-size: 17px;
  font-weight: 950;
  line-height: 1.3;
}

.price-links-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.price-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 172px));
  justify-content: start;
  gap: 10px;
}

.price-link-card {
  display: grid;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 22px rgba(31, 41, 51, 0.055);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.price-link-card:hover,
.price-link-card:focus-visible {
  border-color: #bfd8ff;
  box-shadow: 0 14px 26px rgba(0, 87, 217, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.price-link-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc 0%, #edf5ff 100%);
  color: #94a3b8;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.price-link-media.has-image {
  background: #fff;
}

.price-link-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 5px;
  border-radius: inherit;
  object-fit: cover;
}

.price-link-image[hidden] {
  display: none;
}

.price-link-fallback {
  position: relative;
  z-index: 0;
  padding: 0 8px;
}

.price-link-media.has-image .price-link-fallback {
  opacity: 0;
}

.price-link-text {
  display: grid;
  gap: 3px;
  text-align: center;
}

.price-link-text strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.35;
}

.price-link-text em {
  color: var(--primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

.contact-card {
  display: grid;
  justify-items: center;
  gap: 7px;
  border-color: #ead8b7;
  background: linear-gradient(135deg, #ffffff 0%, #fff9ee 100%);
  color: #253142;
  text-align: center;
  box-shadow: 0 12px 24px rgba(145, 108, 45, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: #d9bd83;
  box-shadow: 0 16px 30px rgba(145, 108, 45, 0.13);
  transform: translateY(-1px);
  outline: none;
}

.contact-card strong {
  color: #1f2933;
  font-size: clamp(28px, 7vw, 38px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.notice {
  display: grid;
  gap: 6px;
  background: #f8fafc;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.55;
}

.result-title {
  display: grid;
  gap: 6px;
}

.result-title span {
  width: fit-content;
  border-radius: 999px;
  background: #eaf2ff;
  color: var(--primary-dark);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
}

.result-title h2 {
  font-size: 22px;
  line-height: 1.24;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
}

.result-grid div {
  min-height: 86px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  padding: 13px;
}

.result-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.result-grid dd {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.result-grid dd.status-waiting {
  color: var(--warn);
  font-size: 12px;
  font-weight: 850;
}

.internal-status {
  margin: 0;
  color: var(--warn);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

@media (min-width: 560px) {
  .page {
    min-height: auto;
    margin: 18px auto;
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
  }
}

@media (min-width: 720px) {
  .page {
    width: min(100%, 960px);
  }

  .content {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .title {
    grid-column: 1 / -1;
  }

  .search-service-area-section {
    grid-column: 1 / -1;
  }

  .search-box,
  .result-box {
    align-self: start;
  }

  .phone-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .phone-cta-button {
    min-width: 178px;
  }

  .selected-vehicle.has-logo {
    grid-template-columns: minmax(108px, 124px) minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
  }

  .vehicle-logo-panel {
    min-height: 76px;
    padding-right: 18px;
  }

  .vehicle-logo {
    max-width: 90px;
    max-height: 60px;
  }
}

@media (max-width: 768px) {
  .select-dropdown-backdrop:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: block;
    background: rgba(15, 23, 42, 0.32);
  }

  .select-dropdown-panel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    max-width: 100%;
    max-height: 70vh;
    border: 0;
    border-radius: 24px 24px 0 0;
    padding: 0;
    box-shadow: 0 -20px 50px rgba(15, 23, 42, 0.18);
  }

  .select-dropdown-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 20px;
  }

  .select-dropdown-sheet-header strong {
    color: var(--text);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.3;
  }

  .select-dropdown-close {
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-dark);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
  }

  .select-dropdown-list {
    max-height: calc(70vh - 116px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 6px 10px 14px;
    -webkit-overflow-scrolling: touch;
  }

  .custom-select-option {
    border-radius: 10px;
    border-bottom: 1px solid #f1f5f9;
  }

  .detail-dropdown-backdrop:not([hidden]) {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: block;
    background: rgba(15, 23, 42, 0.32);
  }

  .detail-dropdown-panel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
    max-width: 100%;
    max-height: 70vh;
    border: 0;
    border-radius: 24px 24px 0 0;
    padding: 0;
    box-shadow: 0 -20px 50px rgba(15, 23, 42, 0.18);
  }

  .detail-dropdown-sheet-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 20px;
  }

  .detail-dropdown-sheet-header strong {
    color: var(--text);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.3;
  }

  .detail-dropdown-close {
    border: 1px solid #dbeafe;
    border-radius: 999px;
    background: #eff6ff;
    color: var(--primary-dark);
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 850;
    line-height: 1;
    cursor: pointer;
  }

  .detail-dropdown-list {
    max-height: calc(70vh - 116px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 6px 10px 14px;
    -webkit-overflow-scrolling: touch;
  }

  .detail-dropdown-option {
    border-radius: 10px;
    border-bottom: 1px solid #f1f5f9;
  }
}

@media (max-width: 380px) {
  .topbar {
    padding-inline: 12px;
  }

  .back-link,
  .top-call {
    padding: 7px 8px;
    font-size: 11px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand strong {
    font-size: 19px;
  }

  .content {
    padding-inline: 14px;
  }

  .custom-select-button {
    min-height: 52px;
    padding-inline: 10px 38px;
    font-size: 13px;
    font-weight: 500;
  }

  .custom-select-button.has-logo {
    padding-right: 90px;
  }

  .select-dropdown-panel {
    max-height: 70vh;
    border-radius: 22px 22px 0 0;
    padding: 0;
  }

  .select-dropdown-list {
    max-height: calc(70vh - 116px);
    padding: 5px 8px 12px;
  }

  .custom-select-option {
    padding: 11px 12px;
    font-size: 13px;
  }

  #detailSelect {
    min-height: 52px;
    height: 52px;
    padding-inline: 10px;
    font-size: 13px;
    font-weight: 500;
  }

  #detailSelect option {
    font-size: 13px;
  }

  .detail-dropdown-button {
    min-height: 52px;
    padding-inline: 10px 38px;
    font-size: 13px;
    font-weight: 500;
  }

  .detail-dropdown-panel {
    max-height: 70vh;
    border-radius: 22px 22px 0 0;
    padding: 0;
  }

  .detail-dropdown-list {
    max-height: calc(70vh - 116px);
    padding: 5px 8px 12px;
  }

  .detail-dropdown-option {
    padding: 11px 12px;
    font-size: 13px;
  }

  .vehicle-summary .vehicle-detail-model {
    font-size: 13px;
  }
}
