.sucuri-chat {
	--sucuri-chat-color: #14213d;
	position: fixed;
	bottom: 24px;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.sucuri-chat--right {
	right: 24px;
}

.sucuri-chat--left {
	left: 24px;
}

.sucuri-chat--hidden {
	display: none;
}

.sucuri-chat__toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 56px;
	padding: 0 22px 0 24px;
	border-radius: 999px;
	border: none;
	background: var(--sucuri-chat-color);
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(20, 33, 61, 0.35);
	transition: transform 0.15s ease, filter 0.15s ease;
}

.sucuri-chat__toggle:hover {
	transform: scale(1.03);
	filter: brightness(1.1);
}

.sucuri-chat__toggle--icon-only {
	width: 60px;
	height: 60px;
	padding: 0;
	justify-content: center;
}

.sucuri-chat__toggle-text {
	white-space: nowrap;
}

.sucuri-chat__toggle-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.sucuri-chat__toggle-icon::after {
	content: "";
	position: absolute;
	top: -2px;
	right: -2px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #22c55e;
	border: 2px solid var(--sucuri-chat-color);
}

.sucuri-chat__panel {
	position: absolute;
	bottom: 76px;
	width: 300px;
	max-width: calc(100vw - 48px);
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 20px 45px rgba(20, 33, 61, 0.2), 0 2px 8px rgba(20, 33, 61, 0.08);
	overflow: hidden;
}

.sucuri-chat--right .sucuri-chat__panel {
	right: 0;
}

.sucuri-chat--left .sucuri-chat__panel {
	left: 0;
}

.sucuri-chat__panel[hidden] {
	display: none;
}

.sucuri-chat__panel-header {
	background: #008673;
	color: #fff;
	padding: 18px 20px 16px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.sucuri-chat__panel-title {
	font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.sucuri-chat__close {
	background: transparent;
	border: none;
	color: rgba(255, 255, 255, 0.8);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.sucuri-chat__close:hover {
	color: #fff;
}

.sucuri-chat__options {
	padding: 6px 8px;
	display: flex;
	flex-direction: column;
}

.sucuri-chat__option {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid #f0f1f4;
	border-radius: 8px;
	padding: 12px 8px;
	cursor: pointer;
	text-align: left;
	transition: background 0.15s ease;
}

.sucuri-chat__option:last-child {
	border-bottom: none;
}

.sucuri-chat__option:hover {
	background: #f6f8fb;
}

.sucuri-chat__icon {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.sucuri-chat__icon svg {
	width: 100%;
	height: 100%;
}

.sucuri-chat__option-text {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.sucuri-chat__option-text strong {
	font-size: 14px;
	color: #14213d;
}

.sucuri-chat__option-text small {
	font-size: 12px;
	color: #6b7280;
}

.sucuri-chat__option-text small strong,
.sucuri-chat__option-text small b {
	color: #008673;
	font-size: inherit;
}

@media (max-width: 480px) {
	.sucuri-chat--right,
	.sucuri-chat--left {
		right: 16px;
		left: auto;
		bottom: 16px;
	}

	.sucuri-chat__panel {
		right: 0;
		left: auto;
	}
}
