#tlc-chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ccb775;
    color: #000;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
}
#tlc-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 340px;
    max-height: 520px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 9999;
    font-family: "Playfair Display", sans-serif;
}
#tlc-chat-widget.tlc-open { display: flex; }
.tlc-chat-header {
    background: #ccb775;
    color: #000;
    padding: 14px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#tlc-chat-close { cursor: pointer; }
.tlc-chat-body { padding: 12px; overflow-y: auto; flex: 1; }
#tlc-chat-messages { display: flex; flex-direction: column; gap: 8px; }
.tlc-message { padding: 10px 12px; border-radius: 8px; max-width: 80%; font-size: 14px; white-space: pre-line; }
.tlc-bot { background: #f1f1f1; }
.tlc-user { background: #ccb775; color: #000; align-self: flex-end; }
.tlc-quick-buttons { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.tlc-quick-btn { border: none; background: #f2f2e6; padding: 6px 10px; border-radius: 6px; cursor: pointer; font-size: 13px; }
.tlc-link-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; margin-bottom: 4px; }
.tlc-link-btn { display: inline-flex; align-items: center; justify-content: center; padding: 8px 12px; border-radius: 8px; background: #e6f2f2; color: #005a5a; text-decoration: none; font-size: 13px; font-weight: 600; transition: opacity 0.2s ease; }
.tlc-link-btn:hover, .tlc-link-btn:focus { opacity: 0.85; text-decoration: none; }
.tlc-link-btn:visited { color: #005a5a; }
.tlc-chat-input { display: flex; border-top: 1px solid #eee; }
.tlc-chat-input input { flex: 1; border: none; padding: 12px; font-size: 14px; }
.tlc-chat-input button { border: none; background: #ccb775; color: #fff; padding: 0 16px; cursor: pointer; }
