.bbv-bot-root {
	position: fixed;
	bottom: 22px;
	right: 22px;
	z-index: 999998;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.bbv-bot-toggle {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: linear-gradient(120deg, #ffd54f, #f1c40f);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	transition: transform 0.15s ease;
}
.bbv-bot-toggle:hover { transform: scale(1.06); }

.bbv-bot-panel {
	position: absolute;
	bottom: 72px;
	right: 0;
	width: 330px;
	max-width: calc(100vw - 32px);
	max-height: 480px;
	background: #150b22;
	border: 1px solid #2e2140;
	border-radius: 16px;
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
	display: none;
	flex-direction: column;
	overflow: hidden;
}
.bbv-bot-panel.bbv-bot-open { display: flex; }

.bbv-bot-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: linear-gradient(120deg, #1a0e2e, #0d0715);
	border-bottom: 1px solid #2e2140;
}
.bbv-bot-title { font-size: 14px; font-weight: 800; color: #ffd54f; }
.bbv-bot-subtitle { font-size: 11px; color: #a89bc2; display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.bbv-bot-dot { width: 6px; height: 6px; border-radius: 50%; background: #3ddc84; display: inline-block; }
.bbv-bot-close {
	background: none; border: none; color: #a89bc2; font-size: 15px; cursor: pointer; padding: 4px;
}
.bbv-bot-close:hover { color: #f3eefc; }

.bbv-bot-messages {
	flex: 1;
	overflow-y: auto;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-height: 140px;
	max-height: 240px;
}
.bbv-bot-msg {
	max-width: 88%;
	padding: 9px 12px;
	border-radius: 12px;
	font-size: 13px;
	line-height: 1.5;
}
.bbv-bot-msg-bot {
	background: #211436;
	color: #f3eefc;
	border: 1px solid #2e2140;
	align-self: flex-start;
	border-bottom-left-radius: 4px;
}
.bbv-bot-msg-user {
	background: linear-gradient(120deg, #ffd54f, #f1c40f);
	color: #14140f;
	font-weight: 600;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}

.bbv-bot-quick {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 0 14px 10px;
}
.bbv-bot-chip {
	background: #211436;
	border: 1px solid #2e2140;
	color: #c9c2d6;
	font-size: 11px;
	padding: 6px 10px;
	border-radius: 20px;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease;
}
.bbv-bot-chip:hover { border-color: #ffd54f; color: #ffd54f; }

.bbv-bot-form {
	display: flex;
	gap: 8px;
	padding: 12px 14px;
	border-top: 1px solid #2e2140;
}
.bbv-bot-input {
	flex: 1;
	background: #0d0715;
	border: 1px solid #2e2140;
	color: #f3eefc;
	font-size: 13px;
	padding: 9px 12px;
	border-radius: 20px;
	outline: none;
}
.bbv-bot-input::placeholder { color: #6b6178; }
.bbv-bot-send {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: linear-gradient(120deg, #ffd54f, #f1c40f);
	color: #14140f;
	font-size: 14px;
	cursor: pointer;
	flex: 0 0 36px;
}

@media (max-width: 480px) {
	.bbv-bot-root { bottom: 16px; right: 16px; }
	.bbv-bot-panel { width: calc(100vw - 32px); bottom: 68px; }
}
