/* ========================================
   NOMADS RESPONSIVE – Breakpoints & Transitions
   ======================================== */

   @media (max-width: 768px) {
    .nomads-header { flex-direction: column; gap: var(--nomads-spacing-sm); }
    .nomads-filters { grid-template-columns: 1fr; }
    .nomads-hero__controls { flex-direction: column; top: auto; bottom: 1rem; }
    .nomads-form__input { font-size: 1rem; } /* Touch-friendly */
  }

  /* Animations Subtiles */
  .nomads-filter-item, .nomads-btn, .nomads-bubble {
    transition: var(--nomads-transition);
  }

  /* Pan/Zoom Carte (Placeholder) */
  @keyframes nomads-zoom { from { transform: scale(1); } to { transform: scale(1.1); } }
  .nomads-hero__map:hover { animation: nomads-zoom 0.3s ease; }