.wmls-widget {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
	font-family: Arial, sans-serif;
}

.wmls-widget-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wmls-widget-toggle:hover,
.wmls-widget-toggle:focus {
	background: #1ebe5d;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
	transform: translateY(-1px);
	outline: none;
}

.wmls-widget-toggle:focus-visible {
	outline: 3px solid rgba(37, 211, 102, 0.35);
	outline-offset: 4px;
}

.wmls-widget-toggle svg {
	width: 34px;
	height: 34px;
	fill: currentColor;
}

.wmls-widget-panel {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: min(260px, calc(100vw - 40px));
	padding: 12px;
	border-radius: 10px;
	background: #ffffff;
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.wmls-widget-panel[hidden] {
	display: none;
}

.wmls-widget-heading {
	margin: 0 0 2px;
	color: #222222;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.wmls-whatsapp-button {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	padding: 9px 11px;
	border: 1px solid #eeeeee;
	border-radius: 8px;
	background: #f8f9f8;
	color: #222222;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
	transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wmls-whatsapp-button:hover,
.wmls-whatsapp-button:focus {
	border-color: #d7f3df;
	background: #effaf2;
	color: #111111;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transform: translateY(-1px);
	text-decoration: none;
}

.wmls-button-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #25d366;
	color: #ffffff;
}

.wmls-button-icon svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

@media (max-width: 480px) {
	.wmls-widget {
		right: 12px;
		bottom: 12px;
		align-items: flex-end;
	}

	.wmls-widget-panel {
		width: min(260px, calc(100vw - 24px));
	}

	.wmls-widget-toggle {
		width: 58px;
		height: 58px;
	}
}
