/* Estilos para el chatbot Woo */
#woo-chatbot-bubble {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: #0073aa;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: background 0.2s;
}
#woo-chatbot-bubble:hover {
    background: #005177;
}
#woo-chatbot-bubble svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}
#woo-chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 32px;
    width: 350px;
    max-width: 95vw;
    height: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10000;
    animation: woo-fade-in 0.25s;
}
@keyframes woo-fade-in {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
#woo-chatbot-header {
    background: #0073aa;
    color: #fff;
    padding: 16px;
    font-size: 1.1em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#woo-chatbot-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
}
#woo-chatbot-body {
    flex: 1;
    padding: 16px;
    background: #f7fafd;
    overflow-y: auto;
    font-size: 1em;
    display: flex;
    flex-direction: column;
}
#woo-chatbot-footer {
    padding: 12px 16px;
    background: #f1f1f1;
    border-top: 1px solid #e2e2e2;
}
#woo-chatbot-input {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
}
.woo-chatbot-message {
    margin-bottom: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 80%;
    word-break: break-word;
    font-size: 1em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.woo-chatbot-bot {
    background: #e5f4fb;
    color: #0073aa;
    align-self: flex-start;
}
.woo-chatbot-user {
    background: #0073aa;
    color: #fff;
    align-self: flex-end;
    margin-left: auto;
}
.woo-chatbot-welcome {
    background: #f1f8e9;
    color: #4caf50;
    align-self: flex-start;
}
