/* ==========================================================================
   Base — RTL / LTR rules
   قوانین راست‌چین سراسری و استثناهای LTR (کد، اعداد).
   منتقل‌شده از site.css قدیمی.
   ========================================================================== */
html {
  font-size: 14px;
  direction: rtl;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  direction: rtl;
  text-align: right;
}

/* فوکوس فرم‌ها و دکمه‌ها */
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: var(--shadow-focus);
}

.form-floating > .form-control-plaintext::placeholder,
.form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder,
.form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* حفظ LTR برای کد و ورودی‌های عددی */
code, kbd, pre, .font-monospace {
  direction: ltr;
  text-align: left;
}

input[type="number"],
input[type="tel"],
input[type="email"],
input[dir="ltr"],
textarea[dir="ltr"] {
  direction: ltr;
  text-align: left;
}
