/* =============================================
   Khabco — Reset & Base
   فایل: assets/css/reset.css
   فراخوانی: functions.php (همه صفحات)
   ============================================= */

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Base ── */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-white);
    direction: rtl;           /* راست‌چین */
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ── تصاویر ── */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── دکمه‌ها ── */
button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ── اینپوت‌ها ── */
input,
textarea,
select {
    direction: rtl;
}

/* ── لیست‌ها ── */
ul, ol {
    list-style: none;
}

/* ── کانتینر ── */
.kh-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}
