#vz-chatbot-root {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Launcher */
  #vz-chat-launcher {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2f92, #7a3cff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 28px rgba(255,47,146,0.45);
    transition: transform .25s ease;
    overflow: visible; /* 🔴 IMPORTANT */
    touch-action: manipulation;
  }
  
  #vz-chat-launcher:hover {
    transform: scale(1.08);
  }
  
  /* Panel */
  #vz-chat-panel {
    position: absolute;
    bottom: 92px;
    right: 0;
    width: 360px;
    height: 520px;
    background: rgba(12,12,18,0.92);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    display: none;
    flex-direction: column;
    overflow: hidden;
  }
  
  /* Header */
  .vz-header {
    padding: 16px;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
  }
  
  .vz-header p {
    font-size: 12px;
    opacity: 0.7;
  }
  
  #vz-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  
  /* Chat Body */
  #vz-chat-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
  }
  
  /* Messages */
  .vz-msg {
    max-width: 78%;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.45;
  }
  
  .vz-user {
    background: #ff2f92;
    color: #fff;
    margin-left: auto;
  }
  
  .vz-bot {
    background: rgba(255,255,255,0.08);
    color: #eaeaea;
  }
  
  /* Typing */
  .vz-typing {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 8px;
  }
  
  /* Input */
  .vz-input-area {
    display: flex;
    padding: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .vz-input-area input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
  }
  
  .vz-input-area button {
    background: none;
    border: none;
    color: #ff2f92;
    font-size: 20px;
    cursor: pointer;
  }
  
  #vz-chat-launcher img {
    width: 42px;
    height: 42px;
    pointer-events: none;
    z-index: 2;
  }
  
  /* Ensure always visible */
#vz-chatbot-root {
    z-index: 99999;
  }
  
  /* Smooth open animation */
  #vz-chat-panel {
    animation: vzPop 0.28s ease;
  }
  
  @keyframes vzPop {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.96);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }


  /* ---------- CHAT ICON PULSE ---------- */
  #vz-chat-launcher {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff2f92, #7a3cff);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 0 28px rgba(255,47,146,0.45);
    transition: transform .25s ease;
    overflow: visible; /* 🔴 IMPORTANT */
  }

/* Pulse ring */
.vz-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 47, 146, 0.35);
    animation: vzPulse 2.6s infinite;
    z-index: 0;
  }
  
  @keyframes vzPulse {
    0% { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.7); opacity: 0; }
    100% { opacity: 0; }
  }

  
  .vz-helper-bubble {
    position: absolute;
    right: 82px;        /* top-left of icon */
    bottom: 14px;
    background: #2a2d34;
    color: #fff;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 99999;
    white-space: nowrap;
  }
  
  .vz-helper-bubble.show {
    opacity: 1;
    transform: translateY(0);
  }
  

  /* 🚫 Disable text selection & tap highlight on chatbot */
#vz-chat-launcher,
#vz-chat-launcher * {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#vz-chat-launcher:focus,
#vz-chat-launcher:active {
  outline: none;
}

/* ---------- QUICK ACTION BUTTONS ---------- */
.vz-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.15);
}

.vz-quick-actions button {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 18px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.vz-quick-actions button:hover {
  background: rgba(255,47,146,0.9);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 768px) {
  .vz-quick-actions {
    gap: 6px;
  }
  .vz-quick-actions button {
    font-size: 12px;
    padding: 7px 12px;
  }
}

/* 🔥 FIX: allow quick actions to receive clicks */
#vz-chat-body {
  position: relative;
  z-index: 1;
}

.vz-quick-actions {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.vz-quick-actions button {
  pointer-events: auto;
}
