.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white ;
  border-radius: 50%;
  font-size: 32px;
  border: none;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  z-index: 9999;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.wa-float:hover {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
  color: #075e54;
    background-color:  rgba(255, 255, 255, 0.8);

}

.wa-chat {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  background: #ece5dd;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
}

.wa-header {
  background: #075e54;
  color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wa-header img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.wa-header span {
  font-size: 12px;
  opacity: 0.8;
}

.wa-header button {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.wa-body {
  padding: 10px;
  background: #efeae2;
}

.wa-msg {
  background: white;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 10px;
}

.wa-body textarea {
  width: 100%;
  min-height: 60px;
  border-radius: 8px;
  border: none;
  padding: 8px;
  resize: none;
  font-size: 14px;
}

.wa-send {
  background: #25d366;
  color: white;
  text-align: center;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
