#sc-chat-widget {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 99998;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	font-family: var( --porto-body-ff, inherit );
}

.sc-chat-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #1a1a1a;
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 14px 22px;
	cursor: pointer;
	font-family: inherit;
	font-size: 12px;
	letter-spacing: 2px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
	transition: transform 0.2s ease;
}

.sc-chat-toggle:hover {
	transform: translateY(-2px);
}

.sc-chat-icon-close {
	display: none;
}

.sc-chat-toggle.is-open .sc-chat-icon-open {
	display: none;
}

.sc-chat-toggle.is-open .sc-chat-icon-close {
	display: block;
}

.sc-chat-panel {
	width: 300px;
	max-width: calc(100vw - 48px);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
	padding: 24px 22px;
	margin-bottom: 14px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.sc-chat-panel.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.sc-chat-panel-label {
	font-size: 11px;
	letter-spacing: 2px;
	color: #999;
	margin-bottom: 10px;
}

.sc-chat-panel-text {
	font-size: 14px;
	line-height: 1.5;
	color: #333;
	margin: 0 0 18px;
}

.sc-chat-option {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 2px;
	text-decoration: none;
	color: #1a1a1a;
	border-bottom: 1px solid #eee;
	transition: color 0.2s ease;
}

.sc-chat-option:last-of-type {
	border-bottom: 0;
}

.sc-chat-option svg {
	flex-shrink: 0;
	color: #b9ac8f;
}

.sc-chat-option-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.sc-chat-option:hover {
	color: #b9ac8f;
}

.sc-chat-option-label {
	font-size: 14px;
	font-weight: 600;
}

.sc-chat-option-value {
	font-size: 13px;
	color: #888;
}

.sc-chat-option:hover .sc-chat-option-value {
	color: inherit;
}

@media (max-width: 480px) {
	#sc-chat-widget {
		right: 16px;
		bottom: 16px;
	}
	.sc-chat-toggle-label {
		display: none;
	}
	.sc-chat-toggle {
		padding: 14px;
	}
}
