#rwai-widget-root {
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

#rwai-toggle-btn {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	background: var(--rwai-color, #c0392b);
	color: #fff;
	font-size: 26px;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(0,0,0,0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.15s ease;
}
#rwai-toggle-btn:hover {
	transform: scale(1.06);
}

#rwai-chat-window {
	position: absolute;
	bottom: 76px;
	right: 0;
	width: 340px;
	max-width: 90vw;
	height: 460px;
	max-height: 70vh;
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 28px rgba(0,0,0,0.28);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

#rwai-chat-header {
	background: var(--rwai-color, #c0392b);
	color: #fff;
	padding: 14px 16px;
	font-weight: 600;
	font-size: 15px;
}

#rwai-chat-messages {
	flex: 1;
	overflow-y: auto;
	padding: 12px;
	background: #f7f7f8;
}

.rwai-msg {
	max-width: 82%;
	margin-bottom: 10px;
	padding: 9px 12px;
	border-radius: 12px;
	font-size: 13.5px;
	line-height: 1.4;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.rwai-msg.rwai-bot {
	background: #ffffff;
	border: 1px solid #e6e6e6;
	color: #222;
	margin-right: auto;
	border-bottom-left-radius: 2px;
}

.rwai-msg.rwai-user {
	background: var(--rwai-color, #c0392b);
	color: #fff;
	margin-left: auto;
	border-bottom-right-radius: 2px;
}

.rwai-msg.rwai-typing {
	font-style: italic;
	color: #888;
	background: transparent;
	border: none;
	padding: 0 4px;
}

#rwai-lead-form {
	padding: 10px 12px;
	background: #fff8f6;
	border-top: 1px solid #eee;
	font-size: 13px;
}
#rwai-lead-form p {
	margin: 0 0 8px 0;
	color: #444;
}
#rwai-lead-form input {
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 6px;
	padding: 8px 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 13px;
}
#rwai-lead-form button {
	padding: 7px 14px;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	font-size: 13px;
	margin-right: 6px;
}
#rwai-lead-submit {
	background: var(--rwai-color, #c0392b);
	color: #fff;
}
#rwai-lead-skip {
	background: #eee;
	color: #333;
}

#rwai-chat-input-row {
	display: flex;
	border-top: 1px solid #eee;
	padding: 8px;
	background: #fff;
}
#rwai-chat-input {
	flex: 1;
	border: 1px solid #ddd;
	border-radius: 20px;
	padding: 9px 14px;
	font-size: 13.5px;
	outline: none;
}
#rwai-chat-send {
	margin-left: 8px;
	border: none;
	background: var(--rwai-color, #c0392b);
	color: #fff;
	border-radius: 20px;
	padding: 0 16px;
	cursor: pointer;
	font-size: 13.5px;
}

@media (max-width: 480px) {
	#rwai-chat-window {
		width: 92vw;
		right: -8px;
	}
}
