/* Easy WhatsApp Chat Button - Frontend Styles */
.ewc-whatsapp-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 9999px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
  z-index: 99999;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

.ewc-whatsapp-button:hover,
.ewc-whatsapp-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,.18);
  outline: none;
}

.ewc-whatsapp-label {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 782px) {
  .ewc-whatsapp-button {
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
  }
  .ewc-whatsapp-label {
    font-size: 13px;
  }
}
