/* Arshbal Floating WhatsApp Button - Safe standalone CSS */
:root{
  --arshbal-wa-green:#25D366;
  --arshbal-wa-dark:#075E54;
}

.arshbal-wa-float{
  position: fixed;
  right: 22px;
  bottom: 96px; /* above Need Help assistant bubble */
  z-index: 999998;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 12px;
  border-radius: 999px;
  background: var(--arshbal-wa-green);
  color: #fff !important;
  text-decoration: none !important;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transform: translateZ(0);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.arshbal-wa-float:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,0,0,.28);
  filter: brightness(1.02);
}
.arshbal-wa-float:focus{
  outline: 3px solid rgba(37,211,102,.35);
  outline-offset: 3px;
}
.arshbal-wa-icon-wrap{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.18);
  flex: 0 0 auto;
}
.arshbal-wa-icon{
  width: 22px;
  height: 22px;
  display: block;
}
.arshbal-wa-text{
  line-height: 1.05;
  white-space: nowrap;
}
.arshbal-wa-text small{
  display:block;
  font-size: 10px;
  font-weight: 600;
  opacity:.92;
  letter-spacing:.1px;
  margin-top:2px;
}
.arshbal-wa-pulse{
  position:absolute;
  inset:-6px;
  border-radius:999px;
  border:2px solid rgba(37,211,102,.35);
  animation: arshbalWaPulse 1.8s infinite;
  pointer-events:none;
}
@keyframes arshbalWaPulse{
  0%{transform:scale(.94); opacity:.8;}
  70%{transform:scale(1.12); opacity:0;}
  100%{transform:scale(1.12); opacity:0;}
}
@media (max-width: 640px){
  .arshbal-wa-float{
    right: 18px;
    bottom: 90px;
    padding: 10px;
    width: 56px;
    height: 56px;
    justify-content:center;
  }
  .arshbal-wa-icon-wrap{
    width: 38px;
    height: 38px;
  }
  .arshbal-wa-icon{
    width: 25px;
    height: 25px;
  }
  .arshbal-wa-text{display:none;}
}
