body {
  font-family: 'Inter', sans-serif;
}

#assistant-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

#assistant-toggle {
  background-color: #00aaff;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

#assistant-chat {
  position: absolute;
  bottom: 90px;
  right: 0;
  background: white;
  padding: 16px 24px;
  border-radius: 10px;
  width: 260px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

#assistant-chat a.wa-link {
  text-decoration: none;
  color: #00aaff;
  font-weight: 600;
  display: block;
  text-align: left;
}

.hidden {
  display: none;
}

@media (max-width: 1080px) and (orientation: portrait) {
  #assistant-widget {
    bottom: 3%;
    right: 5%;
  }

  #assistant-toggle {
    margin: 10px;
    padding: 16px;
    font-size: 3rem;
  }

  #assistant-chat {
    bottom: 100%;
    max-width: 90vw;
    padding: 20px 28px;
    font-size: 20px;
  }
}

@media (max-width: 1080px) and (orientation: landscape) {
  #assistant-widget {
    right: 20px;
    bottom: 20px;
  }

  #assistant-chat {
    bottom: 90px;
    width: 80vw;
    max-width: 300px;
    font-size: 18px;
  }

  #assistant-toggle {
    padding: 16px;
    font-size: 24px;
  }
}