:root {
  --aria-teal-f8b2e5c1: #2D9B8A;
  --aria-teal-deep-f8b2e5c1: #1E7A6B;
  --aria-teal-pale-f8b2e5c1: #E6F5F2;
  --aria-teal-mid-f8b2e5c1: #B2DDD6;
  --aria-cream-f8b2e5c1: #FAF8F5;
  --aria-ink-f8b2e5c1: #1C1C1C;
  --aria-border-f8b2e5c1: #E2E0DC;
  --aria-white-f8b2e5c1: #FFFFFF;
}

.aria-bubble-f8b2e5c1 {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D9B8A 0%, #1E7A6B 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(45,155,138,0.45);
  z-index: 99998;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
  outline: none;
  padding: 0;
}
.aria-bubble-f8b2e5c1:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(45,155,138,0.55);
}
.bubble-ring-f8b2e5c1 {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #B2DDD6;
  animation: ariaBreatheRing-f8b2e5c1 3.5s ease-in-out infinite;
}
@keyframes ariaBreatheRing-f8b2e5c1 {
  0%,100% { transform:scale(1); opacity:0.6; }
  50% { transform:scale(1.15); opacity:1; }
}
.aria-bubble-f8b2e5c1 .icon-chat-f8b2e5c1,
.aria-bubble-f8b2e5c1 .icon-close-f8b2e5c1 {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.25s ease;
}
.aria-bubble-f8b2e5c1 .icon-close-f8b2e5c1 {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}
.aria-bubble-f8b2e5c1.open .icon-chat-f8b2e5c1 {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}
.aria-bubble-f8b2e5c1.open .icon-close-f8b2e5c1 {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.aria-badge-f8b2e5c1 {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #FF6B6B;
  border-radius: 50%;
  border: 2px solid white;
  font-size: 10px;
  color: white;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  animation: ariaBadgePop-f8b2e5c1 0.4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes ariaBadgePop-f8b2e5c1 {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.aria-panel-f8b2e5c1 {
  position: fixed;
  bottom: 104px;
  right: 28px;
  width: 380px;
  max-height: 580px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(45,155,138,0.18), 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  z-index: 99999;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.34,1.3,.64,1), opacity 0.25s ease;
  font-family: 'DM Sans', sans-serif;
}
.aria-panel-f8b2e5c1.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}

.aria-header-f8b2e5c1 {
  background: linear-gradient(135deg, #2D9B8A 0%, #1E7A6B 100%);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.aria-avatar-f8b2e5c1 {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.aria-avatar-f8b2e5c1 svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 1.8; }
.aria-header-text-f8b2e5c1 h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
  margin: 0;
}
.aria-header-text-f8b2e5c1 p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  margin: 2px 0 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.aria-header-actions-f8b2e5c1 {
  display: flex;
  gap: 6px;
}
.hdr-btn-f8b2e5c1 {
  background: rgba(255,255,255,0.15);
  border: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  color: white;
  font-size: 0.75rem;
  padding: 0;
}
.hdr-btn-f8b2e5c1:hover { background: rgba(255,255,255,0.28); }
.hdr-btn-f8b2e5c1 svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2; }

.online-dot-f8b2e5c1 {
  width: 9px; height: 9px;
  background: #7FFFB8;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  margin-left: auto;
  animation: ariaOnlinePulse-f8b2e5c1 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes ariaOnlinePulse-f8b2e5c1 { 0%,100%{opacity:1} 50%{opacity:0.45} }

.aria-body-f8b2e5c1 {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FAF8F5;
  scrollbar-width: thin;
  scrollbar-color: #B2DDD6 transparent;
}
.aria-body-f8b2e5c1::-webkit-scrollbar { width: 4px; }
.aria-body-f8b2e5c1::-webkit-scrollbar-thumb { background: #B2DDD6; border-radius: 10px; }

.msg-row-f8b2e5c1 {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  animation: ariaMsgIn-f8b2e5c1 0.3s ease both;
}
.msg-row-f8b2e5c1.user { flex-direction: row-reverse; }
@keyframes ariaMsgIn-f8b2e5c1 {
  from { opacity:0; transform:translateY(8px); }
  to   { opacity:1; transform:translateY(0); }
}

.msg-av-f8b2e5c1 {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2D9B8A, #1E7A6B);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.msg-av-f8b2e5c1 svg { width: 14px; height: 14px; fill:none; stroke:white; stroke-width:1.8; }

.bubble-f8b2e5c1 {
  max-width: 82%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 0.835rem;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.msg-row-f8b2e5c1.bot .bubble-f8b2e5c1 {
  background: #FFFFFF;
  color: #1C1C1C;
  border: 1px solid #E2E0DC;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.msg-row-f8b2e5c1.user .bubble-f8b2e5c1 {
  background: #2D9B8A;
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 3px 10px rgba(45,155,138,0.3);
}

.typing-ind-f8b2e5c1 { display:flex; gap:4px; align-items:center; padding: 3px 0; }
.typing-ind-f8b2e5c1 span {
  width:6px; height:6px; border-radius:50%; background:#B2DDD6;
  animation: ariaTypeDot-f8b2e5c1 1.2s ease-in-out infinite;
}
.typing-ind-f8b2e5c1 span:nth-child(2){animation-delay:.2s}
.typing-ind-f8b2e5c1 span:nth-child(3){animation-delay:.4s}
@keyframes ariaTypeDot-f8b2e5c1 {
  0%,60%,100%{transform:translateY(0);opacity:.4}
  30%{transform:translateY(-5px);opacity:1}
}

.quick-replies-f8b2e5c1 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 2px 0 4px;
  animation: ariaMsgIn-f8b2e5c1 0.4s ease 0.1s both;
}
.qbtn-f8b2e5c1 {
  background: white;
  border: 1.5px solid #B2DDD6;
  color: #1E7A6B;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 500;
  padding: 5px 11px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.qbtn-f8b2e5c1:hover {
  background: #2D9B8A;
  border-color: #2D9B8A;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(45,155,138,0.25);
}

.aria-footer-f8b2e5c1 {
  padding: 12px 14px;
  background: #FFFFFF;
  border-top: 1px solid #E2E0DC;
  flex-shrink: 0;
}
.input-wrap-f8b2e5c1 {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  background: #FAF8F5;
  border: 1.5px solid #E2E0DC;
  border-radius: 14px;
  padding: 8px 10px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrap-f8b2e5c1:focus-within {
  border-color: #2D9B8A;
  box-shadow: 0 0 0 3px rgba(45,155,138,0.1);
}
.aria-input-f8b2e5c1 {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.825rem;
  color: #1C1C1C;
  resize: none;
  outline: none;
  max-height: 90px;
  min-height: 20px;
  line-height: 1.5;
}
.aria-input-f8b2e5c1::placeholder { color: #C0C0C0; }
.aria-send-f8b2e5c1 {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: #2D9B8A;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  padding: 0;
}
.aria-send-f8b2e5c1:hover { background: #1E7A6B; transform:scale(1.06); }
.aria-send-f8b2e5c1:disabled { background: #B2DDD6; cursor:not-allowed; transform:none; }
.aria-send-f8b2e5c1 svg { width:15px; height:15px; fill:none; stroke:white; stroke-width:2.2; }

.footer-note-f8b2e5c1 {
  text-align: center;
  font-size: 0.65rem;
  color: #BDBDBD;
  margin-top: 8px;
  letter-spacing: 0.02em;
  font-family: 'DM Sans', sans-serif;
}

@media (max-width: 480px) {
  .aria-panel-f8b2e5c1 {
    width: calc(100vw - 20px);
    right: 10px;
    bottom: 90px;
    max-height: 70vh;
  }
  .aria-bubble-f8b2e5c1 { right: 18px; bottom: 18px; }
}
