/* Chatbox v2 — compléments visuels (charte bordeaux/or), sans modifier chatbox.css v1 */

#chatbox .chatbox-v2-stream-body {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

#chatbox .chatbox-v2-wine-segment {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

#chatbox .chatbox-v2-wine-segment .chatbox-product-card {
    margin-top: 4px;
}

#chatbox .chatbox-v2-wine-segment--fallback {
    margin-top: 12px;
}

#chatbox .chatbox-message--streaming .chatbox-message__bubble {
    cursor: pointer;
}

#chatbox .chatbox-v2-stream-caret {
    display: inline-block;
    margin-left: 1px;
    color: var(--cb-gold, #c79a3d);
    font-weight: 400;
    line-height: 1;
    vertical-align: baseline;
    animation: chatbox-v2-caret-blink 1s step-end infinite;
}

@keyframes chatbox-v2-caret-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/*
 * Placement contextuel (session 17e) :
 * - homepage (chatbox-context-home) : visible desktop + mobile
 * - autres pages (chatbox-context-site) : desktop uniquement
 *   → évite le chevauchement avec .button-filtres-mobile sticky en boutique
 */
@media (max-width: 767px) {
    body.chatbox-context-site #chatbox,
    #chatbox.chatbox-context-site {
        display: none !important;
    }
}
