/* ============================================================
   TANKVERGLEICH.DE – Style Sheet
   Design: Industrial/Utilitarian, Mobile First
   Palette: #0A1628 (dark blue) | #FF6B00 (orange) | #F5F5F5 (bg)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900:   #0A1628;
  --blue-800:   #0F2040;
  --blue-700:   #1A3358;
  --blue-600:   #1E3D6E;
  --orange:     #FF6B00;
  --orange-h:   #E85F00;
  --green:      #00B86B;
  --yellow:     #F5A623;
  --red:        #E53935;
  --white:      #FFFFFF;
  --bg:         #F4F6F9;
  --surface:    #FFFFFF;
  --border:     #DDE2EC;
  --text-primary:   #0A1628;
  --text-secondary: #4A5568;
  --text-muted:     #8A96A8;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(10,22,40,.08);
  --shadow-md:  0 4px 16px rgba(10,22,40,.12);
  --shadow-lg:  0 8px 32px rgba(10,22,40,.18);
  --font-head:  'Barlow Condensed', sans-serif;
  --font-body:  'Source Sans 3', sans-serif;
  --transition: 200ms ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--blue-900);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .5px;
  text-decoration: none;
}
.logo-icon { font-size: 1.4rem; line-height: 1; }
.logo-text { font-weight: 600; }
.logo-text strong { color: var(--orange); font-weight: 800; }

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: background var(--transition);
}
.btn-icon:hover { background: rgba(255,255,255,.1); }
.btn-icon svg { width: 20px; height: 20px; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 100%);
  padding: 40px 0 48px;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 8vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.5px;
  margin-bottom: 12px;
}
.hero-title .accent { color: var(--orange); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin-bottom: 28px;
}

/* Mode toggle */
.mode-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.mode-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  border: 2px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.06);
  transition: all var(--transition);
  letter-spacing: .3px;
  white-space: nowrap;
}
.mode-btn:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.12);
}
.mode-btn.active {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}
.mode-btn[data-mode="ev"].active {
  background: rgba(43,127,224,.28);
  border-color: #5BADEE;
  color: #A8D8FF;
}
.mode-emoji { font-size: 1.1rem; line-height: 1; }

/* Fuel toggle */
.fuel-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fuel-btn {
  padding: 8px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  border: 2px solid rgba(255,255,255,.25);
  transition: all var(--transition);
  white-space: nowrap;
}
.fuel-btn:hover {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.fuel-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(255,107,0,.4);
}

/* Search box */
.search-box {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-wrap: wrap;
}

.search-input-wrap {
  flex: 1 1 200px;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  width: 18px; height: 18px;
  pointer-events: none;
}

#plz-input {
  width: 100%;
  height: 52px;
  padding: 0 48px 0 44px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 3px;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
#plz-input::placeholder { color: rgba(255,255,255,.4); letter-spacing: 1px; font-weight: 600; font-size: 1.1rem; }
#plz-input:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
}

.btn-location {
  position: absolute;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--transition), background var(--transition);
}
.btn-location svg { width: 18px; height: 18px; }
.btn-location:hover { color: var(--orange); background: rgba(255,107,0,.15); }

.radius-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
}
.radius-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  padding-left: 4px;
}
#radius-select {
  height: 52px;
  padding: 0 12px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  min-width: 90px;
}
#radius-select:focus { border-color: var(--orange); }
#radius-select option { background: var(--blue-900); color: var(--white); }

.btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .5px;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  flex: 0 0 auto;
}
.btn-search svg { width: 18px; height: 18px; }
.btn-search:hover { background: var(--orange-h); transform: translateY(-1px); }
.btn-search:active { transform: translateY(0); }

.location-hint {
  margin-top: 12px;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
}

/* ---------- KPI SECTION ---------- */
.kpi-section {
  padding: 40px 0 32px;
}

.section-title {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.kpi-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow var(--transition);
}
.kpi-card:hover { box-shadow: var(--shadow-md); }

.kpi-label {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.kpi-price {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
  margin-bottom: 6px;
  min-height: 2.4rem;
}
.kpi-price.skeleton {
  background: linear-gradient(90deg, #e8edf5 25%, #f5f7fb 50%, #e8edf5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
  color: transparent;
  user-select: none;
  height: 2.6rem;
  min-width: 80px;
  display: inline-block;
}

.kpi-sub {
  font-size: .78rem;
  color: var(--text-muted);
}

/* Tip banner */
.tip-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #FFF8F0;
  border: 1px solid #FFD9B3;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: .875rem;
  color: var(--text-primary);
}
.tip-icon { color: var(--orange); flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }

/* ---------- RESULTS SECTION ---------- */
.results-section {
  padding: 8px 0 60px;
}

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

.results-meta { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }

.results-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
}

.results-count {
  font-size: .875rem;
  color: var(--text-muted);
  font-weight: 600;
}

.results-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

#sort-select {
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--text-primary);
  outline: none;
  cursor: pointer;
}
#sort-select:focus { border-color: var(--orange); }

.view-toggle {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}
.view-btn svg { width: 18px; height: 18px; }
.view-btn.active { background: var(--blue-900); color: var(--white); }
.view-btn:hover:not(.active) { background: var(--bg); color: var(--text-primary); }

/* ---------- SKELETON ---------- */
.station-skeleton {
  background: var(--surface);
  border-radius: var(--radius-md);
  height: 88px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.station-skeleton::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 25%, rgba(255,255,255,.6) 50%, transparent 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------- STATION CARD ---------- */
.station-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  padding: 16px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.station-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.station-card:active { transform: translateY(0); }

.station-card.is-open::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--green);
  border-radius: 4px 0 0 4px;
}
.station-card.is-closed::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  border-radius: 4px 0 0 4px;
}

.station-rank {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .5px;
}

.station-main { padding-left: 8px; }

.station-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 3px;
}

.station-brand {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.station-address {
  font-size: .875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
}
.station-address svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--text-muted); }

.station-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.station-distance {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.station-distance svg { width: 13px; height: 13px; }

.station-status {
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.status-open  { background: #E6F9F1; color: #00875A; }
.status-closed { background: #FEECEC; color: #C62828; }

/* Price block */
.station-prices {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  min-width: 80px;
}

.price-item {
  text-align: right;
}
.price-type {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
}
.price-value {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.price-value.price-highlight {
  font-size: 1.75rem;
  color: var(--blue-900);
}
.price-value.price-cheap  { color: var(--green); }
.price-value.price-medium { color: var(--yellow); }
.price-value.price-expensive { color: var(--red); }
.price-value.price-null { color: var(--text-muted); font-size: 1rem; }

/* ---------- MAP ---------- */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
}

#leaflet-map {
  height: 480px;
  width: 100%;
}

/* Leaflet popup custom */
.leaflet-popup-content-wrapper {
  border-radius: var(--radius-sm) !important;
  box-shadow: var(--shadow-lg) !important;
  font-family: var(--font-body) !important;
}
.map-popup-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.map-popup-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
}
.map-popup-dist { font-size: .8rem; color: var(--text-muted); margin-top: 2px; }

/* ---------- ERROR BANNER ---------- */
.error-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FEECEC;
  border: 1px solid #F5C6C6;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: #C62828;
  font-weight: 600;
}
.error-banner svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- DETAIL SHEET ---------- */
.detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,.55);
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn .2s ease;
}
.detail-overlay[hidden] { display: none; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.detail-sheet {
  background: var(--surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 640px;
  max-height: 85dvh;
  overflow-y: auto;
  padding: 24px 24px 40px;
  position: relative;
  animation: slideUp .25s ease;
}
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

.detail-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: background var(--transition);
}
.detail-close:hover { background: var(--border); }
.detail-close svg { width: 18px; height: 18px; }

.detail-brand-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.detail-name {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.detail-address {
  font-size: .95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.detail-address svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--text-muted); }

.detail-prices {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.detail-price-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.detail-price-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.detail-price-value {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text-secondary);
}
.detail-row svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); }
.detail-row strong { color: var(--text-primary); font-weight: 600; }

.btn-navigate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 20px;
  transition: background var(--transition);
  text-decoration: none;
}
.btn-navigate:hover { background: var(--orange-h); text-decoration: none; }
.btn-navigate svg { width: 20px; height: 20px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,.5);
  padding: 24px 0;
  margin-top: 40px;
}
.footer-inner { text-align: center; }
.attribution {
  font-size: .8rem;
  margin-bottom: 6px;
  line-height: 1.8;
}
.attribution a { color: rgba(255,255,255,.7); }
.attribution a:hover { color: var(--white); }
.footer-copy { font-size: .78rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .kpi-grid { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .kpi-card { padding: 14px 10px; }
  .kpi-price { font-size: 1.5rem; }
  .search-box { flex-direction: column; }
  .search-input-wrap { flex: 1 1 auto; }
  .radius-wrap { flex-direction: row; align-items: center; }
  .radius-label { white-space: nowrap; }
  #radius-select { flex: 1; }
  .btn-search { width: 100%; justify-content: center; }
  .station-card { grid-template-columns: 1fr; }
  .station-prices { flex-direction: row; align-items: flex-start; justify-content: flex-start; }
  .detail-prices { grid-template-columns: repeat(3,1fr); }
}

@media (min-width: 601px) and (max-width: 768px) {
  .hero-title { font-size: 2.8rem; }
}

@media (min-width: 769px) {
  .hero { padding: 64px 0 72px; }
  .kpi-section { padding: 56px 0 40px; }
  .station-card { grid-template-columns: 1fr auto; }
}

/* ---------- CONNECTOR BADGES ---------- */
.conn-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}

.conn-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
}
.conn-fast   { background: #E6F9F1; color: #00875A; border: 1px solid #A8EDD4; }
.conn-medium { background: #E8F2FF; color: #1A60C0; border: 1px solid #AECFFF; }
.conn-slow   { background: #F5F5F5; color: #666;     border: 1px solid #DDD; }

/* ---------- EV POWER BADGE (auf der Karte rechts) ---------- */
.ev-power-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  text-align: center;
  align-self: start;
  margin-top: 4px;
}
.ev-power-fast   { background: #E6F9F1; }
.ev-power-medium { background: #E8F2FF; }
.ev-power-slow   { background: #F5F5F5; }

.ev-power-val {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1;
}
.ev-power-fast   .ev-power-val { color: #00875A; }
.ev-power-medium .ev-power-val { color: #1A60C0; }
.ev-power-slow   .ev-power-val { color: #666; }

.ev-power-unit {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- EV AVAILABILITY ---------- */
.ev-avail {
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.avail-yes { background: #E6F9F1; color: #00875A; }
.avail-no  { background: #FEECEC; color: #C62828; }

/* ---------- EV DETAIL SHEET ---------- */
.ev-badge { color: #2B7FE0; }

.ev-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.ev-detail-stat {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}
.ev-detail-stat-val {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1;
}
.ev-detail-stat-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-top: 4px;
}

.ev-connectors { margin: 16px 0; }
.ev-connectors-title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.ev-connector-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.ev-conn-power {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.ev-conn-avail {
  font-size: .82rem;
  color: var(--text-muted);
  margin-left: auto;
}

.ev-navigate { background: #2B7FE0; }
.ev-navigate:hover { background: #1A60C0; }

/* ---------- LEAFLET ICON COLORS ---------- */
.map-pin-cheap svg { fill: #00B86B; }
.map-pin-medium svg { fill: #F5A623; }
.map-pin-expensive svg { fill: #E53935; }

/* ---------- UTILITY ---------- */
[hidden] { display: none !important; }
