/* ==========================================================================
   Floating CTA buttons — phone + WhatsApp
   Stacked vertically; position driven by data-corner + CSS vars.
   ========================================================================== */

.ft-cta-float {
	position: fixed;
	z-index: 1050;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.ft-cta-float[data-corner="bottom-left"] {
	left: var(--ft-cta-offset-x);
	bottom: var(--ft-cta-offset-y);
}

.ft-cta-float[data-corner="bottom-right"] {
	right: var(--ft-cta-offset-x);
	bottom: var(--ft-cta-offset-y);
}

.ft-cta-float[data-corner="top-left"] {
	left: var(--ft-cta-offset-x);
	top: var(--ft-cta-offset-y);
}

.ft-cta-float[data-corner="top-right"] {
	right: var(--ft-cta-offset-x);
	top: var(--ft-cta-offset-y);
}

/* Button */

.ft-cta-float__btn {
	width: 52px;
	height: 52px;
	border-radius: 999px;
	background: var(--ft-cta-btn-bg);
	color: var(--ft-cta-btn-color);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .22);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease;
	flex-shrink: 0;
}

.ft-cta-float__btn:hover {
	transform: scale(1.08) translateY(-2px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
	color: var(--ft-cta-btn-color);
}

.ft-cta-float__btn:focus-visible {
	outline: 3px solid var(--ft-cta-btn-color);
	outline-offset: 3px;
	transform: scale(1.06);
}

.ft-cta-float__icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.ft-cta-float__icon svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
	display: block;
}

/* Mobile: tighten offsets */

@media (max-width: 768px) {
	.ft-cta-float {
		--ft-cta-offset-x: 12px;
		--ft-cta-offset-y: 12px;
	}

	.ft-cta-float__btn {
		width: 48px;
		height: 48px;
	}

	.ft-cta-float__icon svg {
		width: 22px;
		height: 22px;
	}
}
