.wlt-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #25D366;
	color: #ffffff;
	text-decoration: none;
	border-radius: 50px;
	padding: 12px 20px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
	z-index: 99999;
	box-sizing: border-box;
}

.wlt-button:hover,
.wlt-button:focus {
	color: #ffffff;
	opacity: 0.92;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.wlt-button svg {
	display: block;
	flex-shrink: 0;
}

.wlt-button .wlt-label {
	line-height: 1.2;
}

.wlt-float {
	position: fixed;
	padding: 14px;
	border-radius: 50%;
}

.wlt-pos-bottom-right {
	bottom: 24px;
	right: 24px;
}

.wlt-pos-bottom-left {
	bottom: 24px;
	left: 24px;
}

.wlt-pos-bottom-center {
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
}

.wlt-pos-bottom-center:hover {
	transform: translateX(-50%) translateY(-2px);
}

.wlt-pos-middle-right {
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
}

.wlt-pos-middle-right:hover {
	transform: translateY(calc(-50% - 2px));
}

.wlt-pos-middle-left {
	top: 50%;
	left: 24px;
	transform: translateY(-50%);
}

.wlt-pos-middle-left:hover {
	transform: translateY(calc(-50% - 2px));
}

.wlt-pos-top-right {
	top: 24px;
	right: 24px;
}

.wlt-pos-top-left {
	top: 24px;
	left: 24px;
}

.wlt-float .wlt-label {
	display: none;
}

.wlt-float::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: inherit;
	animation: wlt-pulse 2s infinite;
	z-index: -1;
}

.wlt-float:hover::before {
	animation-play-state: paused;
}

@keyframes wlt-pulse {
	0% {
		transform: scale(1);
		opacity: 0.6;
	}
	70% {
		transform: scale(1.45);
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

.wlt-float::after {
	content: attr(data-wlt-tooltip);
	position: absolute;
	right: calc(100% + 10px);
	top: 50%;
	transform: translateY(-50%) translateX(4px);
	background: #1f2430;
	color: #ffffff;
	padding: 7px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease, transform 0.15s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.wlt-pos-bottom-left::after,
.wlt-pos-middle-left::after {
	right: auto;
	left: calc(100% + 10px);
}

.wlt-pos-bottom-center::after {
	right: auto;
	left: 50%;
	top: auto;
	bottom: calc(100% + 10px);
	transform: translateX(-50%);
}

.wlt-pos-bottom-center:hover::after,
.wlt-pos-bottom-center:focus::after {
	transform: translateX(-50%);
}

.wlt-pos-top-right::after,
.wlt-pos-top-left::after {
	right: auto;
	left: 50%;
	top: calc(100% + 10px);
	bottom: auto;
	transform: translateX(-50%);
}

.wlt-pos-top-right:hover::after,
.wlt-pos-top-right:focus::after,
.wlt-pos-top-left:hover::after,
.wlt-pos-top-left:focus::after {
	transform: translateX(-50%);
}

.wlt-float:hover::after,
.wlt-float:focus::after {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.wlt-woo {
	margin-top: 10px;
}

.wlt-woo-full {
	display: flex;
	width: 100%;
	justify-content: center;
}

ul.products li.product > .wlt-woo,
.woocommerce-loop-product__buttons > .wlt-woo {
	display: flex;
	width: 100%;
	justify-content: center;
}

@media (max-width: 480px) {
	.wlt-pos-bottom-right,
	.wlt-pos-middle-right {
		right: 18px;
	}

	.wlt-pos-bottom-left,
	.wlt-pos-middle-left {
		left: 18px;
	}

	.wlt-pos-bottom-center,
	.wlt-pos-top-right,
	.wlt-pos-top-left {
		bottom: 18px;
	}

	.wlt-pos-bottom-center {
		right: auto;
		left: 50%;
	}

	.wlt-pos-top-right {
		top: 18px;
		right: 18px;
	}

	.wlt-pos-top-left {
		top: 18px;
		left: 18px;
	}
}
