.fc-widget-90e9874c {
	position: fixed;
	bottom: 20px;
	z-index: 999999;
	font-family: sans-serif;
}
.fc-widget-90e9874c.fc-pos-right-90e9874c { right: 20px; }
.fc-widget-90e9874c.fc-pos-left-90e9874c { left: 20px; }

.fc-trigger-90e9874c {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--fc-primary-90e9874c);
	color: #fff;
	border: none;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}
.fc-trigger-90e9874c:hover {
	transform: scale(1.05);
}

.fc-window-90e9874c {
	width: 320px;
	height: 450px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.15);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	margin-bottom: 15px;
	border: 1px solid #eaeaea;
}

.fc-header-90e9874c {
	background-color: var(--fc-primary-90e9874c);
	color: #fff;
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
}

.fc-close-90e9874c {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
	line-height: 1;
}

.fc-body-90e9874c {
	flex: 1;
	padding: 15px;
	overflow-y: auto;
	background: #f9f9f9;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.fc-message-bot-90e9874c, .fc-message-user-90e9874c {
	max-width: 80%;
	padding: 10px 14px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 1.4;
	animation: fcFadeIn 0.3s ease;
}

.fc-message-bot-90e9874c {
	background: #fff;
	color: #333;
	align-self: flex-start;
	border: 1px solid #eee;
	border-bottom-left-radius: 4px;
}

.fc-message-user-90e9874c {
	background: var(--fc-primary-90e9874c);
	color: #fff;
	align-self: flex-end;
	border-bottom-right-radius: 4px;
}

.fc-faq-list-90e9874c {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}

.fc-faq-btn-90e9874c {
	background: #fff;
	border: 1px solid var(--fc-primary-90e9874c);
	color: var(--fc-primary-90e9874c);
	padding: 8px 12px;
	border-radius: 20px;
	font-size: 13px;
	cursor: pointer;
	text-align: left;
	transition: all 0.2s ease;
}
.fc-faq-btn-90e9874c:hover {
	background: var(--fc-primary-90e9874c);
	color: #fff;
}

.fc-typing-90e9874c {
	background: #fff;
	padding: 12px 16px;
	border-radius: 16px;
	border-bottom-left-radius: 4px;
	align-self: flex-start;
	border: 1px solid #eee;
}
.fc-typing-90e9874c span {
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: #999;
	border-radius: 50%;
	margin-right: 4px;
	animation: fcTyping 1.4s infinite ease-in-out both;
}
.fc-typing-90e9874c span:nth-child(1) { animation-delay: -0.32s; }
.fc-typing-90e9874c span:nth-child(2) { animation-delay: -0.16s; }
.fc-typing-90e9874c span:nth-child(3) { margin-right: 0; }

@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); }
}
