/* Minimal, modern, professional widget — no external deps */

.vrtually-concierge { position: fixed; right: 18px; bottom: 18px; z-index: 9999; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }

.vrtually-concierge .vc-launch {
  display: inline-flex; align-items: center; gap: 10px;
  border: 0; cursor: pointer;
  padding: 12px 14px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.vrtually-concierge .vc-dot { width: 10px; height: 10px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.16); }
.vrtually-concierge .vc-launch-text { font-size: 13px; font-weight: 700; letter-spacing: .2px; }

.vrtually-concierge .vc-panel {
  position: absolute; right: 0; bottom: 56px;
  width: 340px; max-width: calc(100vw - 36px);
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(17,24,39,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.20);
  overflow: hidden;
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: all .18s ease;
}

.vrtually-concierge .vc-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.vrtually-concierge .vc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 12px;
  background: #f9fafb;
  border-bottom: 1px solid rgba(17,24,39,.08);
}

.vrtually-concierge .vc-title { font-size: 13px; font-weight: 800; color: #111827; }
.vrtually-concierge .vc-close { border: 0; background: transparent; cursor: pointer; font-size: 22px; line-height: 1; color: #6b7280; padding: 4px 8px; }

.vrtually-concierge .vc-messages {
  height: 290px;
  overflow-y: auto;
  padding: 12px;
  background: #fff;
}

.vrtually-concierge .vc-msg { display: flex; margin: 8px 0; }
.vrtually-concierge .vc-msg .vc-bubble {
  max-width: 82%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.35;
  border: 1px solid rgba(17,24,39,.08);
}

.vrtually-concierge .vc-user { justify-content: flex-end; }
.vrtually-concierge .vc-user .vc-bubble { background: #111827; color: #fff; border-color: rgba(17,24,39,.12); }

.vrtually-concierge .vc-assistant { justify-content: flex-start; }
.vrtually-concierge .vc-assistant .vc-bubble { background: #f9fafb; color: #111827; }

.vrtually-concierge .vc-compose {
  display: flex; gap: 8px; padding: 10px;
  background: #fff;
  border-top: 1px solid rgba(17,24,39,.08);
}

.vrtually-concierge .vc-input {
  flex: 1;
  border: 1px solid rgba(17,24,39,.14);
  border-radius: 12px;
  padding: 10px 10px;
  font-size: 13px;
  outline: none;
}

.vrtually-concierge .vc-input:focus { border-color: rgba(17,24,39,.35); }

.vrtually-concierge .vc-send {
  border: 0;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.vrtually-concierge.is-busy .vc-send { opacity: .7; cursor: default; }
.vrtually-concierge .vc-footnote { padding: 0 12px 12px 12px; font-size: 11px; color: #6b7280; background: #fff; }

@media (max-width: 420px){
  .vrtually-concierge { right: 12px; bottom: 12px; }
  .vrtually-concierge .vc-panel { width: 320px; bottom: 54px; }
}
