.bwm-button-wrap {
	box-sizing: border-box;
	margin: 1rem 0;
	max-width: 100%;
}

.bwm-button {
	align-items: center;
	background-color: var(--bwm-button-color, #25d366);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
	box-sizing: border-box;
	color: var(--bwm-text-color, #fff) !important;
	display: inline-flex;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 700;
	gap: 0.65rem;
	justify-content: center;
	line-height: 1.2;
	min-height: 48px;
	padding: 0.8rem 1.25rem;
	text-align: center;
	text-decoration: none !important;
	transition: filter 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.bwm-button:hover {
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
	color: var(--bwm-text-color, #fff) !important;
	filter: brightness(0.94);
	transform: translateY(-1px);
}

.bwm-button:focus-visible {
	outline: 3px solid currentColor;
	outline-offset: 3px;
}

.bwm-button:active {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	transform: translateY(0);
}

.bwm-button__icon {
	flex: 0 0 1.5rem;
	height: 1.5rem;
	width: 1.5rem;
}

@media (max-width: 600px) {
	.bwm-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bwm-button {
		transition: none;
	}
}

