/* Homepage tour promo popup — Baysal Sağlık */
.baysal-tour-popup {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(10px, 2.5vw, 24px);
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.baysal-tour-popup.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.baysal-tour-popup__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(8, 12, 20, 0.75);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	cursor: pointer;
}

.baysal-tour-popup__dialog {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
}

.baysal-tour-popup__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 3;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: #0f172a;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
	transition: transform 0.2s ease, background 0.2s ease;
}

.baysal-tour-popup__close:hover,
.baysal-tour-popup__close:focus {
	background: #1e293b;
	transform: scale(1.06);
	outline: none;
}

.baysal-tour-popup__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	padding: 12px;
	padding-top: 52px;
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 245, 249, 0.92));
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.5),
		0 20px 55px rgba(0, 0, 0, 0.48);
	box-sizing: border-box;
	overflow: hidden;
}

.baysal-tour-popup__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border-radius: 20px;
	overflow: hidden;
	line-height: 0;
}

.baysal-tour-popup__image {
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 20px;
	background: #fff;
}

@media (max-width: 640px) {
	.baysal-tour-popup {
		padding: 8px;
	}

	.baysal-tour-popup__close {
		width: 40px;
		height: 40px;
		font-size: 24px;
	}

	.baysal-tour-popup__frame {
		padding: 8px;
		padding-top: 48px;
		border-radius: 22px;
	}

	.baysal-tour-popup__link,
	.baysal-tour-popup__image {
		border-radius: 16px;
	}
}

body.baysal-tour-popup-lock {
	overflow: hidden;
}
