@font-face {
    font-family: 'Peyda100';
    src: url('../fonts/PeydaWebFaNum-Thin.4dc9791976a333b36501.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda200';
    src: url('../fonts/PeydaWebFaNum-ExtraLight.cb12d7d5e9d6131c285f.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda300';
    src: url('../fonts/PeydaWebFaNum-Light.e5c4aa2be8084a7fd345.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda400';
    src: url('../fonts/PeydaWebFaNum-Regular.a85fc388413d6fb2707b.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda500';
    src: url('../fonts/PeydaWebFaNum-Medium.5ae94427bffc3c292a70.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda600';
    src: url('../fonts/PeydaWebFaNum-SemiBold.bee880ae22ea6f0f046e.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda700';
    src: url('../fonts/PeydaWebFaNum-Bold.2106f9398d9799d35d55.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda800';
    src: url('../fonts/PeydaWebFaNum-ExtraBold.5d0e4f0b138c23493636.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Peyda900';
    src: url('../fonts/PeydaWebFaNum-Black.ce8ffc88f1303a4ed135.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

body,
html {
    font-family: 'Peyda400', sans-serif !important;
    /* Regular */
    font-weight: 400 !important;
}

h1,
h2 {
    font-family: 'Peyda900', sans-serif !important;
    /* Black */
    font-weight: 900 !important;
}

h3,
h4 {
    font-family: 'Peyda700', sans-serif !important;
    /* Bold */
    font-weight: 700 !important;
}

p {
    font-family: 'Peyda300', sans-serif !important;
    /* Light */
    font-weight: 300 !important;
}

strong,
b {
    font-family: 'Peyda800', sans-serif !important;
    /* ExtraBold */
    font-weight: 800 !important;
}

em {
    font-family: 'Peyda200', sans-serif !important;
    /* ExtraLight */
    font-weight: 200 !important;
}

a {
    font-family: 'Peyda500', sans-serif !important;
    /* Medium */
    font-weight: 500 !important;
}

small,
.caption {
    font-family: 'Peyda100', sans-serif !important;
    /* Thin */
    font-weight: 100 !important;
}

button,
input,
textarea,
select {
    font-family: 'Peyda600', sans-serif !important;
    /* SemiBold */
    font-weight: 600 !important;
}
/* ===== assets/css/style.css ===== */

/* اسکرول‌بار مخفی */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* سینه‌خیز متن */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* safe area */
.pb-safe { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }

/* ریپل سریع */
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* اسپینر */
@keyframes spin { to { transform: rotate(360deg); } }
.fa-spin { animation: spin 1s linear infinite; }

/* بارگذاری اسکلتون */
@keyframes shimmer {
  0%   { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: 8px;
}

/* تم آبی */
:root {
  --primary:        #2563eb;
  --primary-light:  #3b82f6;
  --primary-dark:   #1d4ed8;
  --bg:             #f0f5ff;
  --surface:        #ffffff;
  --border:         #e5e7eb;
  --text:           #1f2937;
  --text-muted:     #6b7280;
  --success:        #10b981;
  --error:          #ef4444;
  --warning:        #f59e0b;
}

/* فونت فارسی */
body { font-family: Tahoma, Arial, sans-serif; }

/* لینک‌ها */
a { text-decoration: none; }

/* فرم‌ها */
input, select, textarea {
  font-family: Tahoma, Arial, sans-serif;
}

/* Transition سراسری */
* { box-sizing: border-box; }
button, a { transition: opacity .15s; }
button:active, a:active { opacity: .8; }