.ai-bubble{
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F7931E, #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    user-select: none;

}

.ai-bubble img{
    width: 90%;
}

.ai-panel{
    position: fixed;
    right: 24px;
    bottom: 90px;
    width: 320px;
    height: 420px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    display: none;
 
}

.ai-panel.open{
    display: flex;
}

.ai-panel-header{
    padding: 12px 14px;
    background: black;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ai-panel-header button{
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.ai-messages{
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #f9fafb;
}

.ai-msg{
    padding: 8px 10px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.ai-msg-bot{
    background: #e5e7eb;
    align-self: flex-start;
}

.ai-msg-user{
    background: #F7931E;
    color: #fff;
    align-self: flex-end;
}

.ai-input{
    display: flex;
    gap: 8px;
    padding: 10px;
    border-top: 1px solid #e5e7eb;
}

.ai-input input {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.ai-input button {
  padding: 8px 12px;
  border: 0;
  background:black;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
}

@media(max-width:768px){
    .ai-panel{
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    border-radius: 0%;
    }
}

