/* GG WhatsApp Floating Button (theme-proof + Asylum hooks) */
.ggwa-wrapper{
  position: fixed;
  bottom: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: auto;
  font-family: inherit;
}
.ggwa-wrapper.ggwa-left{ left: 20px; align-items: flex-start; }
.ggwa-wrapper.ggwa-right{ right: 20px; align-items: flex-end; }

.ggwa-main{
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #25D366;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.ggwa-main-icon{display:flex;align-items:center;justify-content:center;line-height:0;}
.ggwa-main-icon svg{display:block;}

.ggwa-main:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}
.ggwa-main:active{ transform: translateY(0); }

.ggwa-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.ggwa-open .ggwa-list{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ggwa-contact{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
}
.ggwa-contact-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ggwa-color, #25D366);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
  transition: transform .15s ease;
}
.ggwa-contact:hover .ggwa-contact-icon{
  transform: translateY(-1px);
}
.ggwa-contact-label{
  max-width: 240px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
.ggwa-wrapper.ggwa-left .ggwa-contact{
  flex-direction: row-reverse;
}
.ggwa-wrapper.ggwa-left .ggwa-contact-label{
  text-align: left;
}

@media (max-width: 480px){
  .ggwa-contact-label{
    display:none; /* mobile: only circles */
  }
}
