.holly-lock-chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
}

.chat-widget {
    display: none;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    flex-direction: column;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    padding: 15px;
    background: #2563eb;
    color: white;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.message {
    margin: 10px 0;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.user-message {
    background: #2563eb;
    color: white;
    margin-left: auto;
}

.bot-message {
    background: #f3f4f6;
    color: #1f2937;
    margin-right: auto;
}

.typing-indicator {
    display: none;
    padding: 10px;
}

.typing-indicator span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #90949c;
    border-radius: 50%;
    margin-right: 5px;
    animation: typing 1s infinite;
}

@keyframes typing {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

.chat-input {
    padding: 15px;
    border-top: 1px solid #e5e7eb;
}

.chat-input form {
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    outline: none;
}

.chat-input button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.chat-toggle {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.close-icon { display: none; }
.chat-toggle.active .open-icon { display: none; }
.chat-toggle.active .close-icon { display: block; }