/* Rahboom global styles — light theme, RTL */
:root {
  --brand: #0ea5e9;
  --bg: #f8fafc;
  --text: #0f172a;
}

html, body {
  font-family: 'Vazirmatn', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

img, video { max-width: 100%; height: auto; }

/* Smooth focus rings, RTL friendly */
input:focus, select:focus, textarea:focus, button:focus {
  outline: 2px solid #38bdf8;
  outline-offset: 2px;
}

/* Persian numerals in inputs */
input[type="number"] { font-variant-numeric: tabular-nums; }

/* Slider helpers */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Line clamp utility (in case Tailwind plugin not loaded) */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
