/* ۱. معرفی فونت به مرورگر */
@font-face {
    font-family: 'Vazirmatn';
    src: url('css/fonts/Vazirmatn-Regular.woff2') format('woff2'), url('css/fonts/Vazirmatn-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ۲. اعمال فونت به صورت سراسری روی تمام تگ‌های سایت */
html, body, button, input, select, textarea {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif !important;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    text-align: right;
}

.nav-link:hover {
    color: #ffc107 !important;
}

/* خط تزئینی طلایی زیر تیترهای بخش‌ها (صفحه اصلی: چندرسانه‌ای، محصولات، دسته‌بندی‌ها، آخرین مطالب) */
.section-title-effect {
    display: inline-block;
    padding-bottom: 10px;
}

    .section-title-effect::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50px;
        height: 3px;
        background-color: #ffc107;
        border-radius: 3px;
    }
