.awlt-floating-button {
  position: fixed;
  z-index: 99999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--awlt-bg, #25D366);
  color: var(--awlt-color, #fff);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  padding: 14px 18px;
  min-height: 54px;
  cursor: pointer;
  direction: rtl;
  text-decoration: none;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, opacity .2s ease;
}
.awlt-floating-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
  background: #20bd5a;
}
.awlt-floating-button:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.28);
  outline-offset: 3px;
}
.awlt-floating-button .awlt-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}
.awlt-floating-button .awlt-label {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .awlt-floating-button {
    padding: 12px 16px;
    min-height: 50px;
    max-width: calc(100vw - 32px);
    font-size: 15px;
  }
  .awlt-floating-button .awlt-label {
    font-size: 14px;
  }
}
