#wpb-whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

#wpb-whatsapp-button a {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

#wpb-whatsapp-button svg { 
  width: 24px;
  height: 24px;
}

#wpb-whatsapp-button .wpb-label {
  display: none;
  margin-left: 8px;
  font-weight: 600;
}

@media (max-width: 480px) {
  #wpb-whatsapp-button { right: 14px; bottom: 14px; width: 50px; height: 50px; }
}

/* On desktop, show a pill with text */
@media (min-width: 769px) {
  #wpb-whatsapp-button {
    height: auto;
    width: auto;
    border-radius: 28px;
    padding: 10px 14px;
  }
  #wpb-whatsapp-button a {
    height: auto;
    width: auto;
    gap: 8px;
  }
  #wpb-whatsapp-button .wpb-label { display: inline; }
}

/* Mobile bottom CTA bar */
.wpb-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  gap: 8px;
  padding: 10px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.1);
  z-index: 99998;
}

.wpb-cta-btn {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

.wpb-cta-wa { background: #25D366; }
.wpb-cta-call { background: #0b6ef9; }

@media (max-width: 768px) {
  .wpb-mobile-cta { display: flex; }
}
