/* Floating WhatsApp button - bottom left, clear of the theme back-to-top at bottom right */
.mawella-wa{
  position:fixed;
  z-index:99990;
  bottom:calc(1.5rem + env(safe-area-inset-bottom,0px));
  left:calc(1.5rem + env(safe-area-inset-left,0px));
  display:inline-flex;align-items:center;gap:0;
  height:56px;min-width:56px;padding:0;
  border-radius:999px;
  background:#25D366;color:#FFFFFF;
  box-shadow:0 6px 20px rgba(0,0,0,.28);
  text-decoration:none;overflow:hidden;
  transition:width .28s ease,background-color .2s ease,box-shadow .2s ease,transform .2s ease;
}
.mawella-wa:hover,.mawella-wa:focus-visible{background:#1EBE5B;color:#FFFFFF;box-shadow:0 10px 26px rgba(0,0,0,.34);transform:translateY(-2px);}
.mawella-wa:focus-visible{outline:3px solid #FFFFFF;outline-offset:3px;}
.mawella-wa__icon{width:28px;height:28px;flex:0 0 28px;margin:0 14px;display:block;}
.mawella-wa__label{
  font-family:Sora,system-ui,sans-serif;font-size:13px;font-weight:700;letter-spacing:.04em;
  white-space:nowrap;padding-right:0;max-width:0;opacity:0;
  transition:max-width .28s ease,opacity .2s ease,padding-right .28s ease;
}
.mawella-wa:hover .mawella-wa__label,.mawella-wa:focus-visible .mawella-wa__label{max-width:12rem;opacity:1;padding-right:20px;}
@media (max-width:640px){
  .mawella-wa{height:52px;min-width:52px;bottom:calc(1rem + env(safe-area-inset-bottom,0px));left:calc(1rem + env(safe-area-inset-left,0px));}
  .mawella-wa__icon{width:26px;height:26px;flex:0 0 26px;margin:0 13px;}
  .mawella-wa__label{display:none;}
}
@media (prefers-reduced-motion:reduce){
  .mawella-wa,.mawella-wa__label{transition:none;}
  .mawella-wa:hover,.mawella-wa:focus-visible{transform:none;}
}
@media print{.mawella-wa{display:none;}}