@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.chatbot h1, .chatbot h2, .chatbot h3, .chatbot h4, .chatbot h5, .chatbot h6, .chatbot b, .chatbot strong {
    font-family: 'Bebas Neue', Bebas, Arial, sans-serif !important;
    letter-spacing: 0.5px !important;
    font-weight: bold !important;
}

.chatbot-container {
    position: fixed !important;
    bottom: 15px !important;
    right: 30px !important;
    z-index: 9999 !important;
    width: 350px !important;
    max-width: 90vw !important;
    font-family: Arial, sans-serif !important;
    background: white !important;
    border-radius: 10px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    display: flex !important;
    flex-direction: column !important;
    transform: translateY(calc(100% - 5px)) !important;
    transition: transform 0.3s ease !important;
    max-height: none !important;
    top: 15px !important;
    height: auto !important;
    box-sizing: border-box !important;
}

.chatbot-container.open {
    transform: translateY(0) !important;
}

.chatbot-header {
    padding: 16px !important;
    background: #e60000 !important;
    color: #fff !important;
    border-radius: 10px 10px 0 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-size: 20px !important;
    font-weight: bold !important;
}

.chatbot-header h3 {
    margin: 0;
}

.close-chatbot {
    background: none !important;
    border: none !important;
    color: #fff !important;
    cursor: pointer !important;
    font-size: 22px !important;
}

.chatbot {
    max-height: 100vh !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.chatbot-messages {
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    max-height: 100% !important;
    min-height: 0 !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    box-sizing: border-box !important;
}

.message {
    max-width: 80%;
    padding: 10px 15px !important;
    border-radius: 15px !important;
    margin: 5px 0 !important;
}

.message.user {
    background: #f70404 !important;
    color: white !important;
    align-self: flex-end !important;
    border-radius: 15px 15px 0 15px !important;
}

.message.bot {
    background: #f0f0f0 !important;
    color: #333 !important;
    align-self: flex-start !important;
    border-radius: 15px 15px 15px 0 !important;
}

.chatbot-input {
    padding: 12px 16px !important;
    border-top: 1px solid #eee !important;
    display: flex !important;
    gap: 10px !important;
    background: #fff !important;
}

.chatbot-input input {
    flex: 1 !important;
    padding: 10px 14px !important;
    border: 1px solid #ccc !important;
    border-radius: 20px !important;
    outline: none !important;
    font-size: 15px !important;
}

.chatbot-input button {
    background: #e60000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px !important;
    transition: background 0.2s !important;
}

.chatbot-input button:hover {
    background: #cc0000 !important;
}

.chatbot-toggle {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background: #e60000 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 28px !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
    z-index: 10000 !important;
    transition: transform 0.3s ease !important;
}

.chatbot-toggle:hover {
    background: #cc0000 !important;
}

.chatbot-toggle.active {
    transform: rotate(360deg) !important;
}

.chatbot-container.open ~ .chatbot-toggle,
.chatbot.open ~ .chatbot-toggle,
.chatbot-toggle.active {
    display: none !important;
}

.send-message,
.chatbot-send-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
}

@media (max-width: 768px) {
    .chatbot-container {
        width: calc(100vw - 20px) !important;
        height: 500px !important;
        max-width: calc(100vw - 20px) !important;
        max-height: 500px !important;
        left: 10px !important;
        right: 10px !important;
        bottom: 20px !important;
        top: auto !important;
        border-radius: 10px !important;
        transform: translateY(100%) !important;
    }
    .chatbot-container.open {
        transform: translateY(0) !important;
        bottom: 75px !important;
    }
    .chatbot {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        border-radius: 10px !important;
    }
    .chatbot-messages {
        max-height: 350px !important;
        min-height: 300px !important;
    }
    .chatbot-input {
        padding: 12px 16px !important;
        min-height: 50px !important;
    }
    .chatbot-input input {
        padding: 10px 14px !important;
        font-size: 16px !important;
    }
    .chatbot-header {
        padding: 12px 16px !important;
        font-size: 18px !important;
    }
}

.model-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 16px 0;
}

.model-btn {
    background: #e60000;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    transition: background 0.2s;
}

.model-btn:hover {
    background: #cc0000;
}

.brand-btn {
    background: #e60000;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    transition: background 0.2s;
}

.brand-btn:hover {
    background: #cc0000;
}

.whatsapp-btn {
    background: #25d366;
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    display: inline-block;
    transition: background 0.2s;
    margin-left: 8px;
}

.whatsapp-btn:hover {
    background: #128c7e;
} 