/**
 * Placeholder launcher — matches Tawk .tawk-button-circle.tawk-button-large + .tawk-min-chat-icon.
 */
.sf-tawk-launcher {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999998;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--brand-primary);
	color: #fff;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.sf-tawk-launcher .tawk-min-chat-icon {
	display: block;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.sf-tawk-launcher .tawk-min-chat-icon path {
	fill: currentColor;
}

.sf-tawk-launcher:hover,
.sf-tawk-launcher:focus {
	transform: scale(1.05);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
	outline: none;
}

.sf-tawk-launcher:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
