.wpp_badge {
  position: fixed;
  bottom: 28px;
  right: 32px;
  z-index: 999;
  width: 166px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(93deg, rgba(0, 191, 61, 0.8) 0%, rgba(0, 140, 48, 0.8) 100%);
  box-shadow:
    0 8px 12px 0 rgba(29, 171, 97, 0.25),
    0 82px 235px 0 rgba(0, 48, 121, 0.21);
  backdrop-filter: blur(35px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
  animation: none;
}

.wpp_badge img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.wpp_badge_visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: wppPulse 2s ease-in-out infinite;
}

.wpp_badge:hover {
  transform: scale(1.05) !important;
  opacity: 1 !important;
  animation: none;
}

.wpp_badge:active {
  transform: scale(0.98) !important;
}

@keyframes wppPulse {
  0%, 100% {
    box-shadow:
      0 8px 12px 0 rgba(29, 171, 97, 0.25),
      0 0 0 0 rgba(0, 191, 61, 0.4);
  }
  50% {
    box-shadow:
      0 8px 12px 0 rgba(29, 171, 97, 0.25),
      0 0 0 12px rgba(0, 191, 61, 0);
  }
}

@media (max-width: 768px) {
  .wpp_badge {
    right: 16px;
    bottom: 20px;
  }
}
