/* =========================
   Core CSS – Organet
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Vazirmatn', sans-serif !important;
}

body {
  direction: rtl;
  text-align: right;
  line-height: 1.6;
}

/* Interactive elements */
button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Media & links */
img {
  max-width: 100%;
  display: block;
}

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

/* ===== CSS Variables ===== */
:root {
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 20px;

  --z-header: 100;
  --z-footer: 90;
  --z-modal: 1000;

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}
