.chat-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: inherit;
}

.chat-widget-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #e36172ff;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.chat-widget-toggle svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.chat-widget-panel {
  position: absolute;
  bottom: 68px;
  left: 0;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.chat-widget.is-open .chat-widget-panel {
  display: flex;
}

.chat-widget-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 24px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

.chat-widget-link.whatsapp {
  background-color: #25d366;
}

.chat-widget-link.sms {
  background-color: #e36172ff;
}

@media (max-width: 480px) {
  .chat-widget {
    bottom: 16px;
    left: 16px;
  }
}
