/* Floating Logo */
#wa-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
}
#wa-button img { width: 35px; }

/* Hidden Popup */
#wa-popup {
  display: none;
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  z-index: 1001;
  overflow: hidden;
}

.wa-header { background: #075e54; color: white; padding: 15px; display: flex; justify-content: space-between; }
.wa-body { padding: 20px; text-align: center; }
.wa-send-btn { 
  display: inline-block; 
  margin-top: 10px; 
  padding: 10px 20px; 
  background: #25d366; 
  color: white; 
  text-decoration: none; 
  border-radius: 20px; 
}
