#whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px !important;
  right: unset !important;
  z-index: 9999;
}


#whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}

#whatsapp-button:hover {
  transform: scale(1.1);
}

#whatsapp-button i {
  font-size: 32px;
}

#whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 80px;
  right: auto;
  left: calc(100% + 10px);
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

#whatsapp-popup.active {
  display: block;
}

.wp-header {
  background: #25D366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wp-header i {
  font-size: 20px;
  margin-right: 5px;
}

.wp-body {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

.wp-footer {
  background: #f5f5f5;
  padding: 10px;
  text-align: center;
}

.wp-footer a {
  color: #fff;
  background-color: #25D366;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}