.ft1-whatsapp-floating {
	position: fixed;
	bottom: 20px;
	z-index: 99999;
	font-family: Arial, Helvetica, sans-serif;
}

.ft1-whatsapp-floating--right {
	right: 20px;
}

.ft1-whatsapp-floating--left {
	left: 20px;
}

.ft1-whatsapp-main {
	border: 0;
	cursor: pointer;
	background: var(--ft1-wa-color, #25d366);
	color: #fff;
	padding: 14px 18px;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
	font-size: 15px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ft1-whatsapp-main:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.26);
}

.ft1-whatsapp-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.ft1-whatsapp-icon svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.ft1-whatsapp-panel {
	display: none;
	position: absolute;
	bottom: 62px;
	width: 280px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
	overflow: hidden;
}

.ft1-whatsapp-floating--right .ft1-whatsapp-panel {
	right: 0;
}

.ft1-whatsapp-floating--left .ft1-whatsapp-panel {
	left: 0;
}

.ft1-whatsapp-panel.is-open {
	display: block;
}

.ft1-whatsapp-header {
	background: var(--ft1-wa-color-dark, #075e54);
	color: #fff;
	padding: 14px 16px;
	font-weight: 700;
	font-size: 14px;
}

.ft1-whatsapp-option {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	color: #222;
	text-decoration: none;
	border-bottom: 1px solid #eee;
}

.ft1-whatsapp-option:last-child {
	border-bottom: 0;
}

.ft1-whatsapp-option:hover {
	background: #f5f5f5;
}

.ft1-whatsapp-avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	overflow: hidden;
	background: #e8e8e8;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ft1-whatsapp-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ft1-whatsapp-avatar-placeholder {
	font-size: 18px;
	font-weight: 700;
	color: #888;
}

.ft1-whatsapp-info strong {
	display: block;
	font-size: 15px;
}

.ft1-whatsapp-info small {
	display: block;
	font-size: 12px;
	color: #666;
	margin-top: 3px;
}

@media (max-width: 600px) {
	.ft1-whatsapp-floating--right {
		right: 14px;
	}

	.ft1-whatsapp-floating--left {
		left: 14px;
	}

	.ft1-whatsapp-floating {
		bottom: 14px;
	}

	.ft1-whatsapp-panel {
		width: min(260px, calc(100vw - 28px));
	}

	.ft1-whatsapp-text {
		display: none;
	}

	.ft1-whatsapp-main {
		width: 58px;
		height: 58px;
		justify-content: center;
		padding: 0;
	}
}
