/* MFC - ultra light (emoji + WhatsApp green) */

.melorin-floating-contact-btn{
  position:fixed !important;
  width:var(--mfc-size) !important;
  height:var(--mfc-size) !important;
  border-radius:50% !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  /* سبز واتساپی (بدون وابستگی به تنظیمات) */
  background:#25D366 !important;

  box-shadow:0 4px 12px rgba(0,0,0,.22) !important;
  cursor:pointer !important;
  z-index:var(--mfc-z) !important;

  /* سبک: فقط transform + background */
  transition:transform .15s ease, background-color .15s ease !important;

  /* وودمارت */
  top:auto !important; bottom:auto !important; left:auto !important; right:auto !important;
  text-decoration:none !important;
}

/* ایموجی */
.melorin-floating-contact-btn::before{
  content:"💬";
  font-size:calc(var(--mfc-size) * .52);
  line-height:1;
}

/* پوزیشن‌ها */
.melorin-floating-contact-btn[data-vpos="bottom"]{ bottom:var(--mfc-voff) !important; }
.melorin-floating-contact-btn[data-vpos="top"]{ top:var(--mfc-voff) !important; }
.melorin-floating-contact-btn[data-hpos="right"]{ right:var(--mfc-hoff) !important; }
.melorin-floating-contact-btn[data-hpos="left"]{ left:var(--mfc-hoff) !important; }

/* هاور واتساپی سبک (بدون filter) */
.melorin-floating-contact-btn:hover{
  background:#128C7E !important;
  transform:scale(1.06) !important;
}

/* موبایل */
@media(max-width:768px){
  .melorin-floating-contact-btn{
    width:calc(var(--mfc-size) - 8px) !important;
    height:calc(var(--mfc-size) - 8px) !important;
  }
  .melorin-floating-contact-btn::before{
    font-size:calc((var(--mfc-size) - 8px) * .55);
  }
}