/* استایل‌های تکمیلی - طراحی مدرن و مینیمال */
* { -webkit-tap-highlight-color: transparent; }
body { -webkit-font-smoothing: antialiased; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* اعداد فارسی در ورودی‌ها */
input[type="number"] { font-feature-settings: "ss01"; }

/* انیمیشن نرم برای کارت‌ها */
.bg-white { transition: box-shadow .2s ease; }

/* فوکوس رینگ با رنگ برند */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 18%, transparent);
}

/* جدول‌ها */
table { border-collapse: collapse; }
