* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Georgia', serif; background-color: #2b221b; overflow: hidden; }
#app-header { position: absolute; top: 0; left: 0; right: 0; height: 60px; background: #38281d; color: #f4ede2; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; box-shadow: 0 2px 10px rgba(0,0,0,0.5); z-index: 1000; border-bottom: 2px solid #8c7355; }
.header-title h1 { font-size: 1.2rem; }
.header-title span { font-size: 0.8rem; color: #cbb49d; font-style: italic; }
.header-controls { display: flex; align-items: center; gap: 16px; }

/* Nouveau Menu Déroulant des Filtres */
.filter-wrapper { position: relative; }
#filter-display-btn { height: 38px; padding: 0 14px; border-radius: 20px; border: 1.5px solid #8c7355; background: #3d2a1d; color: #f7f2eb; display: flex; align-items: center; gap: 8px; cursor: pointer; min-width: 150px; justify-content: center; }
#filter-display-btn:hover { background: #523827; }
#filter-badge { font-size: 0.8rem; }
#filter-dropdown { position: absolute; top: calc(100% + 8px); left: 0; width: 240px; background: rgba(253, 250, 243, 0.98); backdrop-filter: blur(4px); border: 1.5px solid #8c7355; border-radius: 8px; padding: 16px; z-index: 1100; box-shadow: 0 12px 30px rgba(0,0,0,0.4); transition: opacity 0.2s ease, transform 0.2s ease; }
.filter-dropdown-hidden { opacity: 0; transform: translateY(-10px); pointer-events: none; }
.filter-group label { display: flex; align-items: center; margin: 8px 0; cursor: pointer; font-size: 13px; color: #2c1e14; }
.filter-group input { margin-right: 10px; accent-color: #8c2d19; }

/* Barre de recherche */
.search-container { position: relative; width: 280px; }
#search-input { width: 100%; height: 38px; padding: 0 16px; border-radius: 20px; border: 1.5px solid #8c7355; background: #fdfaf3; color: #2c1e14; outline: none; }
#search-suggestions { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fdfaf3; border: 1px solid #8c7355; border-radius: 8px; max-height: 280px; overflow-y: auto; z-index: 2000; box-shadow: 0 10px 24px rgba(0,0,0,0.35); display: none; }
.suggestion-item { padding: 10px 14px; cursor: pointer; border-bottom: 1px solid #eedbc5; }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background-color: #eedbc5; }
.suggestion-item strong { color: #2c1e14; }
.suggestion-item small { color: #7d654c; margin-left: 8px; }

/* Reste du CSS (inchangé) */
#map { position: absolute; top: 60px; bottom: 0; left: 0; right: 0; background-color: #d8d0c5; }
.noble-marker-pin { background: transparent !important; border: none !important; }
.noble-marker-pin svg { filter: drop-shadow(0 3px 6px rgba(0,0,0,0.45)); }
.noble-popup-frame .leaflet-popup-content-wrapper { background: #fdfaf3; border: 2px solid #8c7355; border-radius: 8px; padding: 0; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.4); }
.noble-popup-frame .leaflet-popup-content { margin: 0; width: 300px !important; }
.noble-popup-banner { width: 100%; height: 160px; background-size: cover; background-position: center top; border-bottom: 2px solid #8c7355; }
.noble-popup-body { padding: 16px; }
.noble-popup-badge { display: inline-block; font-size: 10px; text-transform: uppercase; background: #8c7355; color: #fff; padding: 2px 8px; border-radius: 3px; margin-bottom: 6px; }
.noble-popup-title { font-size: 17px; font-weight: bold; color: #2b1f16; margin-bottom: 2px; }
.noble-popup-subtitle { font-size: 13px; color: #634f3d; margin-bottom: 6px; }
.noble-popup-meta { font-size: 12px; color: #6a5746; margin-bottom: 8px; font-style: italic; }
.noble-popup-divider { border: 0; height: 1px; background: #e2d5c3; margin: 10px 0; }
.noble-popup-bio { font-size: 13px; color: #3d3226; line-height: 1.5; text-align: justify; }
/* Animation de survol pour la punaise réduite (20x27px) */
.noble-marker-pin:hover svg {
  transform: scale(1.18);
  transform-origin: 10px 27px; /* Centre l'effet de zoom sur la pointe de la punaise */
}

