/* Optimisations spécifiques pour iPhone - Cross-browser */

/* Viewport et zoom pour iPhone */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Scroll optimisé pour iPhone */
body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

#root {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
}

/* Cacher scrollbar personnalisée pour iPhone */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Optimisations tactiles iPhone */
@media (max-width: 768px) {
  body {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  input,
  textarea,
  select {
    -webkit-appearance: none;
    appearance: none;
  }

  button {
    -webkit-tap-highlight-color: transparent;
  }
}