/* Fiche station — même famille que filtre / véhicule */

/* Même logique que .om-filter-sheet / .om-vehicle-sheet (évite masquage WebKit) */
#appPage #overlayMobileRoot .om-station-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: 0;
  overflow: hidden;
  z-index: 8;
  pointer-events: none;
}

#appPage #overlayMobileRoot .om-station-sheet.is-open {
  inset: 0;
  top: 0;
  height: auto;
  overflow: visible;
  z-index: 520;
  pointer-events: auto;
}

#appPage #overlayMobileRoot .om-station-sheet:not(.is-open) .om-station-sheet__backdrop,
#appPage #overlayMobileRoot .om-station-sheet:not(.is-open) .om-station-sheet__panel {
  pointer-events: none;
}

#appPage #overlayMobileRoot .om-station-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  opacity: 0;
  transition: opacity 0.22s ease;
}

#appPage #overlayMobileRoot .om-station-sheet.is-open .om-station-sheet__backdrop {
  opacity: 1;
}

#appPage #overlayMobileRoot .om-station-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(92vh, 720px);
  display: flex;
  flex-direction: column;
  background: #f8fafc;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 40px rgba(15, 23, 42, 0.18);
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow: hidden;
}

#appPage #overlayMobileRoot .om-station-sheet.is-open .om-station-sheet__panel {
  transform: translateY(0);
}

#appPage #overlayMobileRoot .om-station-sheet__panel.om-station-sheet__panel--dragging {
  transition: none !important;
}

#appPage #overlayMobileRoot .om-station-sheet.is-closing .om-station-sheet__panel {
  transition: transform 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#appPage #overlayMobileRoot .om-station-sheet__hero {
  position: relative;
  flex: 0 0 auto;
  height: 204px;
  background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
  overflow: hidden;
}

#appPage #overlayMobileRoot .om-station-sheet__heroSkel {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    #e2e8f0 8%,
    #f1f5f9 18%,
    #e2e8f0 28%
  );
  background-size: 200% 100%;
  animation: om-station-shimmer 1.2s ease-in-out infinite;
}

@keyframes om-station-shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

#appPage #overlayMobileRoot .om-station-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#appPage #overlayMobileRoot .om-station-gallery__viewport {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

#appPage #overlayMobileRoot .om-station-gallery__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.32s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

#appPage #overlayMobileRoot .om-station-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

#appPage #overlayMobileRoot .om-station-gallery__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#appPage #overlayMobileRoot .om-station-gallery__img.is-broken {
  opacity: 0;
}

#appPage #overlayMobileRoot .om-station-gallery__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: auto;
}

#appPage #overlayMobileRoot .om-station-gallery__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

#appPage #overlayMobileRoot .om-station-gallery__dot.is-active {
  width: 20px;
  background: rgba(255, 255, 255, 0.95);
}

#appPage #overlayMobileRoot .om-station-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}

#appPage #overlayMobileRoot .om-station-gallery__nav--prev {
  left: 10px;
}

#appPage #overlayMobileRoot .om-station-gallery__nav--next {
  right: 10px;
}

#appPage #overlayMobileRoot .om-station-gallery__nav.is-available {
  pointer-events: auto;
}

@media (hover: hover) and (pointer: fine) {
  #appPage #overlayMobileRoot .om-station-gallery:hover .om-station-gallery__nav.is-available,
  #appPage #overlayMobileRoot .om-station-sheet__hero:hover .om-station-gallery__nav.is-available {
    opacity: 1;
  }

  #appPage #overlayMobileRoot .om-station-gallery__nav.is-available:active {
    transform: scale(0.94);
  }
}

/* Mobile : flèches discrètes si plusieurs photos */
#appPage #overlayMobileRoot .om-station-gallery--touch.om-station-gallery--multi .om-station-gallery__nav.is-available {
  opacity: 0.88;
  pointer-events: auto;
}

#appPage #overlayMobileRoot .om-station-sheet__heroGrad {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.55) 100%);
  pointer-events: none;
}

/* Zone tactile invisible — seule la pilule est visible (comme #omGrab) */
#appPage #overlayMobileRoot .om-station-sheet__grab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 0 0;
  background: transparent;
  border: none;
  cursor: grab;
  touch-action: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

#appPage #overlayMobileRoot .om-station-sheet__grab::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: -14px;
  bottom: -22px;
  z-index: 0;
}

#appPage #overlayMobileRoot .om-station-sheet__grab:active {
  cursor: grabbing;
}

#appPage #overlayMobileRoot .om-station-sheet__pill {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 5px;
  border-radius: 999px;
  background: rgba(189, 189, 189, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
}

#appPage #overlayMobileRoot .om-station-sheet__heroMeta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

#appPage #overlayMobileRoot .om-station-sheet__openBadge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
}

#appPage #overlayMobileRoot .om-station-sheet__openBadge.is-open {
  background: rgba(16, 185, 129, 0.92);
  color: #fff;
}

#appPage #overlayMobileRoot .om-station-sheet__openBadge.is-closed {
  background: rgba(248, 113, 113, 0.92);
  color: #fff;
}

#appPage #overlayMobileRoot .om-station-sheet__powerBadge {
  display: inline-block;
  margin: 0;
}

#appPage #overlayMobileRoot .om-st-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

#appPage #overlayMobileRoot .om-st-badge--power {
  background: rgba(15, 23, 42, 0.82);
  color: #fff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

#appPage #overlayMobileRoot .om-st-badge--power-hi {
  background: rgba(16, 185, 129, 0.92);
}

#appPage #overlayMobileRoot .om-st-badge--currency {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

#appPage #overlayMobileRoot .om-st-badge--kw {
  background: rgba(16, 185, 129, 0.12);
  color: var(--om-vehicle-accent-deep);
}

#appPage #overlayMobileRoot .om-st-badge--status.is-ok {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
}

#appPage #overlayMobileRoot .om-st-badge--status.is-warn {
  background: rgba(251, 191, 36, 0.2);
  color: #b45309;
}

#appPage #overlayMobileRoot .om-st-badge--status.is-off {
  background: rgba(248, 113, 113, 0.16);
  color: #b91c1c;
}

#appPage #overlayMobileRoot .om-st-badge--out {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

#appPage #overlayMobileRoot .om-st-badge--price {
  background: #0f172a;
  color: #fff;
}

#appPage #overlayMobileRoot .om-st-section__headRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

#appPage #overlayMobileRoot .om-st-section__headRow .om-st-section__title {
  margin: 0;
}

#appPage #overlayMobileRoot .om-st-section--chargers {
  margin-bottom: 4px;
}

#appPage #overlayMobileRoot .om-st-section--chargers .om-st-section__headRow {
  gap: 9px;
  margin-bottom: 11px;
}

#appPage #overlayMobileRoot .om-st-section--chargers .om-st-section__title {
  font-size: 11px;
  margin-bottom: 9px;
}

#appPage #overlayMobileRoot .om-st-section--chargers .om-st-badge,
#appPage #overlayMobileRoot .om-st-conn-card .om-st-badge {
  padding: 3px 9px;
  font-size: 10px;
}

#appPage #overlayMobileRoot .om-station-sheet__head {
  flex: 0 0 auto;
  padding: 14px 16px 10px;
  background: #fff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

#appPage #overlayMobileRoot .om-station-sheet__titleRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

#appPage #overlayMobileRoot .om-station-sheet__title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.2;
}

@keyframes charji-station-fav-aura {
  0%,
  100% {
    transform: scale(0.96);
    opacity: 0.52;
    box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.42);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.78;
    box-shadow: 0 0 0 9px rgba(234, 179, 8, 0);
  }
}

#appPage #overlayMobileRoot .om-station-sheet__favBtn {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -4px -6px 0 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

#appPage #overlayMobileRoot .om-station-sheet__favBtn::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

#appPage #overlayMobileRoot .om-station-sheet__favBtn:active {
  transform: scale(0.92);
}

#appPage #overlayMobileRoot .om-station-sheet__favBtn.is-on {
  color: #ca8a04;
  background: rgba(234, 179, 8, 0.14);
}

#appPage #overlayMobileRoot .om-station-sheet__favBtn.is-on::before {
  opacity: 1;
  background: rgba(234, 179, 8, 0.2);
  animation: charji-station-fav-aura 2s ease-in-out infinite;
}

#appPage #overlayMobileRoot .om-station-btn__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

#appPage #overlayMobileRoot .om-station-btn__ico {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

#appPage #overlayMobileRoot .om-station-btn__text {
  line-height: 1.2;
}

#appPage #overlayMobileRoot .om-station-sheet__routeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #f5b04a 0%, #e98a0c 48%, #d97706 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

#appPage #overlayMobileRoot .om-station-sheet__routeBtn:active {
  background: linear-gradient(180deg, #e99520 0%, #d97706 100%);
  transform: scale(0.99);
}

#appPage #overlayMobileRoot .om-station-routeBar {
  flex: 0 0 auto;
  padding: 12px 16px max(16px, env(safe-area-inset-bottom, 16px));
  background: #fff;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

#appPage #overlayMobileRoot .om-station-routeBar__hint {
  margin: 0 0 10px;
  font-size: 12px;
  color: #64748b;
  text-align: center;
}

#appPage #overlayMobileRoot .om-station-routeBar__start {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(145deg, #22c98a 0%, #059669 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
}

#appPage #overlayMobileRoot .om-station-sheet.is-nav-driving {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

#appPage #overlayMobileRoot .om-station-sheet.is-at-destination .om-station-sheet__routeBtn,
#appPage #overlayMobileRoot .om-station-sheet__routeBtn[hidden] {
  display: none !important;
}

#appPage #overlayMobileRoot .om-station-sheet.is-route-prep .om-station-sheet__backdrop {
  opacity: 0.12;
  pointer-events: none;
}

/* Calcul itinéraire : fiche réduite — photo station seule visible */
#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__backdrop {
  opacity: 0.06;
  pointer-events: none;
}

#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__panel {
  max-height: min(24vh, 176px);
  min-height: min(24vh, 176px);
  transform: translateY(0);
}

#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__head,
#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__scroll,
#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__grab,
#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__heroMeta,
#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-routeBar {
  display: none !important;
}

#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-sheet__hero {
  flex: 1 1 auto;
  height: 100%;
  min-height: min(24vh, 176px);
}

#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-gallery,
#appPage #overlayMobileRoot .om-station-sheet.is-route-computing .om-station-gallery__viewport {
  height: 100%;
}

/* Trajet prêt : masquer la fiche station, afficher le slide trajet */
#appPage #overlayMobileRoot .om-station-sheet.is-route-panel-hidden:not(.is-route-map-peek) {
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Aperçu depuis une borne sur la carte : visible par-dessus l’itinéraire */
#appPage #overlayMobileRoot .om-station-sheet.is-route-map-peek.is-open {
  visibility: visible !important;
  pointer-events: auto !important;
  opacity: 1 !important;
}

#appPage #overlayMobileRoot .om-station-sheet__addr {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.4;
  color: #64748b;
}

#appPage #overlayMobileRoot .om-station-sheet__ratingRow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

#appPage #overlayMobileRoot .om-station-stars {
  display: inline-flex;
  gap: 2px;
  color: #f59e0b;
  font-size: 15px;
  line-height: 1;
}

#appPage #overlayMobileRoot .om-station-stars__star {
  opacity: 0.28;
}

#appPage #overlayMobileRoot .om-station-stars__star.is-full {
  opacity: 1;
}

#appPage #overlayMobileRoot .om-station-stars__star.is-half {
  opacity: 0.65;
}

#appPage #overlayMobileRoot .om-station-stars--lg {
  font-size: 18px;
  gap: 3px;
}

#appPage #overlayMobileRoot .om-station-sheet__ratingMeta {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

#appPage #overlayMobileRoot .om-station-tabs {
  display: flex;
  gap: 6px;
}

#appPage #overlayMobileRoot .om-station-tabs__btn {
  flex: 1;
  min-height: 36px;
  border: none;
  border-radius: 999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

#appPage #overlayMobileRoot .om-station-tabs__btn.is-active {
  background: linear-gradient(
    180deg,
    var(--om-vehicle-accent) 0%,
    var(--om-vehicle-accent-deep) 100%
  );
  color: #fff;
  box-shadow: 0 2px 10px var(--om-vehicle-accent-shadow);
}

#appPage #overlayMobileRoot .om-station-sheet__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 16px 24px;
}

#appPage #overlayMobileRoot .om-st-section {
  margin-bottom: 18px;
}

#appPage #overlayMobileRoot .om-st-section--last {
  margin-bottom: 8px;
}

#appPage #overlayMobileRoot .om-st-section__title {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

/* Résumé : liste à lignes (pas de 2e fond blanc), icônes vertes animées */
#appPage #overlayMobileRoot .om-st-summary {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

#appPage #overlayMobileRoot .om-st-summary__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.07);
  background: transparent;
  opacity: 0;
  transform: translateY(6px);
  animation: om-st-summary-in 0.42s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--om-st-i, 0) * 52ms);
}

#appPage #overlayMobileRoot .om-st-summary__item:first-child {
  border-top: none;
  padding-top: 2px;
}

#appPage #overlayMobileRoot .om-st-summary__item--accent .om-st-summary__val {
  color: var(--om-vehicle-accent-deep, #12b981);
}

@keyframes om-st-summary-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes om-st-summary-ic-in {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#appPage #overlayMobileRoot .om-st-summary__ic {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    var(--om-vehicle-accent-soft, #ecfdf5) 0%,
    rgba(255, 255, 255, 0.92) 100%
  );
  color: var(--om-vehicle-accent-deep, #12b981);
  box-shadow:
    inset 0 0 0 1px rgba(18, 185, 129, 0.14),
    0 2px 8px rgba(16, 185, 129, 0.1);
  opacity: 0;
  animation: om-st-summary-ic-in 0.38s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: calc(var(--om-st-i, 0) * 52ms + 70ms);
}

#appPage #overlayMobileRoot .om-st-summary__svg {
  display: block;
  width: 20px;
  height: 20px;
}

#appPage #overlayMobileRoot .om-st-summary__txt {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

#appPage #overlayMobileRoot .om-st-summary__lbl {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #64748b;
}

#appPage #overlayMobileRoot .om-st-summary__val {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.25;
}

#appPage #overlayMobileRoot .om-st-summary--loading .om-st-summary__skel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  opacity: 0;
  animation: om-st-summary-in 0.4s ease forwards;
  animation-delay: calc(var(--om-st-i, 0) * 50ms);
}

#appPage #overlayMobileRoot .om-st-summary--loading .om-st-summary__skel-row:first-child {
  border-top: none;
}

#appPage #overlayMobileRoot .om-st-summary__skel-ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(236, 253, 245, 0.9) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(18, 185, 129, 0.1);
}

#appPage #overlayMobileRoot .om-st-summary__skel-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#appPage #overlayMobileRoot .om-st-summary__skel-lines span {
  display: block;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(
    110deg,
    #e8ecf0 8%,
    #f4f6f8 18%,
    #e8ecf0 28%
  );
  background-size: 200% 100%;
  animation: om-station-shimmer 1.2s ease-in-out infinite;
}

#appPage #overlayMobileRoot .om-st-summary__skel-lines span:last-child {
  width: 55%;
  height: 14px;
}

@media (prefers-reduced-motion: reduce) {
  #appPage #overlayMobileRoot .om-st-summary__item,
  #appPage #overlayMobileRoot .om-st-summary__ic,
  #appPage #overlayMobileRoot .om-st-summary--loading .om-st-summary__skel-row {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

#appPage #overlayMobileRoot .om-st-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#appPage #overlayMobileRoot .om-st-amenity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  box-shadow: 0 1px 6px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

#appPage #overlayMobileRoot .om-st-amenity__ic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: #27272a;
}

#appPage #overlayMobileRoot .om-st-amenity__ic .om-filt-svc__svg {
  display: block;
  width: 20px;
  height: 20px;
}

#appPage #overlayMobileRoot .om-st-amenity__ic .om-filt-svc__svg--shops {
  width: 22px;
  height: 22px;
}

#appPage #overlayMobileRoot .om-st-amenity__lbl {
  line-height: 1.2;
}

#appPage #overlayMobileRoot .om-st-muted {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #64748b;
}

#appPage #overlayMobileRoot .om-st-chargers .om-st-conn-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

#appPage #overlayMobileRoot .om-st-conn-card {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0;
  box-shadow: none;
}

#appPage #overlayMobileRoot .om-st-conn-card:last-child {
  border-bottom: none;
  padding-bottom: 5px;
}

#appPage #overlayMobileRoot .om-st-conn-card:first-child {
  padding-top: 5px;
}

#appPage #overlayMobileRoot .om-st-conn-card.is-focus {
  background: transparent;
  box-shadow: none;
}

#appPage #overlayMobileRoot .om-st-conn-card__col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

#appPage #overlayMobileRoot .om-st-conn-card__main {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding-right: 26px;
  box-sizing: border-box;
}

#appPage #overlayMobileRoot .om-st-conn-card__tier {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  pointer-events: none;
}

#appPage #overlayMobileRoot .om-st-conn-card__tierPin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    var(--charji-blip-a, #5eecc0) 0%,
    var(--charji-blip-m, #3ddc97) 48%,
    var(--charji-blip-d, #22c98a) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 1px 2px var(--charji-blip-pin-shadow, rgba(4, 120, 87, 0.2));
  box-sizing: border-box;
}

#appPage #overlayMobileRoot .om-st-conn-card__tierIc {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  color: #fff;
}

#appPage #overlayMobileRoot .om-st-conn-card__tier .charji-ev-blip__svg {
  display: block;
  width: 10px;
  height: 10px;
}

#appPage #overlayMobileRoot .om-st-conn-card__thumb {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 13px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

#appPage #overlayMobileRoot .om-st-conn-card__thumb img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

#appPage #overlayMobileRoot .om-st-conn-card__thumb img.om-charji-conn-img--fallback {
  width: 26px;
  height: 26px;
  opacity: 0.45;
}

#appPage #overlayMobileRoot .om-st-conn-card__body {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

#appPage #overlayMobileRoot .om-st-conn-card__type {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

#appPage #overlayMobileRoot .om-st-conn-card__lbl {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #94a3b8;
  line-height: 1.35;
}

#appPage #overlayMobileRoot .om-st-conn-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
  margin-top: 7px;
}

#appPage #overlayMobileRoot .om-st-review-dash {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding: 14px 14px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #fff 55%, #f0fdf4 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
}

#appPage #overlayMobileRoot .om-st-review-dash__score {
  flex: 0 0 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#appPage #overlayMobileRoot .om-st-review-dash__num {
  margin: 0 0 4px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #0f172a;
}

#appPage #overlayMobileRoot .om-st-review-dash__score .om-station-stars--lg {
  font-size: 18px;
  margin-bottom: 6px;
}

#appPage #overlayMobileRoot .om-st-review-dash__cnt {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

#appPage #overlayMobileRoot .om-st-review-dash__bars {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

#appPage #overlayMobileRoot .om-st-review-bar {
  display: grid;
  grid-template-columns: 14px 1fr 34px;
  align-items: center;
  gap: 8px;
}

#appPage #overlayMobileRoot .om-st-review-bar__lbl {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-align: right;
}

#appPage #overlayMobileRoot .om-st-review-bar__lbl::after {
  content: '★';
  margin-left: 2px;
  font-size: 10px;
  color: #cbd5e1;
}

#appPage #overlayMobileRoot .om-st-review-bar__track {
  height: 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

#appPage #overlayMobileRoot .om-st-review-bar__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5eecc0, #22c98a);
  min-width: 0;
  transition: width 0.35s ease;
}

#appPage #overlayMobileRoot .om-st-review-bar__pct {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-align: right;
}

#appPage #overlayMobileRoot .om-st-review-compose__inner {
  padding: 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.05);
}

#appPage #overlayMobileRoot .om-st-rate-pick {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

#appPage #overlayMobileRoot .om-st-rate-pick__star {
  appearance: none;
  border: none;
  background: transparent;
  padding: 2px 4px;
  font-size: 28px;
  line-height: 1;
  color: #e2e8f0;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.12s ease;
}

#appPage #overlayMobileRoot .om-st-rate-pick__star.is-on {
  color: #f59e0b;
}

#appPage #overlayMobileRoot .om-st-rate-pick__star:active {
  transform: scale(1.08);
}

#appPage #overlayMobileRoot .om-st-rate-pick__hint {
  margin: 0 0 10px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
}

#appPage #overlayMobileRoot .om-st-review-compose__input {
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  font: inherit;
  font-size: 14px;
  line-height: 1.45;
  color: #0f172a;
  resize: vertical;
  min-height: 72px;
  background: #f8fafc;
}

#appPage #overlayMobileRoot .om-st-review-compose__input:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.45);
  background: #fff;
}

#appPage #overlayMobileRoot .om-st-review-compose__submit {
  width: 100%;
  padding: 11px 14px;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3ddc97, #12b981);
  cursor: pointer;
}

#appPage #overlayMobileRoot .om-st-review-compose__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#appPage #overlayMobileRoot .om-st-review-compose__thanks {
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #059669;
}

#appPage #overlayMobileRoot .om-st-review-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

#appPage #overlayMobileRoot .om-st-review-card__hd {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

#appPage #overlayMobileRoot .om-st-review-card__who {
  font-size: 13px;
  font-weight: 600;
  color: #334155;
}

#appPage #overlayMobileRoot .om-st-review-card__date {
  margin-left: auto;
  font-size: 11px;
  color: #94a3b8;
}

#appPage #overlayMobileRoot .om-st-review-card--mine {
  border: 1px solid rgba(16, 185, 129, 0.22);
  background: linear-gradient(180deg, #fff 0%, #f0fdf9 100%);
}

#appPage #overlayMobileRoot .om-st-review-card__txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #475569;
}

#appPage #overlayMobileRoot .om-station-sheet__err {
  margin: 12px 0 0;
  padding: 12px;
  border-radius: 12px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
}

#appPage #overlayMobileRoot .om-station-skel-line {
  color: transparent !important;
  background: linear-gradient(90deg, #e2e8f0 0%, #f8fafc 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: om-station-shimmer 1.2s ease-in-out infinite;
  border-radius: 6px;
  min-height: 1em;
}

#appPage #overlayMobileRoot .om-station-sheet.is-loading .om-st-block-load__bar {
  display: block;
  height: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: linear-gradient(90deg, #e2e8f0 0%, #f1f5f9 50%, #e2e8f0 100%);
  background-size: 200% 100%;
  animation: om-station-shimmer 1.1s ease-in-out infinite;
}

#appPage #overlayMobileRoot .om-station-sheet.is-loading .om-st-block-load__bar--short {
  width: 55%;
}

#appPage #overlayMobileRoot .om-st-block-load {
  padding: 8px 0;
}

/* Notification centrale (erreur fiche station) */
#appPage .charji-app-toast-host {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  background: rgba(15, 23, 42, 0.38);
}

#appPage .charji-app-toast-host.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

#appPage .charji-app-toast {
  width: min(92vw, 360px);
  padding: 22px 20px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 12px 40px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(15, 23, 42, 0.06);
  text-align: center;
}

#appPage .charji-app-toast__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fef3c7 0%, #fde68a 100%);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
}

#appPage .charji-app-toast__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

#appPage .charji-app-toast__msg {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.45;
  color: #64748b;
}

#appPage .charji-app-toast__actions {
  display: flex;
  gap: 10px;
}

#appPage .charji-app-toast__btn {
  flex: 1;
  min-height: 44px;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

#appPage .charji-app-toast__btn--ghost {
  background: #f1f5f9;
  color: #475569;
}

#appPage .charji-app-toast__btn--primary {
  background: linear-gradient(
    180deg,
    var(--om-vehicle-accent) 0%,
    var(--om-vehicle-accent-deep) 100%
  );
  color: #fff;
  box-shadow: 0 3px 12px var(--om-vehicle-accent-shadow);
}
