/* Task 246 - one contact button on mobile instead of two competing FABs.
   The buttons themselves are still WPCode 5632's; this only regroups them. */
.pv-fab{position:fixed;right:16px;bottom:16px;z-index:999999;display:flex;flex-direction:column;align-items:flex-end;gap:10px}
.pv-fab .float-btn{position:static!important;right:auto!important;bottom:auto!important;left:auto!important;top:auto!important;margin:0!important}
.pv-fab__toggle{width:55px;height:55px;border-radius:50%;border:0;background:var(--pv-brand,#981945);color:#fff;display:none;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 10px rgba(0,0,0,.2);padding:0;transition:transform .16s ease}
.pv-fab__toggle svg{width:26px;height:26px;display:block}
@media (max-width:767px){
  .pv-fab__toggle{display:flex}
  .pv-fab .float-btn{opacity:0;transform:scale(.7);pointer-events:none;transition:opacity .16s ease,transform .16s ease}
  .pv-fab.is-open .float-btn{opacity:1;transform:scale(1);pointer-events:auto}
  .pv-fab.is-open .pv-fab__toggle{transform:rotate(45deg)}
  body.single-product .pv-fab{bottom:84px}
}