/* ─── WhatsApp floating button ─── */
.pp-whatsapp-float {
	position: fixed;
	bottom: 28px;
	right: 28px;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: #25D366;
	border-radius: 50%;
	box-shadow: 0 4px 16px rgba(0,0,0,.25);
	transition: transform .2s ease, box-shadow .2s ease;
	text-decoration: none;
}

.pp-whatsapp-float:hover,
.pp-whatsapp-float:focus {
	transform: scale(1.1);
	box-shadow: 0 6px 24px rgba(0,0,0,.30);
	outline: none;
}

.pp-whatsapp-float svg {
	width: 32px;
	height: 32px;
	fill: #fff;
	display: block;
}

@media (max-width: 600px) {
	.pp-whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 18px;
		right: 18px;
	}
	.pp-whatsapp-float svg {
		width: 27px;
		height: 27px;
	}
}
