/* ── Emma Internazionale — Reset ────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
  background: #F5F5F5;
  color: #ffffff;
  font-family: var(--font-body, 'Almarai', 'Montserrat', sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="ar"],
html[dir="rtl"] {
  --font-display: 'Almarai', sans-serif;
  --font-body: 'Almarai', sans-serif;
  font-family: 'Almarai', sans-serif;
}

body.no-cursor,
body.no-cursor * {
  cursor: none !important;
}

img, svg, video, canvas {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: none;
}

/* Reduced motion — disable all transforms/transitions for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
