
/* SydneySTR AI customer service widget */
.str-chat-launcher {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  border: 0;
  border-radius: 999px;
  min-height: 52px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c9a96e;
  color: #080910;
  font: 800 0.95rem/1 Inter, Arial, sans-serif;
  box-shadow: 0 16px 40px rgba(0,0,0,.34);
  cursor: pointer;
}
.str-chat-launcher svg { width: 20px; height: 20px; }
.str-chat {
  position: fixed;
  right: 18px;
  bottom: 84px;
  z-index: 9999;
  width: min(390px, calc(100vw - 28px));
  max-height: min(680px, calc(100vh - 108px));
  display: none;
  flex-direction: column;
  overflow: hidden;
  background: #0b0c14;
  color: #f4f2ed;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.48);
  font-family: Inter, Arial, sans-serif;
}
.str-chat.str-chat--open { display: flex; }
.str-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
  background: #11131f;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.str-chat__title { font-weight: 800; font-size: .98rem; }
.str-chat__subtitle { color: #a6abc0; font-size: .78rem; margin-top: 2px; }
.str-chat__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent;
  color: #f4f2ed;
  cursor: pointer;
  font-size: 1.2rem;
}
.str-chat__body {
  padding: 14px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.str-chat__msg {
  max-width: 88%;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .9rem;
  line-height: 1.5;
}
.str-chat__msg--bot { align-self: flex-start; background: #1a1c2b; color: #f4f2ed; }
.str-chat__msg--user { align-self: flex-end; background: #c9a96e; color: #080910; font-weight: 700; }
.str-chat__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.str-chat__chip {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(201,169,110,.35);
  background: rgba(201,169,110,.08);
  color: #e8c98a;
  padding: 8px 11px;
  font: 700 .82rem/1.2 Inter, Arial, sans-serif;
  cursor: pointer;
}
.str-chat__inputrow {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.09);
  background: #0f111c;
}
.str-chat__input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: #07080f;
  color: #f4f2ed;
  padding: 0 12px;
  font: 400 .92rem Inter, Arial, sans-serif;
}
.str-chat__send {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  padding: 0 14px;
  background: #c9a96e;
  color: #080910;
  font: 800 .9rem Inter, Arial, sans-serif;
  cursor: pointer;
}
.str-chat__form {
  display: grid;
  gap: 8px;
  margin-top: 4px;
}
.str-chat__form input,
.str-chat__form textarea,
.str-chat__form select {
  width: 100%;
  min-height: 42px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,.14);
  background: #07080f;
  color: #f4f2ed;
  padding: 9px 10px;
  font: 400 .88rem Inter, Arial, sans-serif;
}
.str-chat__form textarea { min-height: 74px; resize: vertical; }
.str-chat__form button {
  min-height: 44px;
  border: 0;
  border-radius: 10px;
  background: #c9a96e;
  color: #080910;
  font: 800 .9rem Inter, Arial, sans-serif;
  cursor: pointer;
}
.str-chat__note { color: #a6abc0; font-size: .76rem; line-height: 1.45; }
@media (max-width: 520px) {
  .str-chat-launcher { right: 14px; bottom: 14px; min-height: 50px; }
  .str-chat { right: 10px; left: 10px; bottom: 76px; width: auto; max-height: calc(100vh - 92px); }
  .str-chat__msg { max-width: 94%; }
}
