/* ===== CONTAINER ===== */
#wp-wa {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 99999 !important;

  display: none;
  align-items: center;
  gap: 8px;

  text-decoration: none !important;
  font-family: Arial, sans-serif;
  line-height: normal;
}

/* ===== TEXT ===== */
#wp-wa-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #111827;

  border-radius: 999px;
  padding: 10px 14px;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;

  box-shadow:
    0 6px 18px rgba(0,0,0,0.08),
    0 0 0 3px rgba(37,211,102,0.12);
}

/* ===== ICON ===== */
#wp-wa-icon {
  width: 60px;
  height: 60px;

  min-width: 60px;
  min-height: 60px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: #ffffff;

  border-radius: 50%;
  overflow: hidden;

  box-shadow: 0 10px 24px rgba(37,211,102,0.35);
}

/* ===== SVG ===== */
#wp-wa-svg {
  width: 40px;
  height: 40px;

  display: block;

  color: #ffffff;
  fill: currentColor;
}

/* ===== HOVER ===== */
#wp-wa:hover #wp-wa-icon {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(37,211,102,0.45);
}

#wp-wa:hover #wp-wa-text {
  background: #f9fffb;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  #wp-wa {
    right: 14px !important;
    bottom: 14px !important;
    gap: 7px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  #wp-wa {
    right: 12px !important;
    bottom: 12px !important;
    gap: 6px;
  }

  #wp-wa-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  #wp-wa-svg {
    width: 36px;
    height: 36px;
  }

  #wp-wa-text {
    font-size: 12px;
    padding: 8px 12px;
  }
}