:root {
  --bg: #061322;
  --bg2: #0b2538;
  --surface: #ffffff;
  --muted: #667085;
  --text: #101828;
  --line: #e6eef6;
  --blue: #287b0a;
  --cyan: #53af31;
  --green: #16a34a;
  --red: #ef4444;
  --orange: #f59e0b;
  --soft: #f5f9fc;
  --shadow: 0 30px 90px rgba(2, 12, 27, .28);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: Nexa, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(83,175,49,.18), transparent 360px),
    radial-gradient(circle at 90% 20%, rgba(46,95,28,.22), transparent 380px),
    linear-gradient(135deg, #0d150a, #13200e 55%, #1b2e14);
}

button,
input,
select {
  font-family: inherit;
}

.demo-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 7vw;
}

.demo-info {
  color: #fff;
}

.demo-brand {
  margin-bottom: 22px;
}

.demo-brand img {
  height: 68px;
  width: auto;
  display: block;
}

@media (max-width: 980px) {
  .demo-brand {
    display: flex;
    justify-content: center;
  }
}

.demo-kicker {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #b9e69a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.demo-info h1 {
  max-width: 640px;
  margin: 22px 0 18px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: .94;
  letter-spacing: -.06em;
}

.demo-info p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.65;
}

.demo-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.demo-flow span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  font-size: 13px;
  font-weight: 700;
}

.demo-note {
  margin-top: 34px;
  width: fit-content;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.76);
  line-height: 1.75;
}

.demo-note strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: 420px;
  height: 860px;
  padding: 14px;
  border-radius: 56px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.36), rgba(255,255,255,.05)),
    #0a1220;
  box-shadow: var(--shadow);
}

.phone:before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
}

.phone-notch {
  position: absolute;
  z-index: 30;
  top: 24px;
  left: 50%;
  width: 132px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #0a1220;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 44px;
  background: #f5f9fc;
}

.screen {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  background:
    radial-gradient(circle at 88% 2%, rgba(83,175,49,.18), transparent 220px),
    #f5f9fc;
}

.screen.active {
  display: flex;
}

.screen-login {
  padding: 66px 26px 28px;
  background:
    radial-gradient(circle at 20% 8%, rgba(46,95,28,.30), transparent 220px),
    linear-gradient(180deg, #0d150a 0%, #1b2e14 46%, #f5f9fc 46%);
}

.screen-auth-form {
  overflow-y: auto;
}

.mobile-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: #fff;
}

.mobile-logo {
  height: 74px;
  width: auto;
  display: block;
}

.mobile-brand strong {
  display: block;
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.04em;
}

.mobile-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.login-panel {
  margin-top: 54px;
  padding: 28px 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(15,23,42,.14);
}

.login-panel h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.05em;
}

.login-panel p {
  margin: 8px 0 22px;
  color: var(--muted);
  line-height: 1.45;
}

.login-panel label {
  display: block;
  margin: 15px 0 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.login-panel input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  outline: none;
  background: #fbfdff;
  font-size: 15px;
}

.login-panel input:focus {
  border-color: #a9e08f;
  box-shadow: 0 0 0 4px rgba(40,123,10,.10);
}

.auth-link-btn {
  width: 100%;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: #287b0a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.primary-btn,
.danger-btn,
.small-btn,
.icon-btn {
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.primary-btn {
  width: 100%;
  height: 50px;
  margin-top: 22px;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(135deg, #287b0a, #53af31);
  box-shadow: 0 18px 34px rgba(40,123,10,.22);
}

.danger-btn {
  width: 100%;
  height: 54px;
  margin-top: auto;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 18px 34px rgba(239,68,68,.22);
}

.small-btn {
  height: 36px;
  padding: 0 13px;
  border-radius: 13px;
  background: #dff4d7;
  color: var(--blue);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fff;
  color: #0f172a;
  border: 1px solid var(--line);
}

.app-header {
  height: 86px;
  padding: 34px 20px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,238,246,.86);
  z-index: 10;
}

.app-header div {
  min-width: 0;
}

.app-header span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.app-header strong {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map {
  height: 100%;
  min-height: 100%;
  background: #ddeaf5;
}

.bottom-sheet {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-height: 382px;
  padding: 10px 12px 14px;
  border-radius: 30px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(230,238,246,.9);
  box-shadow: 0 24px 60px rgba(15,23,42,.20);
  backdrop-filter: blur(18px);
  z-index: 500;
}

.sheet-handle {
  width: 46px;
  height: 5px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #d0d9e7;
}

.sheet-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.sheet-title-row h2 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -.045em;
}

.sheet-title-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.station-list {
  display: grid;
  gap: 10px;
  max-height: 286px;
  overflow: auto;
  padding-right: 2px;
}

.station-card {
  width: 100%;
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.station-card:hover {
  border-color: #a9e08f;
  box-shadow: 0 12px 30px rgba(40,123,10,.08);
}

.station-card-main {
  display: flex;
  align-items: center;
  gap: 11px;
}

.station-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #287b0a, #53af31);
}

.station-card h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: -.025em;
}

.station-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.station-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #f2f6fb;
  color: #344054;
  font-size: 11px;
  font-weight: 800;
}

.pill.online {
  color: #087443;
  background: #dcfae6;
}

.pill.offline {
  color: #d92d20;
  background: #fee4e2;
}

.pill.awaiting_connection {
  color: #475467;
  background: #eef2f6;
}

.station-detail {
  padding: 20px;
  overflow: auto;
}

.station-hero {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(15,23,42,.07);
}

.station-bolt {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, #287b0a, #53af31);
  font-size: 26px;
}

.station-hero h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.045em;
}

.station-hero p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.metric-grid,
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.metric-grid div,
.live-grid div {
  padding: 14px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.metric-grid span,
.live-grid span,
.receipt span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.metric-grid strong,
.live-grid strong,
.receipt strong {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  letter-spacing: -.025em;
}

.station-detail h3 {
  margin: 24px 0 12px;
  font-size: 16px;
  letter-spacing: -.035em;
}

.connector-list {
  display: grid;
  gap: 10px;
}

.connector-card {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.connector-card:hover {
  border-color: #a9e08f;
  box-shadow: 0 12px 30px rgba(40,123,10,.09);
}

.connector-card.disabled {
  opacity: .58;
  cursor: not-allowed;
}

.connector-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  background: #101828;
  font-weight: 900;
}

.connector-card h4 {
  margin: 0;
  font-size: 15px;
}

.connector-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.charging-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 22px 24px;
}

.charging-header {
  background: linear-gradient(135deg, #0d150a, #1b2e14);
  color: #fff;
  border-bottom: 0;
}

.charging-header span {
  color: rgba(255,255,255,.65);
}

.charging-ring {
  width: 238px;
  height: 238px;
  margin: 24px auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f5f9fc 58%, transparent 60%),
    conic-gradient(from 210deg, #287b0a, #53af31, #41c610, #287b0a);
  box-shadow: 0 28px 70px rgba(40,123,10,.18);
}

.charging-ring div {
  text-align: center;
}

.charging-ring span {
  display: block;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -.06em;
}

.charging-ring small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.charging-status-pill {
  width: fit-content;
  margin: 0 auto 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #dcfae6;
  color: #087443;
  font-size: 13px;
  font-weight: 850;
}

.done-card {
  margin: auto 22px;
  padding: 30px 22px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
  text-align: center;
}

.done-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dcfae6;
  color: #087443;
  font-size: 34px;
  font-weight: 900;
}

.done-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.055em;
}

.done-card p {
  margin: 10px 0 18px;
  color: var(--muted);
  line-height: 1.5;
}

.receipt {
  display: grid;
  gap: 10px;
  margin: 20px 0 4px;
  text-align: left;
}

.receipt div {
  padding: 14px;
  border-radius: 18px;
  background: #f8fbfe;
  border: 1px solid var(--line);
}

.error-box {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: #fee4e2;
  color: #b42318;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
}

.global-loading {
  position: absolute;
  z-index: 900;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(245,249,252,.72);
  backdrop-filter: blur(8px);
  font-weight: 800;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #c9d7e8;
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}

.hidden {
  display: none !important;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .demo-shell {
    grid-template-columns: 1fr;
    padding: 30px 18px;
  }

  .demo-info {
    text-align: center;
  }

  .demo-info p,
  .demo-note {
    margin-left: auto;
    margin-right: auto;
  }

  .demo-flow {
    justify-content: center;
  }

  .phone {
    width: min(420px, 100%);
    height: 820px;
  }
}

/* Reservation UI */

.connector-card {
  text-align: left;
}

.connector-card.reserved-me {
  border-color: rgba(40, 123, 10, .35);
  background: linear-gradient(135deg, rgba(40,123,10,.08), rgba(255,255,255,.96));
}

.connector-card.reserved-other {
  border-color: rgba(245, 158, 11, .35);
  background: linear-gradient(135deg, rgba(245,158,11,.10), rgba(255,255,255,.96));
}

.connector-content {
  min-width: 0;
}

.connector-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.connector-action {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.connector-action.primary {
  color: #fff;
  background: linear-gradient(135deg, #287b0a, #53af31);
}

.connector-action.secondary {
  color: #287b0a;
  background: #dff4d7;
}

.connector-action.danger {
  color: #b42318;
  background: #fee4e2;
}

.connector-action.locked {
  display: inline-flex;
  align-items: center;
  color: #92400e;
  background: #fef3c7;
}

.connector-card.disabled .connector-action.primary,
.connector-card.disabled .connector-action.secondary {
  opacity: .45;
}


/* My reservation banner */

.my-reservation-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  margin: 14px 0;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(40, 123, 10, .22);
  background:
    radial-gradient(circle at 100% 0%, rgba(40,123,10,.14), transparent 130px),
    #ffffff;
  box-shadow: 0 14px 34px rgba(15,23,42,.08);
}

.my-reservation-banner.hidden {
  display: none;
}

.my-reservation-banner strong,
.my-reservation-banner span,
.my-reservation-banner small {
  display: block;
}

.my-reservation-banner strong {
  font-size: 14px;
  font-weight: 950;
  color: #0f172a;
}

.my-reservation-banner span {
  margin-top: 3px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.my-reservation-banner small {
  margin-top: 3px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.my-reservation-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.my-reservation-actions button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 950;
}

.my-reservation-actions button:first-child {
  color: #fff;
  background: linear-gradient(135deg, #287b0a, #53af31);
}

.my-reservation-actions button:last-child {
  color: #b42318;
  background: #fee4e2;
}

.pill.reservation {
  color: #287b0a;
  background: #dff4d7;
}

@media (max-width: 420px) {
  .my-reservation-banner {
    grid-template-columns: 1fr;
  }

  .my-reservation-actions {
    flex-direction: row;
  }
}


/* Mobile payment screen */

.app-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.payment-screen-body {
  padding: 18px;
  height: calc(100% - 74px);
  overflow: auto;
}

.payment-summary-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-summary-card > div {
  padding: 14px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow: 0 16px 36px rgba(15,23,42,.08);
}

.payment-summary-card span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.payment-summary-card strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 950;
}

.payment-warning {
  margin-bottom: 16px;
  padding: 13px 14px;
  border-radius: 18px;
  color: #92400e;
  background: #fef3c7;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.payment-section {
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, .22);
  box-shadow: 0 16px 36px rgba(15,23,42,.08);
}

.payment-section-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.payment-section h3 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 950;
}

.payment-section p {
  margin: 4px 0 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
}

.payment-methods-list {
  display: grid;
  gap: 10px;
}

.payment-method-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 13px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.payment-method-card.default {
  background: #dff4d7;
  border-color: rgba(40,123,10,.26);
}

.payment-method-main strong,
.payment-method-main span,
.payment-method-main small {
  display: block;
}

.payment-method-main strong {
  color: #0f172a;
  font-size: 14px;
  font-weight: 950;
}

.payment-method-main span {
  margin-top: 3px;
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

.payment-method-main small {
  margin-top: 3px;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.payment-method-actions {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.payment-method-actions button {
  border: 0;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 950;
}

.payment-method-actions .make-default {
  color: #175cd3;
  background: #dbeafe;
}

.payment-method-actions .delete-card {
  color: #b42318;
  background: #fee4e2;
}

.payment-empty {
  padding: 14px;
  border-radius: 18px;
  color: #64748b;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 800;
}

.add-card-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.add-card-panel #stripePaymentElement {
  margin-bottom: 14px;
}

.secondary-wide-btn {
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  color: #334155;
  background: #e2e8f0;
  font-weight: 950;
}

.success-box {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  color: #067647;
  background: #ecfdf3;
  font-size: 13px;
  font-weight: 800;
}

.success-box.hidden {
  display: none;
}

/* Route planning */

.route-icon-btn {
  color: #287b0a;
  background: #effbea;
  border-color: #c9e9bc;
}

.route-planner-body {
  height: calc(100% - 86px);
  padding: 16px;
  overflow-y: auto;
}

.route-location-fields {
  position: relative;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-field {
  position: relative;
}

.route-field label,
.route-filter-grid label > span {
  display: block;
  margin-bottom: 6px;
  color: #475467;
  font-size: 11px;
  font-weight: 850;
}

.route-field input,
.route-filter-grid select {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: #101828;
  background: #f8fafc;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  outline: none;
  font-size: 13px;
}

.route-field input:focus,
.route-filter-grid select:focus {
  border-color: #8fcf74;
  box-shadow: 0 0 0 3px rgba(40,123,10,.10);
}

.route-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 8px;
}

.route-field-icon,
.route-swap-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #287b0a;
  background: #effbea;
  border: 1px solid #c9e9bc;
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.route-swap-btn {
  width: 38px;
  height: 34px;
  margin: 8px 0 8px auto;
  font-size: 17px;
}

.place-suggestions {
  position: absolute;
  z-index: 500;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  max-height: 210px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #d8e3ed;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(15,23,42,.18);
}

.place-suggestion {
  width: 100%;
  padding: 11px 12px;
  color: #101828;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #eef2f6;
  cursor: pointer;
  text-align: left;
}

.place-suggestion:last-child {
  border-bottom: 0;
}

.place-suggestion strong,
.place-suggestion span {
  display: block;
}

.place-suggestion strong {
  font-size: 13px;
}

.place-suggestion span {
  margin-top: 3px;
  color: #667085;
  font-size: 11px;
  line-height: 1.3;
}

.route-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.route-check-filter {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-check-filter input {
  width: 17px;
  height: 17px;
  accent-color: #287b0a;
}

.route-check-filter > span {
  margin: 0 !important;
  line-height: 1.25;
}

.route-search-btn {
  margin-top: 12px;
}

.route-results {
  margin-top: 14px;
}

.route-preview-map {
  width: 100%;
  height: 190px;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  overflow: hidden;
  background: #ddeaf5;
}

.route-result-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  padding: 12px 2px 9px;
}

.route-result-summary strong {
  color: #101828;
  font-size: 13px;
}

.route-result-summary span {
  color: #667085;
  font-size: 11px;
  text-align: right;
}

.route-station-list {
  display: grid;
  gap: 9px;
}

.route-station-card {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.route-station-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.route-station-card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.route-station-card p {
  margin: 4px 0 0;
  color: #667085;
  font-size: 11px;
  line-height: 1.35;
}

.route-power {
  flex: 0 0 auto;
  color: #087443;
  font-size: 13px;
  font-weight: 900;
}

.route-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  margin-top: 10px;
}

.route-metrics div {
  padding: 8px;
  background: #f6f8fa;
  border-radius: 6px;
}

.route-metrics span,
.route-metrics strong {
  display: block;
}

.route-metrics span {
  color: #667085;
  font-size: 10px;
}

.route-metrics strong {
  margin-top: 2px;
  color: #101828;
  font-size: 12px;
}

.route-open-maps-btn {
  width: 100%;
  height: 40px;
  margin-top: 10px;
  color: #fff;
  background: #287b0a;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
}

.route-empty {
  padding: 16px;
  color: #667085;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

@media (max-width: 420px) {
  .route-filter-grid {
    grid-template-columns: 1fr;
  }

  .payment-summary-card {
    grid-template-columns: 1fr;
  }

  .payment-method-card {
    grid-template-columns: 1fr;
  }

  .payment-method-actions {
    flex-direction: row;
  }
}
