/* =========================
   LMS COLLECTOR CONCIERGE
========================= */

#collector-launcher{
  position:fixed;
  bottom:20px;
  right:20px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:#2C146C;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:9998;
  box-shadow:0 8px 24px rgba(0,0,0,0.25);
  transition:all .25s ease;
  font-size:28px;
}

#collector-launcher:hover{
  transform:translateY(-3px);
}

#collector-assistant{
  position:fixed;
  bottom:95px;
  right:20px;
  width:380px;
  max-width:calc(100vw - 30px);
  height:600px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  display:none;
  flex-direction:column;
  z-index:9999;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
  animation:assistantFade .25s ease;
}

.assistant-header{
  background:#2C146C;
  color:#fff;
  padding:18px;
}

.assistant-header h3{
  margin:0;
  font-family:Poppins;
  font-size:18px;
}

.assistant-header p{
  margin:4px 0 0;
  font-size:13px;
  opacity:.9;
}

.assistant-body{
  flex:1;
  padding:16px;
  overflow-y:auto;
  background:#f7f7fb;
}

.assistant-message{
  background:#fff;
  padding:14px;
  border-radius:14px;
  margin-bottom:12px;
  font-size:14px;
  line-height:1.5;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.assistant-options{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.assistant-option{
  background:#fff;
  border:1px solid #ddd;
  border-radius:20px;
  padding:10px 14px;
  font-size:13px;
  cursor:pointer;
  transition:.2s;
}

.assistant-option:hover{
  background:#2C146C;
  color:#fff;
  border-color:#2C146C;
}

.assistant-close{
  position:absolute;
  top:12px;
  right:14px;
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

@keyframes assistantFade{
  from{
    opacity:0;
    transform:translateY(10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media(max-width:768px){

  #collector-assistant{
    right:10px;
    left:10px;
    width:auto;
    height:75vh;
    bottom:85px;
  }

#collector-launcher img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

}