/* سراسری */
:root{
  --mmuph-accent: #FEB5C0;
  --mmuph-font: "Kalameh", sans-serif;
}
.mmuph-scope, .mmuph-scope * { box-sizing: border-box; font-family: var(--mmuph-font); }

/* فرم تمام‌عرض بدون بک‌گراند */
.mmuph-form{
  width:100%;
  margin:16px 0;
  padding:0;
  border:0;
  background:transparent;
  direction:rtl;
}
.mmuph-field{margin-bottom:14px}
.mmuph-field label{display:block; margin-bottom:6px; font-weight:600}

/* ورودی‌ها */
.mmuph-field input[type="text"]{
  width:100%; padding:10px 12px;
  border:1px solid #ddd; border-radius:8px; background:#fff;
}

/* باکس آپلود dashed */
.mmuph-field input[type="file"]{
  display:block; width:100%;
  padding:14px 12px; border-radius:10px;
  border:2px dashed var(--mmuph-accent);
  background:transparent; color:#333;
}

/* دکمه ارسال (با !important) */
.mmuph-actions{margin-top:12px}
.mmuph-btn{
  display:inline-block !important; cursor:pointer !important;
  background:var(--mmuph-accent) !important; color:#fff !important;
  border:0 !important; padding:10px 18px !important; border-radius:10px !important;
  font-weight:600 !important; text-decoration:none !important;
}
.mmuph-btn:hover,
.mmuph-btn:active,
.mmuph-btn:focus{
  background:var(--mmuph-accent) !important; color:#fff !important; outline:none !important;
}

/* پیام پس از ارسال */
.mmuph-msg{
  margin-top:12px; padding:12px 14px;
  background:#fff; border:1px solid #f3d8de; border-radius:10px;
  color:#53212a; line-height:1.7; font-size:15px;
}

/* گالری مانسوری */
.mmuph-gallery{ column-gap:16px; }
.mmuph-gallery[data-columns="2"]{ column-count:2 }
.mmuph-gallery[data-columns="3"]{ column-count:3 }
.mmuph-gallery[data-columns="4"]{ column-count:4 }
@media (max-width:1024px){ .mmuph-gallery{ column-count:2 } }
@media (max-width:640px){  .mmuph-gallery{ column-count:1 } }

.mmuph-item{
  break-inside:avoid; margin:0 0 16px 0;
  background:#fff; border:1px solid #eee; border-radius:12px; overflow:hidden
}
.mmuph-item img{ display:block; width:100%; height:auto }

/* کپشن تصویر در گالری: وسط‌چین، بدون ایتالیک، سایز 16، فاصله عمودی 14 */
.mmuph-item figcaption{
  padding:14px 0;
  font-size:16px;
  font-weight:400;
  font-style:normal;
  text-align:center;
  color:#333;
}

.mmuph-empty{ padding:12px; color:#666 }
