.odt-wa-button {
	position: fixed;
	right: var(--odt-wa-right, 24px);
	bottom: var(--odt-wa-bottom, 24px);
	z-index: 9999;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	padding: 0;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.22);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
		linear-gradient(135deg, var(--odt-wa-bg, #25D366), #169c72);
	color: #fff;
	text-decoration: none;
	box-shadow:
		0 12px 24px rgba(7, 20, 31, 0.18),
		0 4px 10px rgba(18, 140, 126, 0.16);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.odt-wa-button::before {
	content: "";
	position: absolute;
	inset: -8px;
	z-index: -2;
	border-radius: inherit;
	background: radial-gradient(circle, rgba(37, 211, 102, 0.18) 0%, rgba(37, 211, 102, 0) 70%);
	animation: odt-wa-pulse 3.4s ease-out infinite;
}

.odt-wa-button::after {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02));
	pointer-events: none;
}

.odt-wa-button:hover,
.odt-wa-button:focus {
	color: #fff;
	transform: translateY(-2px) scale(1.01);
	box-shadow:
		0 16px 28px rgba(7, 20, 31, 0.22),
		0 6px 14px rgba(18, 140, 126, 0.18);
	filter: saturate(1.03);
}

.odt-wa-button__icon {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 999px;
}

.odt-wa-button__icon svg {
	display: block;
	width: 34px;
	height: 34px;
}

.odt-wa-button__label {
	display: none;
}

@keyframes odt-wa-pulse {
	0% {
		transform: scale(0.92);
		opacity: 0.5;
	}
	70% {
		transform: scale(1.08);
		opacity: 0;
	}
	100% {
		transform: scale(1.08);
		opacity: 0;
	}
}

@media (max-width: 767px) {
	.odt-wa-button {
		width: 58px;
		height: 58px;
	}
}
