.float-wa,
.float-top {
  position: fixed !important;
  right: 24px !important;
  z-index: 9998 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  box-sizing: border-box !important;
}

.float-wa {
  bottom: 24px !important;
  width: 56px !important;
  height: 56px !important;
  color: #fff !important;
  background: #25d366 !important;
  text-decoration: none !important;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .48) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.float-wa > svg,
.float-wa > i {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  font-size: 28px;
  fill: currentColor;
}

.float-wa:hover {
  color: #fff !important;
  transform: translateY(-3px) scale(1.08) !important;
  box-shadow: 0 8px 34px rgba(37, 211, 102, .62) !important;
}

.float-wa-pulse {
  position: absolute !important;
  inset: 0 !important;
  border: 2px solid #25d366 !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  animation: sharedWaPulse 2.2s ease-out infinite !important;
}

@keyframes sharedWaPulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

.float-top {
  bottom: 112px !important;
  width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  color: #f5a623 !important;
  background: #0d1422 !important;
  border: 1px solid rgba(245, 166, 35, .45) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .42), 0 0 18px rgba(245, 166, 35, .1) !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transform: translateY(14px) scale(.88) !important;
  pointer-events: none !important;
  transition: opacity .25s ease, transform .25s ease, background .25s ease !important;
}

.float-top svg {
  width: 18px !important;
  height: 18px !important;
}

.float-top.visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
}

.float-top:hover {
  color: #07100b !important;
  background: #f5a623 !important;
  transform: translateY(-3px) scale(1.06) !important;
}

@media (max-width: 480px) {
  .float-wa {
    right: 16px !important;
    bottom: 18px !important;
    width: 50px !important;
    height: 50px !important;
  }

  .float-wa > svg,
  .float-wa > i {
    width: 24px;
    height: 24px;
    font-size: 24px;
  }

  .float-top {
    right: 18px !important;
    bottom: 100px !important;
    width: 42px !important;
    height: 42px !important;
  }
}
