.sbh-wa-sticky-cta{
  position: fixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: var(--sbh-wa-cta-z, 9999);
  background: var(--sbh-wa-cta-bg, #25D366);
  color: var(--sbh-wa-cta-text, #fff);
  text-decoration: none;
  border-radius: var(--sbh-wa-cta-radius, 999px);
  font-size: var(--sbh-wa-cta-font, 15px);
  padding: var(--sbh-wa-cta-pad-y, 12px) var(--sbh-wa-cta-pad-x, 18px);
  box-shadow: var(--sbh-wa-cta-shadow, 0 10px 24px rgba(0,0,0,.25));
  line-height: 1.2;
  max-width: calc(100vw - 32px);
  transition: transform .15s ease, background-color .15s ease, filter .15s ease;
  animation: var(--sbh-wa-cta-pulse, none);
  will-change: transform;
}

.sbh-wa-sticky-cta:hover,
.sbh-wa-sticky-cta:focus{
  background: var(--sbh-wa-cta-hover-bg, #1EBE5B);
  transform: translateY(-1px);
  outline: none;
  filter: brightness(0.98);
}

.sbh-wa-sticky-cta:active{
  transform: translateY(0px) scale(.99);
}

.sbh-wa-sticky-cta__icon{
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.sbh-wa-sticky-cta__icon svg{
  width: 18px;
  height: 18px;
  display: block;
}

.sbh-wa-sticky-cta__label{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 88vw;
  font-weight: 800;
  letter-spacing: .2px;
}

@media (max-width: 768px){
  .sbh-wa-sticky-cta{
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
  .sbh-wa-sticky-cta:hover,
  .sbh-wa-sticky-cta:focus{
    transform: translateX(-50%) translateY(-1px);
  }
  .sbh-wa-sticky-cta:active{
    transform: translateX(-50%) scale(.99);
  }
}

@media (max-width: 420px){
  .sbh-wa-sticky-cta{
    font-size: 14px;
    padding: 11px 14px;
    gap: 8px;
  }
  .sbh-wa-sticky-cta__label{
    max-width: 82vw;
  }
}

@keyframes sbhWaPulse {
  0%   { transform: translateY(0) scale(1); }
  35%  { transform: translateY(-2px) scale(1.04); }
  70%  { transform: translateY(0) scale(1); }
  100% { transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce){
  .sbh-wa-sticky-cta{ animation: none !important; transition: none !important; }
}
