.sbike-map-wrap {
  position: relative;
  width: 100%;
  height: var(--sbike-map-height, 700px);
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--sbike-map-radius, 18px);
  background: #202421;
}

.sbike-map {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.sbike-map .leaflet-control-zoom {
  border: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

.sbike-map .leaflet-control-zoom a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  color: #34413d;
  background: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  line-height: 1;
}

.sbike-map .leaflet-control-zoom a:hover,
.sbike-map .leaflet-control-zoom a:focus {
  color: #ffffff;
  background: #566d66;
}

.sbike-custom-marker {
  object-fit: contain;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, 0.35));
  transition: transform 180ms ease, filter 180ms ease;
}

.leaflet-marker-icon.sbike-custom-marker:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 8px 11px rgba(0, 0, 0, 0.42));
}

.sbike-fallback-marker-wrap {
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
}

.sbike-fallback-marker {
  display: block;
  width: 70%;
  height: 70%;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: #a9bb2d;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease;
}

.sbike-fallback-marker-wrap:hover .sbike-fallback-marker {
  transform: scale(1.14);
}

.sbike-map .leaflet-popup-content-wrapper {
  border-radius: 14px;
  color: #31413c;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.sbike-map .leaflet-popup-content {
  margin: 18px 20px;
  line-height: 1.55;
}

.sbike-map .sbike-popup-title {
  margin: 0 0 8px;
  color: #31413c;
  font-size: 18px;
  line-height: 1.25;
}

.sbike-map .sbike-popup > :last-child {
  margin-bottom: 0;
}

.sbike-map .leaflet-popup-tip {
  background: rgba(255, 255, 255, 0.98);
}

.sbike-map .leaflet-control-attribution {
  padding: 3px 7px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(25, 29, 27, 0.78);
  font-size: 10px;
}

.sbike-map .leaflet-control-attribution a {
  color: #ffffff;
}

@media (max-width: 690px) {
  .sbike-map-wrap {
    height: min(var(--sbike-map-height, 700px), 70vh);
  }
}
