/**
 * LHP AI Mascot & Widget Stylesheet
 * Brand Identity for Lien Hoan Phat (lienhoanphat.com)
 * 100% Pure CSS animations - Fully animated even without JavaScript.
 */

:root {
  --lhp-bot-size: 74px;
  --lhp-bot-gold: #F5D021;
  --lhp-bot-orange: #F68632;
  --lhp-bot-violet: #7a5ce0;
  --lhp-bot-cyan: #00e5ff;
  --lhp-bot-dark: #0f172a;
  --lhp-bot-bottom: 24px;
  --lhp-bot-right: 24px;
}

/* ========================================================
   Floating Widget Container
   ======================================================== */
.lhp-bot-widget {
  position: fixed;
  bottom: var(--lhp-bot-bottom);
  right: var(--lhp-bot-right);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  font-family: var(--font, 'Be Vietnam Pro', -apple-system, sans-serif);
}

/* ========================================================
   Launcher Trigger Button (Mascot Wrapper)
   ======================================================== */
.lhp-bot-trigger {
  position: relative;
  width: var(--lhp-bot-size);
  height: var(--lhp-bot-size);
  border-radius: 50%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  outline: none;
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  /* Động nhẹ liên tục ngay cả khi không có JS */
  animation: lhp-idle-float 3.5s ease-in-out infinite;
}

/* 1. Trạng thái bình thường (Normal / Idle): Động nhẹ thở, không đứng im */
@keyframes lhp-idle-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* 2. Khi rê chuột (Hover): Phóng lớn & Tăng tốc */
.lhp-bot-trigger:hover,
.lhp-bot-widget[data-state="hover"] .lhp-bot-trigger {
  transform: scale(1.14) translateY(-5px);
  animation-play-state: paused;
}

.lhp-bot-trigger:active {
  transform: scale(0.96);
}

/* ========================================================
   SVG Mascot Visual Elements
   ======================================================== */
.lhp-bot-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transition: filter 0.3s ease, transform 0.3s ease;
  /* Nhịp thở hào quang năng lượng (Aura Pulse) */
  animation: lhp-aura-pulse 4s ease-in-out infinite;
}

@keyframes lhp-aura-pulse {
  0%, 100% {
    filter: drop-shadow(0 10px 22px rgba(15, 23, 42, 0.4)) drop-shadow(0 0 14px rgba(246, 134, 50, 0.35));
  }
  50% {
    filter: drop-shadow(0 14px 28px rgba(15, 23, 42, 0.45)) drop-shadow(0 0 24px rgba(246, 134, 50, 0.65)) drop-shadow(0 0 32px rgba(0, 229, 255, 0.35));
  }
}

.lhp-bot-trigger:hover .lhp-bot-svg,
.lhp-bot-widget[data-state="hover"] .lhp-bot-svg {
  filter: drop-shadow(0 16px 36px rgba(15, 23, 42, 0.55)) drop-shadow(0 0 28px rgba(246, 134, 50, 0.8)) drop-shadow(0 0 38px rgba(0, 229, 255, 0.5));
}

/* ◉ Vòng sáng chạy quanh bot (AI Orbit Ring - Khóa tâm 100% bằng SVG Native) */
.lhp-bot-orbit-group {
  pointer-events: none;
}

.lhp-bot-trigger:hover .lhp-bot-orbit-track,
.lhp-bot-widget[data-state="hover"] .lhp-bot-orbit-track {
  stroke-width: 3.8px;
  filter: drop-shadow(0 0 8px #F5D021);
}

.lhp-bot-trigger:hover .lhp-bot-orbit-bead,
.lhp-bot-widget[data-state="hover"] .lhp-bot-orbit-bead {
  filter: drop-shadow(0 0 14px #FFF066);
}

/* 👀 Mắt: Đảm bảo transform mượt mà khi rê chuột */
.lhp-bot-eyes-wrapper {
  transition: transform 0.08s ease-out;
}

.lhp-bot-trigger:hover .lhp-bot-eyes-wrapper,
.lhp-bot-widget[data-state="hover"] .lhp-bot-eyes-wrapper {
  transform-origin: 50px 41px;
}

/* ✨ Logo LHP: Tự động Shimmer và sáng bừng khi rê chuột */
.lhp-bot-brand-text {
  filter: drop-shadow(0 0 3px rgba(245, 208, 33, 0.7));
  transition: all 0.3s ease;
}

.lhp-bot-trigger:hover .lhp-bot-brand-text,
.lhp-bot-widget[data-state="hover"] .lhp-bot-brand-text {
  fill: #FFFFFF !important;
  filter: drop-shadow(0 0 8px #FFF066) drop-shadow(0 0 18px #FF7A00) drop-shadow(0 0 28px #FF334B);
  transform-origin: 50px 58px;
  transform: scale(1.08);
}

/* ◡ Miệng cười (Bình thường) */
.lhp-bot-mouth {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.lhp-bot-trigger:hover .lhp-bot-mouth,
.lhp-bot-widget[data-state="hover"] .lhp-bot-mouth {
  stroke: #FFF066;
  filter: drop-shadow(0 0 5px #F5D021);
}

/* ● ● ● Khi AI đang trả lời (Thinking state) */
.lhp-bot-thinking-dots {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lhp-bot-widget[data-state="thinking"] .lhp-bot-mouth {
  opacity: 0;
}

.lhp-bot-widget[data-state="thinking"] .lhp-bot-thinking-dots {
  opacity: 1;
}

.lhp-bot-tdot {
  animation: lhp-tdot-wave 1.1s ease-in-out infinite;
}

.tdot-1 { animation-delay: 0s; }
.tdot-2 { animation-delay: 0.2s; }
.tdot-3 { animation-delay: 0.4s; }

@keyframes lhp-tdot-wave {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-4.5px);
    opacity: 1;
  }
}

/* Listening State (Microphone active) */
.lhp-bot-widget[data-state="listening"] .lhp-bot-head {
  stroke: #ef4444;
  filter: drop-shadow(0 0 14px rgba(239, 68, 68, 0.95));
}

/* Speaking State (when TTS reading is active) */
.lhp-bot-widget[data-state="speaking"] .lhp-bot-head {
  stroke: #00e5ff;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.95));
}
.lhp-bot-widget[data-state="speaking"] .lhp-bot-mouth {
  animation: lhp-mouth-talk 0.35s ease-in-out infinite alternate;
  transform-origin: 50px 71px;
}
@keyframes lhp-mouth-talk {
  0% { transform: scaleY(0.7); }
  100% { transform: scaleY(1.4); }
}

/* ========================================================
   🔴 1 Notification Badge
   ======================================================== */
.lhp-bot-badge-wrap {
  position: absolute;
  top: -2px;
  right: -2px;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}

.lhp-bot-widget[data-state="notification"] .lhp-bot-badge-wrap,
.lhp-bot-badge-wrap.is-visible {
  opacity: 1;
  transform: scale(1);
}

.lhp-bot-badge {
  position: relative;
  min-width: 24px;
  height: 24px;
  border-radius: 12px;
  padding: 0 6px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.7);
  animation: lhp-badge-bounce 2s infinite ease-in-out;
}

.lhp-bot-badge-ping {
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  border: 2px solid #ef4444;
  animation: lhp-badge-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes lhp-badge-bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18) translateY(-2px);
  }
}

@keyframes lhp-badge-ping {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Close Icon Toggle */
.lhp-bot-close-icon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0f172a;
  color: #f8fafc;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.6) rotate(-90deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
  pointer-events: none;
  border: 2px solid var(--lhp-bot-orange);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.lhp-bot-widget.is-open .lhp-bot-svg {
  opacity: 0;
  transform: scale(0.6) rotate(90deg);
}

.lhp-bot-widget.is-open .lhp-bot-close-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  pointer-events: auto;
}

.lhp-bot-widget.is-open .lhp-bot-badge-wrap {
  display: none;
}

/* ========================================================
   Speech Bubble / Greeting Teaser
   ======================================================== */
.lhp-bot-bubble {
  pointer-events: auto;
  position: absolute;
  bottom: calc(var(--lhp-bot-size) + 14px);
  right: 0;
  width: 270px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(246, 134, 50, 0.35);
  border-radius: 18px 18px 4px 18px;
  padding: 12px 14px;
  box-shadow: 0 12px 36px -4px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.94);
  transform-origin: bottom right;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

.lhp-bot-bubble.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lhp-bot-bubble-content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #1e293b;
}

.lhp-bot-bubble-wave {
  font-size: 1.1rem;
  line-height: 1;
}

.lhp-bot-bubble-text strong {
  color: var(--lhp-bot-orange);
}

.lhp-bot-bubble-close {
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  line-height: 1;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.lhp-bot-bubble-close:hover {
  color: #0f172a;
  background: #f1f5f9;
}

/* ========================================================
   Quick Chat Panel
   ======================================================== */
.lhp-bot-panel {
  pointer-events: auto;
  position: absolute;
  bottom: calc(var(--lhp-bot-size) + 16px);
  right: 0;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px -10px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
  transform-origin: bottom right;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
  z-index: 1055;
}

.lhp-bot-widget.is-open .lhp-bot-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Panel Header */
.lhp-panel-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--lhp-bot-orange);
}

.lhp-panel-bot-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lhp-panel-mini-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245, 208, 33, 0.2), rgba(246, 134, 50, 0.2));
  border: 1px solid rgba(245, 208, 33, 0.4);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
}

.lhp-avatar-status-dot {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid #0f172a;
}

.lhp-panel-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #f8fafc;
}

.lhp-panel-status {
  font-size: 0.75rem;
  color: #94a3b8;
  display: block;
}

.lhp-panel-ctrl-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #e2e8f0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s;
}

.lhp-panel-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Panel Body */
.lhp-panel-body {
  flex: 1;
  padding: 18px;
  overflow-y: auto;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

.lhp-panel-body::-webkit-scrollbar {
  width: 5px;
}

.lhp-panel-body::-webkit-scrollbar-track {
  background: transparent;
}

.lhp-panel-body::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 4px;
}

/* Messages */
.lhp-msg {
  display: flex;
  gap: 10px;
  max-width: 90%;
  animation: lhp-msg-appear 0.3s ease-out;
}

@keyframes lhp-msg-appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lhp-msg--bot {
  align-self: flex-start;
}

.lhp-msg--user {
  align-self: flex-end;
  flex-direction: row-reverse;
}

.lhp-msg-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #e2e8f0;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.lhp-msg-bubble {
  padding: 12px 15px;
  border-radius: 16px 16px 16px 4px;
  background: #ffffff;
  color: #1e293b;
  font-size: 0.88rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.lhp-msg--user .lhp-msg-bubble {
  background: linear-gradient(135deg, var(--lhp-bot-orange), #ea580c);
  color: #ffffff;
  border: none;
  border-radius: 16px 16px 4px 16px;
}

.lhp-msg-bubble p {
  margin: 0 0 6px 0;
}
.lhp-msg-bubble p:last-child {
  margin-bottom: 0;
}

/* Typing Indicator in Chat Panel (AI thinking animation) */
.lhp-msg--typing {
  align-self: flex-start;
}

.lhp-msg-bubble--typing {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px 16px 16px 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.lhp-typing-text {
  font-size: 0.83rem;
  color: #64748b;
  font-weight: 500;
  font-style: italic;
}

.lhp-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.lhp-typing-dot {
  width: 6px;
  height: 6px;
  background: var(--lhp-bot-orange);
  border-radius: 50%;
  display: inline-block;
  animation: lhpTypingDotJump 1.4s infinite ease-in-out both;
}

.lhp-typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.lhp-typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.lhp-typing-dot:nth-child(3) {
  animation-delay: 0s;
}

@keyframes lhpTypingDotJump {
  0%, 80%, 100% {
    transform: scale(0.6) translateY(0);
    opacity: 0.35;
    background: var(--lhp-bot-orange);
  }
  40% {
    transform: scale(1.25) translateY(-4px);
    opacity: 1;
    background: #00b4d8;
  }
}

/* Quick Actions */
.lhp-quick-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.lhp-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.lhp-quick-btn:hover {
  background: #f1f5f9;
  border-color: var(--lhp-bot-orange);
  color: var(--lhp-bot-orange);
  transform: translateX(3px);
}

.lhp-quick-btn--zalo {
  background: #0068ff;
  color: #ffffff;
  border-color: #0068ff;
}
.lhp-quick-btn--zalo:hover {
  background: #0054d1;
  color: #ffffff;
  border-color: #0054d1;
}

.lhp-quick-btn--call {
  background: #10b981;
  color: #ffffff;
  border-color: #10b981;
}
.lhp-quick-btn--call:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
}

/* ========================================================
   Panel Footer / Input Bar
   ======================================================== */
.lhp-panel-footer {
  padding: 12px 16px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lhp-panel-input {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.lhp-panel-input:focus {
  border-color: var(--lhp-bot-orange);
  box-shadow: 0 0 0 3px rgba(246, 134, 50, 0.18);
}

.lhp-panel-mic-btn {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  color: #64748b;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.lhp-panel-mic-btn:hover {
  background: #ffffff;
  border-color: var(--lhp-bot-orange);
  color: var(--lhp-bot-orange);
  transform: scale(1.05);
}

.lhp-panel-mic-btn.is-listening {
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  color: #ffffff !important;
  animation: lhp-mic-pulse 1.3s infinite;
}

@keyframes lhp-mic-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(239, 68, 68, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    transform: scale(1);
  }
}

.lhp-panel-send-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--lhp-bot-gold), var(--lhp-bot-orange));
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s, filter 0.2s;
  flex-shrink: 0;
}

.lhp-panel-send-btn:hover {
  transform: scale(1.06);
  filter: brightness(1.08);
}

.lhp-panel-send-btn:active {
  transform: scale(0.96);
}

/* Message Actions Toolbar (Speak, Copy) */
.lhp-msg-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 1px dashed rgba(203, 213, 225, 0.7);
}

.lhp-msg-act-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.18s ease;
  user-select: none;
}

.lhp-msg-act-btn:hover {
  background: #ffffff;
  color: var(--lhp-bot-orange);
  border-color: var(--lhp-bot-orange);
  transform: translateY(-1px);
  box-shadow: 0 2px 5px rgba(246, 134, 50, 0.15);
}

.lhp-msg-act-btn:active {
  transform: scale(0.96);
}

.lhp-msg-act-btn.is-speaking {
  background: #fef2f2;
  border-color: #ef4444;
  color: #dc2626;
  font-weight: 700;
}

.lhp-msg-act-btn.is-copied {
  background: #ecfdf5;
  border-color: #10b981;
  color: #059669;
}

.lhp-msg-act-btn.is-loading {
  background: #fff7ed;
  border-color: var(--lhp-bot-orange);
  color: var(--lhp-bot-orange);
  font-weight: 600;
}

.lhp-speak-spinner {
  width: 11px;
  height: 11px;
  border: 2px solid rgba(246, 134, 50, 0.3);
  border-top-color: var(--lhp-bot-orange);
  border-radius: 50%;
  display: inline-block;
  animation: lhp-spin 0.7s linear infinite;
  margin-right: 2px;
}

@keyframes lhp-spin {
  to { transform: rotate(360deg); }
}

/* Soundwave Equalizer for speaking button */
.lhp-equalizer {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
  margin-right: 2px;
}

.lhp-equalizer-bar {
  width: 2.5px;
  background: #dc2626;
  border-radius: 1px;
  animation: lhp-eq-bounce 0.8s ease-in-out infinite alternate;
}
.lhp-equalizer-bar:nth-child(1) { height: 4px; animation-delay: 0.1s; }
.lhp-equalizer-bar:nth-child(2) { height: 11px; animation-delay: 0.3s; }
.lhp-equalizer-bar:nth-child(3) { height: 7px; animation-delay: 0.2s; }

@keyframes lhp-eq-bounce {
  0% { height: 3px; }
  100% { height: 12px; }
}

/* ========================================================
   Harmonize with go-top-btn
   ======================================================== */
.go-top-btn {
  bottom: calc(var(--lhp-bot-bottom) + var(--lhp-bot-size) + 16px) !important;
  right: calc(var(--lhp-bot-right) + 11px) !important;
  z-index: 1040 !important;
}

/* ========================================================
   Responsive (Mobile Viewports)
   ======================================================== */
@media (max-width: 768px) {
  :root {
    --lhp-bot-size: 64px;
    --lhp-bot-bottom: 74px; /* Higher than mobile-sticky-bar (60px) */
    --lhp-bot-right: 14px;
  }

  .lhp-bot-bubble {
    width: calc(100vw - 32px);
    right: 0;
  }

  .lhp-bot-panel {
    width: calc(100vw - 24px);
    right: -4px;
    bottom: calc(var(--lhp-bot-size) + 16px);
    height: 480px;
  }
}

/* End of LHP Bot Styles */
