/* SWEETS PAIR: Guided Tour styles */
.tour-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 10000;
	display: none;
}
.tour-overlay[aria-hidden="false"] {
	display: block;
}
.tour-highlight {
	position: fixed;
	border: 2px solid #ffffff;
	border-radius: 14px;
	box-shadow:
		0 0 0 2px rgba(255,255,255,0.25) inset,
		0 8px 30px rgba(0,0,0,0.45),
		0 0 0 9999px rgba(0,0,0,0.55);
	pointer-events: none;
	transition: left .2s ease, top .2s ease, width .2s ease, height .2s ease, border-radius .2s ease;
}
.tour-popover {
	position: fixed;
	max-width: min(88vw, 360px);
	background: rgba(16,18,24,0.96);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 14px 14px 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	transition: transform .2s ease, opacity .2s ease;
}
.tour-popover[data-enter="true"] {
	transform: translateY(0);
	opacity: 1;
}
.tour-popover h3 {
	margin: 0 0 6px;
	font-size: 16px;
	line-height: 1.35;
}
.tour-popover p {
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.5;
	color: #dfe7ff;
}
.tour-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.tour-nav .spacer {
	flex: 1;
}
.tour-btn {
	appearance: none;
	border: 1px solid rgba(255,255,255,0.18);
	background: rgba(255,255,255,0.06);
	color: #fff;
	padding: 8px 12px;
	border-radius: 8px;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
}
.tour-btn.primary {
	border-color: #6ea8ff;
	background: #2b64ff;
}
.tour-btn:disabled {
	opacity: .6;
	cursor: default;
}
.tour-dots {
	display: flex;
	gap: 6px;
	align-items: center;
	justify-content: center;
	margin-right: auto;
	margin-left: 8px;
}
.tour-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: rgba(255,255,255,0.35);
}
.tour-dot[aria-current="true"] {
	background: #ffffff;
}

/* Mobile tuning */
@media (max-width: 480px) {
	.tour-popover {
		max-width: min(92vw, 360px);
		padding: 12px 12px 8px;
	}
	.tour-popover h3 { font-size: 15px; }
	.tour-popover p { font-size: 13px; }
	.tour-btn { padding: 8px 10px; font-size: 13px; }
}

/* Scroll lock */
body.tour-lock {
	overflow: hidden;
	touch-action: none;
}




