.wa-floating-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.wa-floating-widget:hover {
  background-color: #128C7E;
  transform: translateY(-4px);
  color: white;
}

.wa-floating-widget svg {
  width: 30px;
  height: 30px;
  margin: 0;
}

@media (max-width: 768px) {
  .wa-floating-widget {
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 360px) {
  .wa-floating-widget {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }

  .wa-floating-widget svg {
    width: 26px;
    height: 26px;
  }
}
