/* Beswim - kayan WhatsApp + Arama butonlari */
.beswim-sticky-actions {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}

.beswim-sticky-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	text-decoration: none;
}

.beswim-sticky-btn svg {
	width: 28px;
	height: 28px;
	fill: #ffffff;
}

.beswim-sticky-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.beswim-sticky-call {
	background-color: #002d67;
}

.beswim-sticky-whatsapp {
	background-color: #25d366;
	position: relative;
}

.beswim-sticky-whatsapp::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background-color: #25d366;
	opacity: 0.55;
	animation: beswim-pulse 2.2s ease-out infinite;
	z-index: -1;
}

@keyframes beswim-pulse {
	0% {
		transform: scale(1);
		opacity: 0.55;
	}
	100% {
		transform: scale(1.9);
		opacity: 0;
	}
}

@media (max-width: 767px) {
	.beswim-sticky-actions {
		right: 14px;
		bottom: 14px;
		gap: 10px;
	}

	.beswim-sticky-btn {
		width: 50px;
		height: 50px;
	}

	.beswim-sticky-btn svg {
		width: 24px;
		height: 24px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.beswim-sticky-whatsapp::before {
		animation: none;
		display: none;
	}
}
