.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,
    bottom 0.3s ease;
  animation: none;
}

.wpp_badge img {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px;
  min-height: 40px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.wpp_badge > span {
  letter-spacing: 0.32px;
  max-width: 86px;
}

.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);
  }
}

/* ── WhatsApp Popup ── */
.wpp_popup {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: max-content;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 10;
  white-space: nowrap;
}

.wpp_badge_open .wpp_popup {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wpp_popup_title {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 2px 8px 6px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 2px;
}

.wpp_popup_option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.wpp_popup_option:hover {
  background: #f5fdf7;
}

.wpp_popup_option img {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
}

.wpp_popup_option span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.wpp_popup_option small {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

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