.naz716-sticky-cta {
	position: fixed;
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.naz716-sticky-cta.is-visible {
	opacity: 1;
	pointer-events: auto;
}

.naz716-sticky-cta__inner {
	display: flex;
	gap: 0.55rem;
}

.naz716-sticky-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 0.95rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.9rem;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.naz716-sticky-cta__btn--tour {
	background: #0a7f4f;
	color: #fff;
}

.naz716-sticky-cta__btn--tour:hover,
.naz716-sticky-cta__btn--tour:focus {
	background: #086b42;
	color: #fff;
	text-decoration: none;
}

.naz716-sticky-cta__btn--apply {
	background: #0052cc;
	color: #fff;
}

.naz716-sticky-cta__btn--apply:hover,
.naz716-sticky-cta__btn--apply:focus {
	background: #003f9d;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 900px) {
	.naz716-sticky-cta {
		left: 0.75rem;
		right: 0.75rem;
		bottom: 0.75rem;
		transform: translateY(12px);
	}

	.naz716-sticky-cta.is-visible {
		transform: translateY(0);
	}

	.naz716-sticky-cta__inner {
		background: rgba(255, 255, 255, 0.96);
		border: 1px solid #d8e0ea;
		border-radius: 12px;
		padding: 0.5rem;
		box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
	}

	.naz716-sticky-cta__btn {
		flex: 1 1 50%;
	}
}

@media (min-width: 901px) {
	.naz716-sticky-cta {
		right: 1rem;
		bottom: 1.4rem;
		transform: translateY(16px);
	}

	.naz716-sticky-cta.is-visible {
		transform: translateY(0);
	}
}

