/* ==========================================================================
   Tourist POI Layers, Summit Markers & Attraction Popups
   ========================================================================== */
.poi-marker {
  background: white;
  border: 2px solid #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.poi-marker:hover {
  transform: scale(1.3);
  z-index: 1500 !important;
}

.poi-marker.peak { border-color: #dc2626; background: #fef2f2; }
.poi-marker.refuge { border-color: #16a34a; background: #f0fdf4; }
.poi-marker.viewpoint { border-color: #0284c7; background: #f0f9ff; }
.poi-marker.cultural { border-color: #9333ea; background: #faf5ff; }

.poi-popup-card {
  font-family: inherit;
  padding: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 240px;
}

.poi-popup-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0f172a;
}

.poi-popup-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
}

.poi-popup-desc {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.35;
}

.poi-popup-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-top: 2px;
}

.poi-popup-link:hover { text-decoration: underline; }
