/* Shared Floating Button Styling (WhatsApp + Call) */
#wcb-chat-button,
#wcb-call-button {
  position: fixed !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 50% !important;
  z-index: 999999999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15) !important;
  transition: transform 0.1s ease !important;
  pointer-events: auto !important;
}

#wcb-chat-button:hover,
#wcb-call-button:hover {
  transform: scale(1.05) !important;
}

/* WhatsApp button — bottom position */
#wcb-chat-button {
  bottom: 20px !important;
  background: #25d366 !important;
}

/* Call button — sits just above the WhatsApp button */
#wcb-call-button {
  bottom: 85px !important;
  background: #1e88e5 !important;
}

/* Horizontal placement (same side for both) */
#wcb-chat-button.left,
#wcb-call-button.left {
  left: 20px !important;
}

#wcb-chat-button.right,
#wcb-call-button.right {
  right: 20px !important;
}

/* Button Icons */
#wcb-chat-button img {
  width: 39px !important;
  height: 39px !important;
  pointer-events: none !important;
}

#wcb-call-button img {
  width: 26px !important;
  height: 26px !important;
  pointer-events: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #wcb-chat-button,
  #wcb-call-button {
    width: 45px !important;
    height: 45px !important;
  }

  #wcb-chat-button {
    bottom: 15px !important;
  }

  #wcb-call-button {
    bottom: 72px !important;
  }

  #wcb-chat-button img {
    width: 34px !important;
    height: 34px !important;
  }

  #wcb-call-button img {
    width: 23px !important;
    height: 23px !important;
  }
}

@media (max-width: 480px) {
  #wcb-chat-button.left,
  #wcb-call-button.left {
    left: 15px !important;
  }

  #wcb-chat-button.right,
  #wcb-call-button.right {
    right: 15px !important;
  }
}
