/* Weboment WhatsApp Button — frontend styles */

.wwb-button {
  position: fixed;
  bottom: 20px;
  z-index: 999998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wwb-button:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.wwb-pos-bottom-right {
  right: 20px;
}

.wwb-pos-bottom-left {
  left: 20px;
}

@media (max-width: 480px) {
  .wwb-button {
    width: 52px;
    height: 52px;
    bottom: 16px;
  }

  .wwb-pos-bottom-right {
    right: 16px;
  }

  .wwb-pos-bottom-left {
    left: 16px;
  }
}
