#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: Arial, sans-serif;
    z-index: 9999;
}

/* Кнопка открытия */
#chat-toggle {
    background: #611411;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Блок чата */
#chat-box {
    width: 300px;
    height: 400px;
    background: #fff;
    border: 2px solid #611411;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 70px;
    right: 0;
}
#chat-box.hidden { display: none; }

/* Заголовок */
#chat-header {
    background: #611411;
    color: white;
    padding: 8px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#chat-close { cursor: pointer; }

/* Сообщения */
#chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}
.chat-message {
    margin-bottom: 8px;
    line-height: 1.4em;
}

/* === Нижняя панель === */
#chat-input {
    display: flex;
    align-items: stretch;
    border-top: 1px solid #ccc;
    background: #f9f9f9;
    height: 52px;
    box-sizing: border-box;
}

/* Поле ввода */
#chat-input input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 14px;
    font-size: 14px;
    box-sizing: border-box;
    background: transparent;
    height: 100%;
}

/* Кнопка */
#chat-input button {
    width: 52px;
    height: 52px;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    background: #611411;
    color: #fff;
    font-size: 18px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-sizing: border-box;
}

#chat-input button:hover {
    background: #7b1a16;
}