.site-chat-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(25, 18, 30, 0.45);
}

.site-chat-overlay.open {
    display: flex;
}

.site-chat-panel {
    position: relative;
    width: min(100%, 430px);
    padding: 28px;
    border: 1px solid #eadff0;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.site-chat-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #673296;
    cursor: pointer;
}

.site-chat-header {
    margin-bottom: 22px;
    text-align: center;
}

.site-chat-eyebrow {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8d45a8;
}

.site-chat-header h2 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 30px;
    line-height: 1.15;
    color: #673296;
}

.site-chat-header p {
    margin: 10px auto 0;
    max-width: 330px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.site-chat-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-chat-form label {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.site-chat-form input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d8cde0;
    border-radius: 10px;
    font: inherit;
    color: #222;
    background: #fff;
    box-sizing: border-box;
}

.site-chat-form input:focus {
    outline: 2px solid #d8b9e5;
    outline-offset: 1px;
    border-color: #8d45a8;
}

.site-chat-submit {
    margin-top: 10px;
    padding: 13px 18px;
    border: 0;
    border-radius: 10px;
    background: #79339a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.site-chat-submit:hover {
    background: #673296;
}

.site-chat-consent {
    margin: 4px 0 0;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
    color: #777;
}

@media (max-width: 600px) {
    .site-chat-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .site-chat-panel {
        width: 100%;
        max-width: none;
        border-radius: 18px 18px 0 0;
        padding: 24px 20px 22px;
    }
}

.site-chat-iframe {
    display: none;
}