#we-floating-button {
  position: fixed;
  right: 0;
  transform: translateX(-2rem);
  bottom: 1.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
  z-index: 9999;
}

a.we-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

#we-floating-button .we-button-label {
  display: block;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
  white-space: nowrap;
}

#we-floating-button img {
  display: block;
  width: 1.8rem;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 768px) {
  #we-floating-button {
    transform: translateX(-1rem) rotateY(5deg);
  }
  #we-floating-button .we-button-label {
    display: none;
  }
}
