.fc-container-462e9c55 {
	position: fixed;
	z-index: 999999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.fc-bubble-462e9c55 {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--fc-primary-462e9c55);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	transition: transform 0.3s ease;
}
.fc-bubble-462e9c55:hover {
	transform: scale(1.05);
}
.fc-popup-462e9c55 {
	width: 320px;
	max-height: 500px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.fc-header-462e9c55 {
	background-color: var(--fc-primary-462e9c55);
	color: #fff;
	padding: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
}
.fc-close-btn-462e9c55 {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}
.fc-body-462e9c55 {
	padding: 16px;
	flex-grow: 1;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #f9f9f9;
	max-height: 300px;
}
.fc-message-462e9c55 {
	padding: 10px 14px;
	border-radius: 12px;
	max-width: 85%;
	font-size: 14px;
	line-height: 1.4;
	animation: fcFadeIn 0.3s ease;
}
.fc-bot-462e9c55 {
	background: #fff;
	color: #333;
	align-self: flex-start;
	border: 1px solid #eee;
	border-bottom-left-radius: 2px;
}
.fc-user-462e9c55 {
	background: var(--fc-primary-462e9c55);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 2px;
}
.fc-footer-462e9c55 {
	padding: 12px;
	background: #fff;
	border-top: 1px solid #eee;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.fc-faq-btn-462e9c55 {
	background: #f0f0f0;
	border: 1px solid #ddd;
	padding: 6px 12px;
	border-radius: 16px;
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
	color: #333;
}
.fc-faq-btn-462e9c55:hover {
	background: var(--fc-primary-462e9c55);
	color: #fff;
	border-color: var(--fc-primary-462e9c55);
}
.fc-typing-462e9c55 {
	display: flex;
	gap: 4px;
	padding: 12px 14px;
}
.fc-typing-dot-462e9c55 {
	width: 6px;
	height: 6px;
	background: #999;
	border-radius: 50%;
	animation: fcTyping 1.4s infinite ease-in-out both;
}
.fc-typing-dot-462e9c55:nth-child(1) { animation-delay: -0.32s; }
.fc-typing-dot-462e9c55:nth-child(2) { animation-delay: -0.16s; }

@keyframes fcTyping {
	0%, 80%, 100% { transform: scale(0); }
	40% { transform: scale(1); }
}
@keyframes fcFadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}