
/* =========================================================
   MLA — PERMANENT VIEWPORT FLOATING ACTIONS
   These buttons are fixed to the browser viewport, not page flow.
   ========================================================= */
.mla-floating-actions{
  position:fixed !important;
  right:24px !important;
  bottom:24px !important;
  left:auto !important;
  top:auto !important;
  z-index:2147483647 !important;
  width:auto !important;
  height:auto !important;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap:12px !important;
  margin:0 !important;
  padding:0 !important;
  transform:none !important;
  pointer-events:none !important;
}

.mla-floating-actions .mla-fab{
  position:relative !important;
  inset:auto !important;
  float:none !important;
  flex:0 0 auto !important;
  width:70px !important;
  height:70px !important;
  min-width:70px !important;
  max-width:70px !important;
  min-height:70px !important;
  max-height:70px !important;
  padding:0 !important;
  margin:0 !important;
  border-radius:50% !important;
  box-sizing:border-box !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  pointer-events:auto !important;
  cursor:pointer !important;
  text-decoration:none !important;
  overflow:visible !important;
  opacity:1 !important;
  visibility:visible !important;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease !important;
  box-shadow:0 8px 25px rgba(0,0,0,.45) !important;
}

.mla-floating-actions .mla-fab:hover{
  transform:scale(1.07) !important;
  filter:brightness(1.08) !important;
}

.mla-floating-actions .mla-fab-whatsapp{
  background:#19b83b !important;
  color:#fff !important;
  border:2px solid rgba(255,255,255,.18) !important;
}

.mla-floating-actions .mla-fab-inquiry{
  background:#d52222 !important;
  color:#fff !important;
  border:2px solid rgba(255,255,255,.18) !important;
}

.mla-floating-actions .mla-fab-top{
  background:#c9a34f !important;
  color:#111 !important;
  border:2px solid rgba(255,255,255,.2) !important;
}

.mla-floating-actions .mla-fab svg{
  display:block !important;
  width:42px !important;
  height:42px !important;
  margin:0 !important;
  padding:0 !important;
  flex:none !important;
}

.mla-floating-actions .mla-fab-label{
  position:absolute !important;
  right:82px !important;
  top:50% !important;
  transform:translateY(-50%) translateX(8px) !important;
  white-space:nowrap !important;
  background:#080808 !important;
  color:#fff !important;
  border:1px solid rgba(255,255,255,.16) !important;
  border-radius:4px !important;
  padding:9px 11px !important;
  font:700 10px/1 Arial,sans-serif !important;
  letter-spacing:.12em !important;
  opacity:0 !important;
  visibility:hidden !important;
  pointer-events:none !important;
  transition:.18s ease !important;
}

.mla-floating-actions .mla-fab:hover .mla-fab-label{
  opacity:1 !important;
  visibility:visible !important;
  transform:translateY(-50%) translateX(0) !important;
}

@media(max-width:600px){
  .mla-floating-actions{
    right:14px !important;
    bottom:14px !important;
    gap:9px !important;
  }
  .mla-floating-actions .mla-fab{
    width:58px !important;
    height:58px !important;
    min-width:58px !important;
    max-width:58px !important;
    min-height:58px !important;
    max-height:58px !important;
  }
  .mla-floating-actions .mla-fab svg{
    width:34px !important;
    height:34px !important;
  }
  .mla-floating-actions .mla-fab-label{
    display:none !important;
  }
}
