/* ===== استایل پایه سراسری ===== */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Vazirmatn', sans-serif;
  direction: rtl;
  text-align: right;
  background: #faf6f2;
  color: #2d1b12;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
a { text-decoration: none; color: inherit; }
.hidden { display: none !important; }

/* ===== کپچای «من ربات نیستم» (خودمیزبان) ===== */
.bot-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 2px solid #e0d5c9;
  background: #fff;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  user-select: none;
  transition: border-color .2s, box-shadow .2s;
  max-width: 280px;
  width: 100%;
}
.bot-check:hover { border-color: #c9b8a7; }
.bot-check.checked { border-color: #2e8b57; background: #f2faf5; }
.bot-check-box {
  width: 22px;
  height: 22px;
  border: 2px solid #c9b8a7;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #fff;
  background: #fff;
  transition: all .2s;
  flex-shrink: 0;
}
.bot-check-box.checked { background: #2e8b57; border-color: #2e8b57; }
.bot-check-label { font-size: 0.85rem; font-weight: 600; color: #5f4a3c; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== R92: شبکه ایمنی موبایل ===== */
body { overflow-x: hidden; }
/* ===== R92: گریدهای inline مودالهای مشترک در موبایل تکستونه ===== */
@media (max-width: 560px) {
  [style*="grid-template-columns: 1fr 1fr"], [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}
