.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-box {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    width: 320px;
    position: absolute;
    bottom: 60px;
    right: 0;
    color: #e0e0e0;
}

.chat-box textarea {
    width: 100%;
    margin: 0.5rem 0;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border-radius: 5px;
    padding: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.chat-box.show {
    display: block;
}

.chat-box p {
    font-family: 'Playfair Display', serif;
}