.vehicle-search-section {
  --brand-blue: #0892d4;
  --bright-cyan: #00d4ff;
  --dark-surface: #141A22;
  padding: clamp(48px, 6vw, 64px) 0 clamp(36px, 4.5vw, 48px);
  overflow: visible;
  background: transparent;
}

.vehicle-search-container {
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: clamp(32px, 4.5vw, 44px) clamp(24px, 4vw, 48px) clamp(28px, 4vw, 36px);
  position: relative;
  overflow: visible;
  isolation: isolate;
  border-radius: var(--radius-sm, 8px);
}

.vehicle-search-watermark {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.vehicle-search-watermark::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 220%;
  height: 220%;
  background-image: url('/images/cdn/24tuning_logo_svg_blue_whiteArtboard_1.svg');
  background-repeat: repeat;
  background-size: 200px auto;
  background-position: center;
  opacity: 0.01;
  transform: rotate(-28deg);
  transform-origin: center center;
  filter: brightness(0) invert(1);
}

.vehicle-search-inner {
  position: relative;
  z-index: 1;
}

.v-search-head {
  margin-bottom: clamp(28px, 4vw, 40px);
  border-left: 4px solid var(--brand-blue);
  padding-left: 20px;
  text-align: left;
}

.v-search-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 8px;
}

.v-search-btn,
.v-search-reset-btn {
  min-height: 48px;
  padding: 0 24px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.v-search-btn {
  flex: 0 1 240px;
  min-width: min(240px, 100%);
  max-width: 280px;
}

.v-search-reset-btn {
  flex: 0 0 auto;
  min-width: 120px;
  max-width: 140px;
}

.make-select-enhanced {
  position: relative;
  z-index: 20;
}

.make-select-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.make-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  cursor: pointer;
}

.make-select-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.make-select-value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.make-select-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 200;
  background: #0f141c;
  border: 1px solid rgba(77, 184, 224, 0.22);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  max-height: min(360px, 52vh);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.make-select-panel.is-open {
  display: flex;
}

.make-select-panel[hidden] {
  display: none !important;
}

.make-select-list {
  list-style: none;
  margin: 0;
  padding: 6px;
  overflow-y: auto;
  max-height: min(320px, 48vh);
  -webkit-overflow-scrolling: touch;
}

.make-select-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.make-select-option:hover,
.make-select-option:focus {
  background: rgba(77, 184, 224, 0.1);
}

.make-select-option img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.v-search-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.1;
  margin: 0;
}

.dropdown-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
  overflow: visible;
  position: relative;
  z-index: 5;
}

#vehicle-search-calculator {
  overflow: visible;
  position: relative;
}

.make-select-enhanced.is-open {
  z-index: 400;
}

.make-select-enhanced > .select-arrow {
  display: none;
}

.make-select-enhanced .make-logo-preview {
  display: none !important;
}

.select-container {
  position: relative;
  overflow: visible;
}

.vehicle-select {
  width: 100%;
  padding: 14px 40px 14px 16px;
  background-color: var(--dark-surface);
  color: #ffffff;
  border: 1px solid rgba(8, 146, 212, 0.2);
  border-radius: 4px;
  font-size: 14px;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s;
}

.vehicle-select:disabled { opacity: 0.5; cursor: not-allowed; }

.vehicle-select option {
  background-color: var(--dark-surface);
  color: #ffffff;
}

.vehicle-select:focus {
  border-left: 4px solid var(--brand-blue);
  padding-left: 13px;
  outline: none;
  box-shadow: 10px 0 20px rgba(8, 146, 212, 0.1) inset;
}

.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--brand-blue);
}

.results-section {
  background: var(--dark-surface);
  border: 1px solid rgba(8, 146, 212, 0.15);
  border-radius: 8px;
  padding: 24px;
  animation: slideDown 0.3s ease;
  position: relative;
}

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

.results-heading {
  font-family: var(--font-display);
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1.3;
}

.v-search-subtitle {
  color: rgba(232, 240, 248, 0.88);
  margin-top: 10px;
  font-size: var(--text-body-sm);
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.alientech-logo,
.alientech-logo--compact {
  max-height: 22px;
  max-width: 88px;
  width: auto;
  opacity: 0.7;
  margin-left: auto;
}

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

.tuning-options-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tuning-btn {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  padding: 12px;
  text-align: center;
  background: var(--dark-bg);
  border: 1px solid rgba(8, 146, 212, 0.2);
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  transition: all 0.2s;
}

.tuning-btn.active,
.tuning-btn:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: #fff;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  table-layout: fixed;
}

.stats-table th, .stats-table td {
  padding: 15px 2px;
  text-align: center;
  border-bottom: 1px solid rgba(8, 146, 212, 0.15);
  vertical-align: middle;
}

.col-label { width: 18%; text-align: left !important; color: #9fb0c2; font-weight: 700; font-size: 14px; }
.col-arrow { width: 8%; color: var(--bright-cyan); font-size: 18px; }

.val-white, .val-blue, .val-gain { font-family: var(--font-body); font-size: 17px; }
.val-white { color: #ffffff; font-weight: 700; }
.val-gain { color: #00ff88; font-weight: 700; text-shadow: 0 0 8px rgba(0, 255, 136, 0.3); }
.val-blue { color: var(--bright-cyan); font-weight: 900; }

.results-section.reveal-active .val-white,
.results-section.reveal-active .val-blue,
.results-section.reveal-active .val-gain {
  animation: digitalReveal 0.6s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

@keyframes digitalReveal {
  0% { opacity: 0; filter: blur(4px); transform: translateY(4px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.price-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(8, 146, 212, 0.08);
  border: 1px solid rgba(8, 146, 212, 0.25);
  border-radius: 8px;
  gap: 16px;
  flex-wrap: wrap;
}

.price-block { display: flex; flex-direction: column; gap: 2px; }

.price-from-label {
  font-size: var(--text-caption);
  color: #9fb0c2;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  font-style: italic;
}

.price-value {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--font-body);
  line-height: 1;
}

.price-value span:first-child { font-size: 16px; color: #0892d4; font-weight: 700; }

.price-deposit-note { font-size: var(--text-caption); color: #9fb0c2; margin-top: 3px; line-height: 1.45; }
.price-deposit-note strong { color: #00ff88; }

.book-now-btn {
  background: #0892d4;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: var(--font-display);
  font-style: italic;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.book-now-btn:hover { background: #0778b0; }

@media (max-width: 749px) {
  .dropdown-row { grid-template-columns: 1fr; }
  .vehicle-search-section { padding: 40px 0; }
  .v-search-head { transform: none !important; opacity: 1 !important; margin-bottom: 30px; }
  .v-search-title { font-size: clamp(1.5rem, 5vw, 1.75rem); }
  .col-label { width: 20%; font-size: 11px !important; letter-spacing: 0.04em; }
  .col-arrow { width: 6%; font-size: 12px; padding: 12px 0 !important; }
  .val-white, .val-blue, .val-gain { font-size: 14px !important; font-weight: 900; }
  .tuning-btn { font-size: 14px; min-height: 48px; padding: 14px; }
  .price-action-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .book-now-btn { width: 100%; text-align: center; font-size: 14px; min-height: 48px; }
  .price-value { font-size: 24px; }
  .tuning-options-row { flex-direction: column; }
  .vehicle-select { font-size: 16px; min-height: 48px; }
}
