/* ╔══════════════════════════════════════════╗
   ║  BAZAAR — Base & Resets  ║
   ╚══════════════════════════════════════════╝ */

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
  overflow-x: hidden;
}

body {
  font-family: 'Cairo', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: 'Cairo', sans-serif;
}
