.floating-chat-options {
  position: fixed;
  bottom: 65px;
  right: 27px;
  width: clamp(332px, calc(308.4px + 7.375vw), 450px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s ease;

  &.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
}

#chat-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: rgb(255, 190, 60);
  border: none;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;

  svg {
    height: 2rem;
    width: 2rem;
    fill: #000;
  }
}

#chat-btn:hover {
  background: #ffbe3c;
}

.channel-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chat-connect-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));

  &#voice-call-btn {
    background: unset !important;
  }

  &#voice-call-btn,
  &#telegram-btn {
    padding: 0;
    border: 0;
  }

  &#whatsapp-btn {
    background: #25d366;
  }

  &#web-chat-btn {
    background: orange;
    outline: 1px solid #000;
    img {
      height: auto;
      width: 21px;
    }
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.chat-connect-btn:hover {
  transform: scale(1.12);
}

a.connect-link {
  color: #007171 !important;
  transition: all 0.5s ease;

  &:hover {
    color: #000 !important;
    text-decoration: underline !important;
  }
}
