/* Personnalisations qui ne tiennent pas dans Tailwind */
html { scroll-behavior: smooth; }
body { -webkit-tap-highlight-color: transparent; }

/* Scrollbars douces */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(180, 140, 110, 0.25); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(180, 140, 110, 0.45); }

/* Safe area iOS */
@supports (padding: max(0px)) {
  body { padding-bottom: env(safe-area-inset-bottom); }
}
