.wct-btn {
	--wct-color: #25D366;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	font-weight: 600;
	line-height: 1;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.wct-btn:hover {
	opacity: 0.92;
}

/* Inline (shortcode) button */
.wct-btn--inline {
	background: var(--wct-color);
	color: #fff;
	padding: 12px 20px;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.wct-btn--inline:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wct-btn--inline .wct-icon {
	display: inline-flex;
}

/* Floating site-wide button */
.wct-btn--floating {
	position: fixed;
	z-index: 9999;
	bottom: 24px;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: var(--wct-color);
	color: #fff;
	justify-content: center;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.wct-btn--floating svg {
	width: 30px;
	height: 30px;
}

.wct-btn--floating:hover {
	transform: scale(1.06);
}

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

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

@media (max-width: 480px) {
	.wct-btn--floating {
		width: 52px;
		height: 52px;
		bottom: 16px;
	}
	.wct-pos-bottom-right {
		right: 16px;
	}
	.wct-pos-bottom-left {
		left: 16px;
	}
}
