.wiw-wa-floating {
  position: fixed;
  z-index: 99998;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
}

.wiw-wa-right {
  right: 24px;
}

.wiw-wa-left {
  left: 24px;
}

.wiw-wa-button,
.wiw-wa-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  background: #128c7e;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(18, 140, 126, .28);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.wiw-wa-button {
  min-height: 54px;
  padding: 0 18px 0 16px;
  font-size: 15px;
  font-weight: 700;
}

.wiw-wa-button::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(18, 140, 126, .24);
  animation: wiw-wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

.wiw-wa-button:hover,
.wiw-wa-product-button:hover {
  background: #0f7c70;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(18, 140, 126, .34);
}

.wiw-wa-button:focus-visible,
.wiw-wa-product-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, .36);
  outline-offset: 3px;
}

.wiw-wa-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.wiw-wa-tooltip {
  padding: 9px 12px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.wiw-wa-left .wiw-wa-tooltip {
  order: 2;
}

.wiw-wa-product-button {
  margin-top: 12px;
  min-height: 46px;
  padding: 0 18px;
  font-weight: 700;
  font-size: 14px;
}

.wiw-wa-product-button .wiw-wa-icon {
  width: 22px;
  height: 22px;
}

@keyframes wiw-wa-pulse {
  0% {
    opacity: .65;
    transform: scale(.96);
  }
  70% {
    opacity: 0;
    transform: scale(1.16);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 768px) {
  .wiw-wa-floating {
    bottom: calc(82px + env(safe-area-inset-bottom));
    right: 16px;
    left: auto;
  }

  .wiw-wa-button {
    width: 56px;
    min-height: 56px;
    padding: 0;
    border-radius: 50%;
  }

  .wiw-wa-label,
  .wiw-wa-tooltip {
    display: none;
  }

  .wiw-wa-icon {
    width: 29px;
    height: 29px;
  }
}
