.wac-box {
	max-width: 340px;
	font-family: inherit;
	box-sizing: border-box;
}
.wac-box * {
	box-sizing: border-box;
}
.wac-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: var(--wac-brand, #25D366);
	color: #fff;
	padding: 12px 16px;
	border: 0;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	line-height: 1.3;
}
.wac-btn:hover {
	filter: brightness(0.95);
	color: #fff;
}
.wac-icon {
	font-size: 18px;
}
.wac-field {
	width: 100%;
	margin: 6px 0;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 14px;
}
.wac-consent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin: 6px 0 10px;
	font-size: 13px;
	line-height: 1.4;
}
.wac-result {
	font-size: 14px;
	margin: 8px 0 0;
}
.wac-result.is-error {
	color: #b32d2e;
}
.wac-result.is-success {
	color: #0a7d28;
}
.wac-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
	background: #fff;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
	max-width: 320px;
}
