/* Map section – MapLibre GL JS */
.map-section { width: 100%; margin: 1.5rem 0; }
.map-section .map-section-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-primary, #1a1a2e); }
.map-container { position: relative; width: 100%; height: 500px; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.06); background: #e8e8e8; }
.map-container #map { width: 100%; height: 100%; min-height: 400px; }
.map-container .maplibregl-map { width: 100%; height: 100%; border-radius: 12px; }
.map-controls { position: absolute; top: 12px; right: 12px; z-index: 10; display: flex; flex-direction: column; gap: 8px; }
.map-controls .map-btn { padding: 0.5rem 0.75rem; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; background: #fff; color: #333; font-size: 0.875rem; font-weight: 500; cursor: pointer; box-shadow: 0 1px 4px rgba(0,0,0,0.1); transition: background 0.2s, box-shadow 0.2s; }
.map-controls .map-btn:hover { background: #f5f5f5; box-shadow: 0 2px 6px rgba(0,0,0,0.12); }
.map-controls .map-btn.active { background: #0A6BD6; color: #fff; border-color: #0A6BD6; }
.map-controls .map-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.maplibregl-popup-content { padding: 12px 16px; min-width: 200px; border-radius: 10px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.map-popup-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: #1a1a2e; }
.map-popup-address { font-size: 0.875rem; color: #555; line-height: 1.4; }
@media (max-width: 768px) { .map-container { height: 400px; } .map-controls { top: 8px; right: 8px; } .map-controls .map-btn { padding: 0.4rem 0.6rem; font-size: 0.8rem; } }
@media (max-width: 480px) { .map-container { height: 320px; border-radius: 8px; } .map-container .maplibregl-map { border-radius: 8px; } }
