/* AETHER site AI sales assistant widget */
.aether-site-chat-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(180deg, #8fe3ff, #3fc6ff 62%, #0b7fbf);
  color: #0a0b0d;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px -10px rgba(63, 198, 255, .35), 0 4px 12px rgba(0, 0, 0, .4);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
}
.aether-site-chat-fab:hover { transform: translateY(-3px) scale(1.04); }
.aether-site-chat-fab svg { width: 27px; height: 27px; }

.aether-site-chat-win {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 999;
  width: min(360px, calc(100vw - 40px));
  max-height: min(520px, calc(100vh - 140px));
  display: none;
  flex-direction: column;
  background: #101114;
  border: 1px solid #24262b;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 90px -30px #000, 0 0 70px -30px rgba(63, 198, 255, .28);
  font-family: "Manrope", system-ui, sans-serif;
}
.aether-site-chat-win.acik { display: flex; }

.aether-site-chat-head {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  border-bottom: 1px solid #24262b;
  background: #0a0b0d;
}
.aether-site-chat-head .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(180deg, #8fe3ff, #3fc6ff);
  display: grid;
  place-items: center;
  color: #0a0b0d;
  flex: none;
}
.aether-site-chat-head .av svg { width: 19px; height: 19px; }
.aether-site-chat-head b {
  font-family: "Bricolage Grotesque", Georgia, serif;
  font-weight: 500;
  font-size: 1rem;
  color: #f2f3f5;
  display: block;
  line-height: 1.15;
}
.aether-site-chat-head .st {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5c5f68;
}
.aether-site-chat-head .x {
  margin-left: auto;
  background: none;
  border: 1px solid #2f323a;
  color: #94979f;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-size: 1rem;
  transition: color .3s, border-color .3s;
}
.aether-site-chat-head .x:hover { color: #3fc6ff; border-color: #3fc6ff; }

.aether-site-chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.aether-site-chat-msg {
  max-width: 84%;
  padding: 10px 13px;
  border-radius: 14px;
  font-size: .88rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.aether-site-chat-msg.ben {
  align-self: flex-end;
  background: #3fc6ff;
  color: #0a0b0d;
  border-bottom-right-radius: 5px;
}
.aether-site-chat-msg.bot {
  align-self: flex-start;
  background: #16171b;
  color: #f2f3f5;
  border: 1px solid #24262b;
  border-bottom-left-radius: 5px;
}
.aether-site-chat-msg.yukleniyor { opacity: .6; font-style: italic; }

.aether-site-chat-form {
  display: flex;
  gap: 8px;
  padding: 11px;
  border-top: 1px solid #24262b;
  background: #0a0b0d;
}
.aether-site-chat-form input {
  flex: 1;
  background: #0d0e12;
  border: 1px solid #2f323a;
  border-radius: 100px;
  padding: 11px 15px;
  color: #f2f3f5;
  font-family: inherit;
  font-size: .88rem;
}
.aether-site-chat-form input:focus { outline: none; border-color: #3fc6ff; }
.aether-site-chat-form input::placeholder { color: #5c5f68; }
.aether-site-chat-form button {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 0;
  background: #3fc6ff;
  color: #0a0b0d;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1);
}
.aether-site-chat-form button:hover { transform: scale(1.06); }
.aether-site-chat-form button svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .aether-site-chat-win { right: 8px; left: 8px; width: auto; bottom: 82px; }
  .aether-site-chat-fab { right: 16px; bottom: 16px; }
}
