.rgy-guided-tour-dock {
	transition: top 0.18s ease, bottom 0.18s ease;
}

.rgy-motion-toast {
	position: absolute;
	left: 50%;
	bottom: 18px;
	transform: translateX(-50%) translateY(8px);
	opacity: 0;
	pointer-events: none;
	z-index: 10030;
	max-width: min(360px, calc(100% - 32px));
	padding: 10px 14px;
	border-radius: 14px;
	background: rgba(18, 25, 33, 0.94);
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.rgy-motion-toast.is-visible {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

@media (max-width: 782px) {
	.rgy-motion-toast {
		bottom: 14px;
		max-width: calc(100% - 24px);
		padding: 9px 12px;
	}
}
