/**
 * NS WhatsApp - Houthandel Jan Sok
 * Zwevende WhatsApp-knop linksonder (desktop + mobiel).
 */

.ns-whatsapp {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25D366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
	z-index: 99990;
	transition: transform 0.15s ease, background 0.15s ease;
}

.ns-whatsapp:hover {
	background: #1ebe5b;
	transform: scale(1.06);
	color: #fff;
}

.ns-whatsapp__icon {
	display: block;
}

/* Subtiele pulse om de aandacht te trekken (1x bij laden) */
.ns-whatsapp::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	animation: ns-whatsapp-pulse 2.4s ease-out 3;
}

@keyframes ns-whatsapp-pulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
	70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Iets kleiner op mobiel, en niet botsen met de cart-knop rechts */
@media screen and (max-width: 800px) {
	.ns-whatsapp {
		width: 50px;
		height: 50px;
		bottom: 20px;
		left: 16px;
	}
	.ns-whatsapp__icon {
		width: 27px;
		height: 27px;
	}
}
