html, body {
  margin: 0; padding: 0; height: 100%; overflow: hidden;
  background: #0b0b0b; font-family: 'Segoe UI', Tahoma, sans-serif;
}

#map { height: 100vh; width: 100vw; background: transparent; }

#filter-menu {
  position: absolute; top: 10px; left: 10px; z-index: 1000;
  background: rgba(15, 15, 15, 0.95); color: #eee;
  padding: 15px; border-radius: 6px;
  border: 1px solid #867333; box-shadow: 0 4px 15px rgba(0,0,0,0.8);
  width: 280px; max-height: 90vh; overflow-y: auto;
}

#filter-menu h3 {
  margin: 0 0 10px 0; font-size: 13px; color: #867333;
  text-transform: uppercase; letter-spacing: 1px;
}

.filter-item {
  display: flex; align-items: center; margin: 6px 0;
  cursor: pointer; font-size: 12px; color: #ccc;
}
.filter-item:hover { color: #fff; }
.filter-item input { margin-right: 8px; cursor: pointer; }

.filter-icon-preview {
  width: 12px; height: 12px; margin-right: 8px;
  border: 1px solid #444; display: inline-block;
}

#route-itinerary {
  margin-top: 15px; background: rgba(0, 0, 0, 0.4);
  padding: 10px; border-radius: 4px; border: 1px solid #333;
}
.route-step { font-size: 12px; margin: 5px 0; color: #ddd; }
.step-number { color: #ffd700; font-weight: bold; margin-right: 6px; }

#map-selector {
  position: absolute; bottom: 25px; left: 50%; transform: translateX(-50%); z-index: 1000;
  display: flex; gap: 12px; background: rgba(0,0,0,0.8); padding: 12px; border-radius: 50px; border: 1px solid #444;
}

.map-btn {
  background: #1a1a1a; color: #888; border: 1px solid #333;
  padding: 10px 20px; cursor: pointer; border-radius: 25px;
  transition: all 0.3s ease; font-weight: bold; font-size: 12px; text-transform: uppercase;
}
.map-btn:hover { border-color: #867333; color: #eee; }
.map-btn.active {
  background: #867333; color: #fff; border-color: #ffd700;
  box-shadow: 0 0 10px rgba(134, 115, 51, 0.6);
}

.menu-btn {
  margin-top: 10px; width: 100%; background: #867333; border: 1px solid #ffd700;
  color: #fff; font-weight: bold; font-size: 12px; cursor: pointer; padding: 8px 10px; border-radius: 6px;
}
.menu-btn:hover { background: #caa85a; }

.custom-tip {
  font-size: 10px; color: #888; text-align: center; margin-top: 8px; font-style: italic;
}

/* =========================================================================
   MARKERS SYSTEM
   ========================================================================= */
.poi-icon-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.poi-inner-dot {
  width: 12px; height: 12px;
  border: 1px solid #111;
  box-shadow: 0 2px 4px rgba(0,0,0,0.8);
  box-sizing: border-box;
  transition: transform 0.1s ease-in-out;
}

/* custom markers */
.poi-custom-dot {
  width: 11px; height: 11px;
  border: 1px solid #fff;
  box-shadow: 0 0 6px #ffd700;
  box-sizing: border-box;
  transform: rotate(45deg);
  transition: transform 0.1s ease-in-out;
}

/* Active */
.poi-checked .poi-inner-dot {
  transform: scale(1.2);
  outline: 3px solid #ffd700; outline-offset: 2px;
  box-shadow: 0 0 12px #ffd700;
}
.poi-checked .poi-custom-dot {
  transform: scale(1.3) rotate(45deg);
  outline: 2px solid #fff; outline-offset: 1px;
  box-shadow: 0 0 15px #ffd700;
}

.poi-checked { z-index: 999 !important; }

/* Badge */
.poi-order-badge {
  position: absolute; top: -12px; right: -12px;
  background: #111; color: #ffd700;
  font-size: 10px; font-weight: bold;
  padding: 1px 5px; border-radius: 10px;
  border: 1px solid #ffd700;
  box-shadow: 0 2px 4px rgba(0,0,0,0.6);
  white-space: nowrap; z-index: 1010;
}