.vermond-chat-bubble {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border: none;
    transition: transform 150ms;
}

.vermond-chat-bubble:hover {
    transform: scale(1.06);
}

.vermond-chat-bubble svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.vermond-chat-panel {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 330px;
    max-width: 92vw;
    height: 440px;
    max-height: 72vh;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 9999;
    font-family: Arial, Helvetica, sans-serif;
}

.vermond-chat-panel.vermond-chat-open {
    display: flex;
}

.vermond-chat-header {
    background: #000;
    color: #fff;
    padding: 14px 16px;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.vermond-chat-close {
    cursor: pointer;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    padding: 0;
}

.vermond-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    font-size: 14px;
    line-height: 1.4;
    background: #f7f7f7;
}

.vermond-chat-msg {
    max-width: 82%;
    margin-bottom: 8px;
    padding: 8px 11px;
    border-radius: 8px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.vermond-chat-msg-bot {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #e6e6e6;
    margin-right: auto;
    border-bottom-left-radius: 2px;
}

.vermond-chat-msg-user {
    background: #000;
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.vermond-chat-msg-bot a {
    color: #0388cc;
    word-break: break-all;
}

.vermond-chat-msg-user a {
    color: #fff;
    text-decoration: underline;
    word-break: break-all;
}

.vermond-chat-msg-pending {
    opacity: 0.6;
}

.vermond-chat-contact-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.vermond-chat-contact-title {
    font-weight: bold;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.vermond-chat-contact-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 7px 8px;
    font-size: 13px;
    font-family: inherit;
    margin-bottom: 6px;
}

.vermond-chat-contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 8px;
    line-height: 1.3;
    cursor: pointer;
}

.vermond-chat-contact-consent input {
    margin-top: 2px;
    flex-shrink: 0;
}

.vermond-chat-contact-consent a {
    color: #0388cc;
}

.vermond-chat-contact-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vermond-chat-contact-skip {
    background: none;
    border: none;
    color: #747883;
    font-size: 12px;
    cursor: pointer;
    padding: 6px 0;
}

.vermond-chat-contact-submit {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 7px 14px;
    cursor: pointer;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
}

.vermond-chat-contact-submit:disabled {
    opacity: 0.4;
    cursor: default;
}

.vermond-chat-inputrow {
    display: flex;
    padding: 8px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
}

.vermond-chat-input {
    flex: 1;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 9px 10px;
    font-size: 14px;
    font-family: inherit;
    resize: none;
}

.vermond-chat-send {
    margin-left: 8px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0 16px;
    cursor: pointer;
    font-family: 'Oswald', Arial, sans-serif;
    text-transform: uppercase;
    font-size: 13px;
}

.vermond-chat-send:disabled {
    opacity: 0.5;
    cursor: default;
}

@media (max-width: 420px) {
    .vermond-chat-panel {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 80px;
    }
    .vermond-chat-bubble {
        right: 14px;
        bottom: 14px;
    }
}
