/* Adventure with Alphabet — website search chat */
.awa-site-chat-launcher,
.awa-site-chat-panel,
.awa-site-chat-panel *{
  box-sizing:border-box;
}
.awa-site-chat-launcher{
  position:fixed;
  right:22px;
  left:auto;
  bottom:22px;
  z-index:10020;
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:50px;
  padding:10px 17px 10px 13px;
  border:1px solid rgba(76,111,76,.28);
  border-radius:999px;
  background:rgba(248,252,243,.97);
  color:#36573e;
  box-shadow:0 10px 28px rgba(50,74,54,.18);
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  backdrop-filter:blur(8px);
}
.awa-site-chat-launcher:hover,
.awa-site-chat-launcher:focus-visible{
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(50,74,54,.22);
  background:#fffdf6;
}
.awa-site-chat-launcher:focus-visible,
.awa-site-chat-close:focus-visible,
.awa-site-chat-send:focus-visible,
.awa-site-chat-chip:focus-visible,
.awa-site-chat-result:focus-visible{
  outline:3px solid rgba(110,151,91,.28);
  outline-offset:2px;
}
.awa-site-chat-launcher-icon{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#dcebd2;
  color:#36573e;
  flex:0 0 auto;
}
.awa-site-chat-launcher-icon img{width:100%;height:100%;display:block;object-fit:cover;border-radius:50%}
.awa-site-chat-panel{
  position:fixed;
  right:22px;
  left:auto;
  bottom:84px;
  z-index:10021;
  width:min(390px,calc(100vw - 32px));
  height:min(570px,calc(100vh - 120px));
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(91,124,97,.22);
  border-radius:24px;
  background:#fffdf8;
  box-shadow:0 22px 56px rgba(45,63,49,.24);
  opacity:0;
  visibility:hidden;
  transform:translateY(12px) scale(.98);
  transform-origin:bottom right;
  transition:opacity .18s ease,transform .18s ease,visibility .18s ease;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
  color:#39483e;
}
.awa-site-chat-panel.is-open{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}
.awa-site-chat-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:17px 18px 14px;
  background:linear-gradient(135deg,#e9f2df,#f8f3df);
  border-bottom:1px solid rgba(91,124,97,.15);
}
.awa-site-chat-title-group{display:flex;align-items:center;gap:10px;min-width:0}
.awa-site-chat-header-avatar{width:42px;height:42px;border-radius:50%;object-fit:cover;flex:0 0 auto;border:2px solid rgba(255,255,255,.9);box-shadow:0 3px 10px rgba(68,88,67,.12)}
.awa-site-chat-title-wrap{min-width:0}
.awa-site-chat-title{
  display:block;
  margin:0;
  font-size:21px;
  line-height:1.1;
  font-weight:600;
  color:#365542;
}
.awa-site-chat-subtitle{
  display:block;
  margin-top:3px;
  font-size:12.5px;
  color:#6f7c71;
}
.awa-site-chat-close{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.72);
  color:#4e6254;
  font:400 24px/1 Arial,sans-serif;
  cursor:pointer;
}
.awa-site-chat-messages{
  flex:1 1 auto;
  overflow:auto;
  padding:18px;
  scroll-behavior:smooth;
}
.awa-site-chat-message-row.bot-row{
  display:flex;
  align-items:flex-end;
  gap:9px;
  width:100%;
  margin:0 0 13px;
}
.awa-site-chat-bot-avatar{
  width:43px;
  height:43px;
  flex:0 0 43px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid #fff;
  box-shadow:0 5px 14px rgba(60,81,63,.16);
  background:#eef5e9;
}
.awa-site-chat-message-row.bot-row .awa-site-chat-message{
  margin:0;
  max-width:calc(100% - 52px);
}
.awa-site-chat-message{
  max-width:89%;
  margin:0 0 12px;
  padding:11px 13px;
  border-radius:16px;
  font-size:14.5px;
  line-height:1.5;
}
.awa-site-chat-message.bot{
  margin-right:auto;
  background:#f0f5eb;
  border-bottom-left-radius:5px;
}
.awa-site-chat-message.user{
  margin-left:auto;
  background:#e7eff7;
  border-bottom-right-radius:5px;
}
.awa-site-chat-message p{margin:0 0 8px}
.awa-site-chat-message p:last-child{margin-bottom:0}
.awa-site-chat-results{
  display:grid;
  gap:8px;
  margin-top:10px;
}
.awa-site-chat-result{
  display:block;
  padding:10px 11px;
  border:1px solid rgba(93,125,102,.17);
  border-radius:12px;
  background:rgba(255,255,255,.78);
  color:#375b48;
  text-decoration:none;
  line-height:1.3;
}
.awa-site-chat-result:hover{background:#fff;color:#274b39}
.awa-site-chat-result strong{display:block;font-size:14px;font-weight:600}
.awa-site-chat-result span{display:block;margin-top:2px;font-size:12px;color:#768078}
.awa-site-chat-chips{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:11px;
}
.awa-site-chat-chip{
  border:1px solid rgba(87,122,92,.19);
  border-radius:999px;
  background:#fff;
  color:#4c6c54;
  padding:6px 10px;
  font:inherit;
  font-size:12.5px;
  cursor:pointer;
}
.awa-site-chat-chip:hover{background:#f4f8ef}
.awa-site-chat-form{
  display:flex;
  gap:8px;
  padding:13px;
  border-top:1px solid rgba(91,124,97,.14);
  background:#fff;
}
.awa-site-chat-input{
  min-width:0;
  flex:1 1 auto;
  height:43px;
  border:1px solid rgba(85,112,91,.25);
  border-radius:13px;
  padding:9px 12px;
  background:#fffdfb;
  color:#35463b;
  font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,serif;
  font-size:15px;
}
.awa-site-chat-input:focus{outline:2px solid rgba(111,151,92,.24);border-color:#88a97c}
.awa-site-chat-send{
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border:0;
  border-radius:13px;
  background:#8fb47c;
  color:#fff;
  cursor:pointer;
  box-shadow:0 5px 12px rgba(69,103,65,.18);
}
.awa-site-chat-send:hover{background:#7ba567}
.awa-site-chat-send svg{width:18px;height:18px;fill:currentColor}
.awa-site-chat-note{
  padding:0 15px 11px;
  background:#fff;
  color:#818881;
  text-align:center;
  font-size:10.5px;
  line-height:1.35;
}
@media(max-width:600px){
  .awa-site-chat-launcher{right:14px;left:auto;bottom:14px;min-height:46px;padding:8px 14px 8px 10px}
  .awa-site-chat-panel{right:12px;left:auto;bottom:70px;width:calc(100vw - 24px);height:min(590px,calc(100vh - 88px));border-radius:20px}
  .awa-site-chat-messages{padding:15px}
}
@media(prefers-reduced-motion:reduce){
  .awa-site-chat-launcher,.awa-site-chat-panel{transition:none}
  .awa-site-chat-messages{scroll-behavior:auto}
}
