.map-search-body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
}

.map-search-body .slim-header,
.map-search-body .site-navbar {
  flex-shrink: 0;
}

.map-search-body .site-footer {
  display: none;
}

.map-search-page {
  display: flex;
  flex: 1;
  min-height: 0;
  margin-top: 0;
  height: auto;
  background: #f5f3ef;
}

.map-search-sidebar {
  width: 380px;
  max-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid rgba(93, 60, 25, 0.12);
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.04);
  z-index: 3;
}

.map-search-sidebar__header {
  padding: 1rem 1.1rem 0.75rem;
  border-bottom: 1px solid rgba(93, 60, 25, 0.08);
}

.map-search-sidebar__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.map-search-sidebar__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5d3c19;
  margin: 0;
}

.map-search-sidebar__list-link {
  font-size: 0.82rem;
  color: #bc9f5d;
  white-space: nowrap;
}

.map-search-sidebar__list-link:hover {
  color: #5d3c19;
  text-decoration: none;
}

.map-search-sidebar__subtitle {
  margin: 0.35rem 0 0;
  font-size: 0.85rem;
  color: #6b5344;
  line-height: 1.45;
}

.map-search-sidebar__filters {
  padding: 0.75rem 1rem 0;
}

.map-search-sidebar__filters .lists-search__actions {
  margin-bottom: 0;
}

.map-search-filter-panel__inner {
  max-height: 42vh;
  overflow: auto;
}

.map-search-results {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-top: 1px solid rgba(93, 60, 25, 0.08);
}

.map-search-results__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  background: #faf8f4;
  border-bottom: 1px solid rgba(93, 60, 25, 0.06);
}

.map-search-results__count {
  font-size: 0.88rem;
  font-weight: 600;
  color: #5d3c19;
}

.map-search-results__list {
  flex: 1;
  overflow: auto;
  padding: 0.5rem;
}

.map-search-card {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  border: 1px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.map-search-card:hover,
.map-search-card.is-active {
  border-color: #bc9f5d;
  box-shadow: 0 4px 14px rgba(93, 60, 25, 0.08);
}

.map-search-card.is-group-peer:not(.is-active) {
  border-color: rgba(188, 159, 93, 0.55);
  background: #fffaf6;
}

.map-search-card__thumb {
  width: 92px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #eee;
}

.map-search-card__body {
  min-width: 0;
  flex: 1;
}

.map-search-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #3d2a16;
  margin: 0 0 0.15rem;
  line-height: 1.3;
}

.map-search-card__sub {
  font-size: 0.78rem;
  color: #8a7560;
  margin: 0 0 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-search-card__meta {
  font-size: 0.8rem;
  color: #6b5344;
  margin: 0;
}

.map-search-card__price {
  color: #cd212d;
  font-weight: 700;
}

.map-search-results__empty {
  padding: 2rem 1rem;
  text-align: center;
  color: #8a7560;
}

.map-search-results__empty i {
  font-size: 2rem;
  color: #bc9f5d;
  margin-bottom: 0.75rem;
}

.map-search-map-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
  isolation: isolate;
}

.map-search-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-search-toolbar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  pointer-events: auto;
}

.map-search-toolbar__draw,
.map-search-toolbar__districts,
.map-search-toolbar__actions,
.map-search-draw-hint {
  pointer-events: auto;
  position: relative;
  z-index: 1;
}

.map-search-draw-btn,
.map-search-district-chip,
.map-search-tool-btn {
  position: relative;
  z-index: 2;
  touch-action: manipulation;
}

.map-search-toolbar__districts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  max-width: calc(100% - 180px);
}

.map-search-district-chip {
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #5d3c19;
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.map-search-district-chip:hover,
.map-search-district-chip.is-active {
  background: #5d3c19;
  color: #fff;
}

.map-search-toolbar__actions {
  display: flex;
  gap: 0.35rem;
  flex-shrink: 0;
}

.map-search-tool-btn {
  background: rgba(255, 255, 255, 0.95);
  color: #5d3c19;
  border: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
}

.map-search-tool-btn--primary {
  background: #5d3c19;
  color: #fff;
}

.map-search-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  pointer-events: none;
}

.map-search-loading__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(93, 60, 25, 0.15);
  border-top-color: #5d3c19;
  border-radius: 50%;
  animation: map-search-spin 0.8s linear infinite;
}

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

.map-price-markers-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}

.map-search-map-wrap.is-info-open .map-price-markers-layer {
  z-index: 1;
  pointer-events: none;
}

/* TMap InfoWindow custom content — keep card layout intact */
#map-search-canvas .tmap-zoom-info-window,
#map-search-canvas [class*="info-window"] {
  max-width: none;
}

#map-search-canvas .map-search-info-card {
  box-sizing: border-box;
}

#map-search-canvas .map-search-info-card img {
  max-width: 100%;
  height: auto;
}

#map-search-canvas .map-search-info-card__img {
  height: 140px;
}

#map-search-canvas .map-search-info-card__switch-thumb {
  width: 44px;
  height: 44px;
}

.map-price-marker.is-active {
  z-index: 3;
}

.map-price-marker {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  cursor: pointer;
  user-select: none;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
  /* Enlarge tap target without growing the visible label */
  padding: 10px 6px 14px;
  margin: -10px -6px -14px;
}

.map-price-marker__label {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  color: #5d3c19;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  border: 2px solid #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.map-price-marker.is-active .map-price-marker__label,
.map-price-marker:hover .map-price-marker__label {
  background: #cd212d;
  color: #fff;
  transform: scale(1.06);
}

.map-price-marker__count {
  display: inline-block;
  margin-left: 0.2rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: rgba(93, 60, 25, 0.12);
  font-size: 10px;
  font-weight: 600;
}

.map-price-marker.is-active .map-price-marker__count,
.map-price-marker:hover .map-price-marker__count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.map-price-marker__tail {
  width: 0;
  height: 0;
  margin: 0 auto;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #fff;
}

.map-price-marker.is-active .map-price-marker__tail,
.map-price-marker:hover .map-price-marker__tail {
  border-top-color: #cd212d;
}

.map-search-info-card {
  position: relative;
  z-index: 2;
  width: 280px;
  max-width: 78vw;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
}

#map-search-canvas .map-search-info-card,
#map-search-canvas .map-search-info-card * {
  pointer-events: auto;
}

.map-search-info-card__badge {
  padding: 0.45rem 0.75rem 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #cd212d;
  letter-spacing: 0.01em;
}

.map-search-info-card__media {
  position: relative;
}

.map-search-info-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.map-search-info-card__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #3d2a16;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 3;
  pointer-events: auto;
  touch-action: manipulation;
}

.map-search-info-card__nav--prev {
  left: 8px;
}

.map-search-info-card__nav--next {
  right: 8px;
}

.map-search-info-card__pager {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.3;
}

.map-search-info-card__body {
  padding: 0.75rem;
}

.map-search-info-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #3d2a16;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.map-search-info-card__meta {
  font-size: 0.8rem;
  color: #6b5344;
  margin: 0 0 0.65rem;
  line-height: 1.4;
}

.map-search-info-card__link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #5d3c19;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  text-decoration: none;
}

.map-search-info-card__link:hover {
  color: #fff;
  background: #4a2f14;
  text-decoration: none;
}

.map-search-info-card__switcher {
  display: flex;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem 0.65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid #f0e8df;
  background: #faf7f4;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  touch-action: pan-x;
}

.map-search-info-card__switch-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: 148px;
  max-width: 62vw;
  padding: 0.35rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  pointer-events: auto;
  touch-action: manipulation;
}

.map-search-info-card__switch-item.is-active {
  border-color: #cd212d;
  box-shadow: 0 2px 10px rgba(205, 33, 45, 0.18);
}

.map-search-info-card__switch-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}

.map-search-info-card__switch-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.map-search-info-card__switch-price {
  font-size: 0.78rem;
  font-weight: 700;
  color: #3d2a16;
  white-space: nowrap;
}

.map-search-info-card__switch-meta {
  font-size: 0.68rem;
  color: #6b5344;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 991.98px) {
  .map-search-body {
    height: 100dvh;
    box-sizing: border-box;
  }

  .map-search-body.map-search-body--sheet-open {
    overflow: hidden;
  }

  .map-search-page {
    flex-direction: column;
    margin-top: 0;
    height: auto;
    flex: 1;
    min-height: 0;
    position: relative;
  }

  .map-search-map-wrap {
    flex: 1;
    min-height: 0;
    height: auto;
  }

  .map-search-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 75vh;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    border-right: 0;
    border-top: 1px solid rgba(93, 60, 25, 0.12);
    border-radius: 16px 16px 0 0;
    transform: translateY(calc(100% - 56px));
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10050;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
    /* Collapsed: only the peeking handle/bar receives taps so markers stay clickable */
    pointer-events: none;
  }

  .map-search-sidebar > .map-search-sheet-handle,
  .map-search-sidebar > .map-search-sheet-bar {
    pointer-events: auto;
  }

  .map-search-sidebar[data-sheet="half"],
  .map-search-sidebar[data-sheet="full"] {
    pointer-events: auto;
  }

  .map-search-sidebar[data-sheet="half"] {
    transform: translateY(calc(100% - 45vh));
  }

  .map-search-sidebar[data-sheet="full"] {
    transform: translateY(0);
  }

  /* Info card readable above toolbar / sheet peek */
  .map-search-info-card {
    width: min(300px, calc(100vw - 2rem));
    max-width: min(300px, calc(100vw - 2rem));
  }

  #map-search-canvas .map-search-info-card__img {
    height: 120px;
  }

  .map-search-toast {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .map-search-toolbar {
    top: max(8px, env(safe-area-inset-top, 0px));
    left: 8px;
    right: 8px;
    gap: 0.3rem;
  }

  .map-search-toolbar__districts {
    max-width: 100%;
  }

  .map-search-district-chip {
    flex-shrink: 0;
    min-height: 36px;
    padding: 0.4rem 0.7rem;
  }

  .map-search-tool-btn,
  .map-search-draw-btn {
    min-height: 40px;
  }

  .map-search-body .site-footer,
  .map-search-body footer {
    display: none !important;
  }

  .map-search-sheet-handle {
    display: block;
    width: 40px;
    height: 4px;
    margin: 8px auto 4px;
    border-radius: 999px;
    background: rgba(93, 60, 25, 0.2);
    flex-shrink: 0;
    touch-action: none;
  }

  .map-search-sheet-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(93, 60, 25, 0.08);
    flex-shrink: 0;
  }

  .map-search-sheet-bar__count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 0;
    background: transparent;
    color: #5d3c19;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.5rem 0.25rem;
    min-height: 44px;
  }

  .map-search-sheet-bar__actions {
    display: flex;
    gap: 0.35rem;
  }

  .map-search-sheet-bar__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border: 0;
    background: #f5f1e8;
    color: #5d3c19;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    min-height: 44px;
  }

  .map-search-sidebar__header {
    padding: 0.65rem 1rem 0.5rem;
  }

  .map-search-sidebar__title {
    font-size: 1.05rem;
  }

  .map-search-sidebar__filters {
    padding: 0.5rem 1rem 0;
  }

  .map-search-sidebar__filters .lists-search-mobile-bar {
    display: none;
  }

  .map-search-sidebar__filters .map-search-filter-panel {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: none;
  }

  .map-search-sidebar__filters .map-search-filter-panel.is-open {
    display: block;
  }

  .map-search-filter-panel__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
  }

  .map-search-filter-panel__inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    max-height: 85vh;
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .map-search-filter-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  .map-search-filter-panel__close {
    border: 0;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: #666;
  }

  .map-search-toolbar__districts {
    max-width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }

  .map-search-draw-tools-toggle {
    display: inline-flex;
  }

  .map-search-draw-tools-extra {
    display: none;
    flex-wrap: wrap;
    gap: 0.35rem;
    width: 100%;
  }

  .map-search-draw-tools-extra.is-open {
    display: flex;
  }

  .map-search-toolbar__draw {
    flex-wrap: wrap;
  }

  .map-search-toolbar #map-search-toggle-list {
    display: none;
  }
}

@media (min-width: 992px) {
  .map-search-sheet-handle,
  .map-search-sheet-bar {
    display: none;
  }

  .map-search-draw-tools-toggle {
    display: none !important;
  }

  .map-search-draw-tools-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    width: auto;
  }
}

.map-search-toolbar {
  flex-direction: column;
  align-items: stretch;
}

.map-search-toolbar__draw {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.map-search-draw-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #5d3c19;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.38rem 0.65rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.map-search-draw-btn i {
  font-size: 0.85rem;
}

.map-search-draw-btn:hover,
.map-search-draw-btn.is-active {
  background: #5d3c19;
  color: #fff;
}

.map-search-draw-btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  color: #cd212d;
  border: 1px solid rgba(205, 33, 45, 0.25);
}

.map-search-draw-btn--ghost:hover {
  background: #cd212d;
  color: #fff;
}

.map-search-draw-btn--ghost:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.map-search-draw-btn--finish.is-ready {
  background: #cd212d;
  color: #fff;
  border-color: #cd212d;
}

.map-search-draw-hint {
  margin: 0 0 0.35rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.78rem;
  color: #5d3c19;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  max-width: 100%;
}

.map-search-toolbar__districts + .map-search-toolbar__actions,
.map-search-toolbar > .map-search-toolbar__actions {
  align-self: flex-end;
}

.map-search-district-chip.is-active {
  background: #cd212d;
  color: #fff;
  box-shadow: 0 2px 10px rgba(205, 33, 45, 0.35);
}

/* Hidden geo admin trigger */
.map-geo-secret-trigger {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  z-index: 10001;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  opacity: 0;
  cursor: default;
}

.map-geo-admin-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(45, 32, 20, 0.88);
  color: #fff;
  font-size: 0.82rem;
}

.map-geo-admin-bar__exit {
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.map-geo-modal {
  position: absolute;
  inset: 0;
  z-index: 10020;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.map-geo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.map-geo-modal__panel {
  position: relative;
  width: min(320px, 100%);
  background: #fff;
  border-radius: 12px;
  padding: 1.1rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.map-geo-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #3d2a16;
}

.map-geo-modal__hint {
  margin: 0 0 0.65rem;
  font-size: 0.85rem;
  color: #6b5344;
}

.map-geo-modal__input {
  width: 100%;
  border: 1px solid rgba(93, 60, 25, 0.2);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.map-geo-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

.map-geo-modal__btn {
  border: 0;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.map-geo-modal__btn--ghost {
  background: #f0ebe3;
  color: #5d3c19;
}

.map-geo-modal__btn--primary {
  background: #5d3c19;
  color: #fff;
}

.map-search-toast {
  position: absolute;
  left: 50%;
  bottom: 72px;
  transform: translateX(-50%);
  z-index: 10030;
  background: rgba(45, 32, 20, 0.92);
  color: #fff;
  font-size: 0.82rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  max-width: calc(100% - 2rem);
  text-align: center;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.map-search-body.is-geo-admin .map-search-toolbar {
  pointer-events: none;
  opacity: 0.45;
}

.map-search-body.is-geo-admin .map-price-markers-layer {
  z-index: 10003;
}

.map-price-marker--geo {
  cursor: grab;
  z-index: 5;
  touch-action: none;
  user-select: none;
}

.map-price-marker--geo.is-dragging {
  cursor: grabbing;
  z-index: 10;
}

.map-price-marker--geo .map-price-marker__label {
  background: #3d2a16;
  color: #fff;
  border-color: #bc9f5d;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.map-price-marker--geo .map-price-marker__tail {
  border-top-color: #3d2a16;
}

.map-price-marker--geo .map-price-marker__drag {
  display: inline-block;
  margin-right: 0.2rem;
  opacity: 0.85;
  font-size: 10px;
}
