/* Product Tour — front-end */
.prodtour-root {
	--pt-accent: #1868da;
	--pt-pop-edge: var(--pt-accent);
	--pt-arrow-color: var(--pt-pop-edge);
	--pt-pop-bg: #fff;
	--pt-pop-badge-soft: var(--pt-accent-soft);
	--pt-accent-soft: rgba(24, 104, 218, .08);
	--pt-sheet-h: 260px;
	--pt-shell-pad-x: 12px;
	--pt-shell-pad-y: 24px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #111;
	position: relative;
	width: 100%;
	max-width: 100%;
}

.prodtour-root *, .prodtour-root *::before, .prodtour-root *::after { box-sizing: border-box; }

/* Tour session — styles/scripts only affect the page while tour is open */
html:not(.pt-tour-open) .prodtour-root.is-popup .pt-shell,
html:not(.pt-tour-open) .prodtour-root.is-popup .pt-overlay,
html:not(.pt-tour-open) .prodtour-root.is-popup .pt-pop,
html:not(.pt-tour-open) .prodtour-root.is-popup .pt-stage,
html:not(.pt-tour-open) .prodtour-root.is-popup .pt-sbf-wrap,
.prodtour-root.is-popup.pt-closing {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

/* launch button (popup mode, rendered inline) */
.prodtour-launch {
	display: inline-flex; align-items: center; gap: 6px;
	background: var(--pt-accent); color: #fff; border: none;
	padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600;
	cursor: pointer; font-family: inherit; transition: filter .12s;
}
.prodtour-launch:hover { filter: brightness(.92); }

.pt-overlay.pt-intro-locked {
	cursor: default;
}
.pt-overlay.pt-intro-locked .pt-overlay-card {
	pointer-events: auto;
}

.prodtour-root--host {
	display: block;
	height: 0;
	min-height: 0;
	overflow: visible;
	margin: 0;
	padding: 0;
	border: 0;
}
.prodtour-root--host.is-inline .pt-stage,
.prodtour-root--host.is-inline .pt-sbf-wrap {
	display: none !important;
}
#prodtour-footer-portal {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.prodtour-root--live {
	height: auto;
	min-height: 0;
}
/* Portaled popup host — full viewport only while tour is open */
body > .prodtour-root.is-popup.prodtour-root--live:not(.pt-popup-active) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	inset: auto !important;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	visibility: hidden;
	pointer-events: none;
	z-index: -1;
}
body > .prodtour-root.is-popup.prodtour-root--live.pt-popup-active {
	position: fixed;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	z-index: 99989;
	visibility: visible;
	pointer-events: auto;
	background: rgba(17, 24, 39, .6);
    backdrop-filter: blur(2px);

}
.prodtour-trigger {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	display: inline-block;
}
button.prodtour-trigger {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	font: inherit;
	line-height: inherit;
	text-align: inherit;
	-webkit-appearance: none;
	appearance: none;
}
button.prodtour-trigger:focus {
	outline: none;
}
button.prodtour-trigger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}
/* "Take the tour" link inner — layout classes applied dynamically via JS */
.prodtour-link-inner {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}
.prodtour-trigger .prodtour-link-inner.flex,
.prodtour-link-inner.flex {
	display: flex;
	align-items: center;
}
.prodtour-trigger .items-center,
.prodtour-link-inner.items-center { align-items: center; }
.prodtour-trigger .gap-2,
.prodtour-link-inner.gap-2 { gap: 0.5rem; }
.prodtour-trigger .font-semibold,
.prodtour-link-inner.font-semibold { font-weight: 600; }
.prodtour-trigger .text-sm,
.prodtour-link-inner.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.prodtour-trigger .w-4,
.prodtour-link-inner .w-4 { width: 1rem; }
.prodtour-trigger .h-4,
.prodtour-link-inner .h-4 { height: 1rem; }
.prodtour-trigger .arrow-move,
.prodtour-link-inner .arrow-move {
	flex-shrink: 0;
	transition: transform .2s ease;
}
.prodtour-trigger:hover .arrow-move { transform: translateX(3px); }

/* Link colors — class on anchor, never inline style on inner (e.g. .pt-link-60a5fa) */

/* full-screen popup shell */
.prodtour-root .pt-shell-tour-fit {
	flex-shrink: 0;
	position: relative;
	width: auto;
	max-width: min(100%, var(--pt-tour-width, 100%));
	background: #EBF4FE;
	border-radius: 10px;
    outline: 8px solid #ffffff54;
}
.prodtour-root .main-tour {
	display: flex;
	flex-direction: column;
	width: auto;
	max-width: min(100%, var(--pt-tour-width, 100%));
	margin: 0;
	flex-shrink: 0;
}
.prodtour-root .pt-shell-title {
	display: none;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	margin: 0;
}
.prodtour-root .pt-shell.pt-has-page-title .pt-shell-title {
	display: block;
}
.prodtour-root .pt-tour-header {
	background: #f3f4f6;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid #e5e7eb;
	padding: 10px 14px;
	user-select: none;
}
.prodtour-root .pt-tour-header-bar {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 32px;
}
.prodtour-root .pt-tour-header-lights {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-shrink: 0;
}
.prodtour-root .pt-light {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: block;
}
.prodtour-root .pt-light-close {
	background: #ff5f57;
	border: 0;
	padding: 0;
	cursor: pointer;
}
.prodtour-root .pt-light-min { background: #febc2e; }
.prodtour-root .pt-light-max { background: #28c840; }
.prodtour-root .pt-tour-header-search {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	padding: 0 16px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 999px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .04);
}
.prodtour-root .pt-tour-header-search-text {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	color: #374151;
	line-height: 1.3;
}
.prodtour-root .pt-tour-header-fullscreen {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: none;
	border-radius: 8px;
	background: transparent;
	color: #6b7280;
	cursor: pointer;
	transition: background .15s ease, color .15s ease;
}
.prodtour-root .pt-tour-header-fullscreen:hover {
	background: rgba(0, 0, 0, .06);
	color: #374151;
}
.prodtour-root .pt-tour-header-fullscreen.is-active {
	color: #1B6EF3;
}
.prodtour-root .pt-shell {
	position: fixed; inset: 0; z-index: 99990;
	background: rgba(17,24,39,.6); backdrop-filter: blur(2px);
	display: none; align-items: center; justify-content: center;
	padding: var(--pt-shell-pad-y, 48px) var(--pt-shell-pad-x, 24px);
	box-sizing: border-box;
	overflow: hidden;
}
/* Fullscreen — same visuals as normal popup; only width/height differ (set in JS) */
.prodtour-root .pt-shell.pt-shell-fullscreen,
.prodtour-root .pt-shell.pt-shell-fullscreen.show,
.prodtour-root .pt-shell.pt-shell-fullscreen.pt-has-page-title.show {
	align-items: center;
	justify-content: center;
	overflow: hidden !important;
}
.prodtour-root.pt-tour-fullscreen:not(.pt-layout-stacked) .pt-shell.pt-shell-fullscreen,
.prodtour-root.pt-tour-fullscreen:not(.pt-layout-stacked) .pt-shell.pt-shell-fullscreen.show,
.prodtour-root.pt-tour-fullscreen:not(.pt-layout-stacked) .pt-shell.pt-shell-fullscreen.pt-has-page-title.show {
	padding: var(--pt-shell-pad-y, 8px) 0 !important;
}
.prodtour-root .pt-shell.pt-shell-fullscreen.pt-has-page-title.show {
	justify-content: center;
}
/* Fullscreen + responsive stacked: same card layout as non-fullscreen mobile */
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-shell.pt-shell-fullscreen .main-tour {
	display: flex !important;
	flex-direction: column;
}
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-shell.pt-shell-fullscreen .pt-shell-inner {
	flex: 1 1 auto;
	display: flex !important;
	flex-direction: column;
	max-height: none !important;
	overflow: hidden;
}
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-stage,
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-step-stack {
	display: flex !important;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
}
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-step-stack {
	gap: 10px;
	flex: 1 1 auto;
}
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-img-wrap {
	flex: 0 0 auto;
	border-radius: 12px;
	box-shadow: var(--pt-stack-shadow, 0 10px 36px rgba(15, 23, 42, .14));
}
.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-pop.pt-pop-stacked {
	position: relative !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	width: 100% !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: none !important;
	display: flex !important;
	margin: 0;
	border-radius: 12px;
	background: var(--pt-pop-bg, #fff);
	border: 1px solid var(--pt-pop-edge, var(--pt-accent, #1B6EF3));
	box-shadow: var(--pt-stack-shadow, 0 10px 36px rgba(15, 23, 42, .14));
	flex-shrink: 0;
}
/* Fullscreen desktop only: floating step pop */
@media (min-width: 768px) {
	.prodtour-root.pt-tour-fullscreen:not(.pt-layout-stacked) .pt-pop.show {
		display: flex !important;
		z-index: 100002;
	}
}
/* Native browser tab fullscreen — hide page chrome, tour fills monitor */
html:fullscreen,
html:-webkit-full-screen {
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
	background: #111827;
}
html.pt-tour-browser-fullscreen body {
	overflow: hidden !important;
	margin: 0;
	padding: 0;
}
html.pt-tour-browser-fullscreen body > *:not(.prodtour-root):not(booking-modal-box):not(.pt-overlay-portaled) {
	display: none !important;
}
html.pt-tour-browser-fullscreen body > booking-modal-box,
html:fullscreen body > booking-modal-box,
html:-webkit-full-screen body > booking-modal-box,
html.pt-tour-browser-fullscreen.pt-booking-intentional .prodtour-root booking-modal-box:not([data-pt-tour-suppressed="1"]),
html:fullscreen.pt-booking-intentional .prodtour-root booking-modal-box:not([data-pt-tour-suppressed="1"]) {
	z-index: 2147483647 !important;
}
html.pt-tour-open:not(.pt-booking-intentional) booking-modal-box {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
	opacity: 0 !important;
}
html.pt-tour-browser-fullscreen.pt-booking-intentional.pt-booking-modal-active booking-modal-box:not([data-pt-tour-suppressed="1"]),
html:fullscreen.pt-booking-intentional.pt-booking-modal-active booking-modal-box:not([data-pt-tour-suppressed="1"]),
html:-webkit-full-screen.pt-booking-intentional.pt-booking-modal-active booking-modal-box:not([data-pt-tour-suppressed="1"]) {
	visibility: visible !important;
	pointer-events: auto !important;
	opacity: 1 !important;
}
html.pt-tour-overlay-active booking-modal-box,
html.pt-tour-overlay-active body > booking-modal-box {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
booking-modal-box[data-pt-tour-suppressed="1"] {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
	opacity: 0 !important;
}
html.pt-tour-browser-fullscreen .prodtour-root.is-popup {
	position: fixed !important;
	inset: 0 !important;
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	max-height: none !important;
	z-index: 2147483646 !important;
}
html.pt-tour-browser-fullscreen .prodtour-root:not(.pt-layout-stacked) .pt-shell.pt-shell-fullscreen,
html.pt-tour-browser-fullscreen .prodtour-root:not(.pt-layout-stacked) .pt-shell.pt-shell-fullscreen.show,
html.pt-tour-browser-fullscreen .prodtour-root:not(.pt-layout-stacked) .pt-shell.pt-shell-fullscreen.pt-has-page-title.show {
	padding: var(--pt-shell-pad-y, 8px) 0 !important;
}
/* Demo / welcome overlays above fullscreen shell */
html.pt-tour-overlay-active .prodtour-root .pt-shell,
html.pt-tour-overlay-active .prodtour-root .pt-pop {
	pointer-events: none !important;
}
html.pt-tour-overlay-active .prodtour-root .pt-overlay.show,
.prodtour-root.pt-tour-fullscreen .pt-overlay.show,
.prodtour-root.pt-browser-fs .pt-overlay.show,
html:fullscreen .prodtour-root .pt-overlay.show,
html:-webkit-full-screen .prodtour-root .pt-overlay.show,
body > .pt-overlay.pt-overlay-portaled.show,
html.pt-tour-overlay-active body > .pt-overlay.pt-overlay-portaled.show {
	display: flex !important;
	z-index: 2147483647 !important;
	pointer-events: auto !important;
	background: rgba(17, 24, 39, .6);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}
html.pt-tour-overlay-active .prodtour-root .pt-overlay.show .pt-overlay-card,
.prodtour-root.pt-tour-fullscreen .pt-overlay.show .pt-overlay-card,
.prodtour-root.pt-browser-fs .pt-overlay.show .pt-overlay-card,
body > .pt-overlay.pt-overlay-portaled.show .pt-overlay-card {
	pointer-events: auto;
}
html.pt-tour-browser-fullscreen.pt-tour-overlay-active .prodtour-root .pt-tour-header,
html.pt-tour-browser-fullscreen.pt-booking-intentional .prodtour-root .pt-tour-header,
html:fullscreen.pt-tour-overlay-active .prodtour-root .pt-tour-header,
html:fullscreen.pt-booking-intentional .prodtour-root .pt-tour-header {
	pointer-events: auto !important;
	position: relative;
	z-index: 2147483648;
}
.prodtour-root.pt-tour-fullscreen .pt-overlay.pt-skip-overlay.show,
.prodtour-root.pt-browser-fs .pt-overlay.pt-skip-overlay.show {
	z-index: 2147483647 !important;
}
.prodtour-root .pt-shell.show { display: flex; animation: pt-fade .2s ease both; }
.prodtour-root.is-popup .pt-shell.show,
.prodtour-root.is-popup .pt-shell-inner {
	animation: none !important;
}
.prodtour-root .pt-shell.pt-no-anim,
.prodtour-root.pt-closing .pt-shell {
	animation: none !important;
}
.prodtour-root .pt-shell.pt-has-page-title.show {
	flex-direction: column;
	justify-content: center;
}
.prodtour-root .pt-shell.pt-has-page-title .main-tour {
	width: auto;
	max-width: min(100%, var(--pt-tour-width, 100%));
	overflow: hidden;
	border-radius: 12px;
}
.prodtour-root .pt-shell.pt-has-page-title .pt-shell-inner {
	flex: 0 0 auto;
	min-height: auto;
	max-width: 100%;
	max-height: none;
	overflow: visible;
	padding: 0;
}
.prodtour-root .pt-shell-inner {
	position: relative; width: 100%; max-width: 100%;
	overflow: visible;
	animation: pt-shell-in .22s ease both;
}
@keyframes pt-shell-in { from { opacity: 0; } to { opacity: 1; } }
.prodtour-root .pt-shell-close { display: none !important; }
body.overflow-hidden {
	overflow: hidden !important;
}

.pt-stage { width: 100%; }

.pt-kbd-hints { display: none !important; }

.pt-progress { display: none !important; }

.pt-img-wrap {
	position: relative; width: 100%; box-shadow: 0 4px 28px rgba(0,0,0,.14);
	line-height: 0; overflow: visible;
}
.pt-img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity .2s ease;
	pointer-events: none;
	user-select: none;
}
.prodtour-root.is-popup:not(.pt-layout-stacked) .pt-img-wrap {
	margin: 0;
	box-shadow: none;
}
.prodtour-root.is-popup:not(.pt-layout-stacked) .pt-img {
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: none;
	object-fit: contain;
	vertical-align: top;
}
/* Popup: no image fade/slide — show only after fit inside shell */
.prodtour-root.is-popup .pt-shell-tour-fit.pt-tour-fit-pending {
	visibility: hidden !important;
	pointer-events: none !important;
}
.prodtour-root.is-popup .pt-img,
.prodtour-root.is-popup .pt-img-wrap,
.prodtour-root.is-popup .main-tour,
.prodtour-root.is-popup .pt-shell-inner,
.prodtour-root.is-popup .pt-stage,
.prodtour-root.is-popup .pt-step-stack {
	transition: none !important;
	animation: none !important;
	transform: none !important;
}
.prodtour-root.is-popup .pt-img.fading {
	opacity: 1 !important;
}
.pt-img.fading { opacity: 0; }
.pt-img-wrap.pt-step-change .pt-img {
	animation: none;
}
.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked.pt-step-change {
	animation: none;
}

.pt-hs {
	position: absolute; border-radius: 8px;
	border: 2.5px solid var(--pt-highlight, var(--pt-accent, #1B6EF3));
	background: transparent;
	z-index: 10; pointer-events: none;
}
.pt-hs.pt-hs-fill-none,
.pt-hs-fill-none.pt-pv-hs {
	background: transparent !important;
	background-color: transparent !important;
}
.pt-hs.pop { animation: none; }

.pt-owner {
	position: absolute; display: flex; align-items: center; gap: 6px;
	background: #fff; border: 1px solid #e5e7eb; border-left: 3px solid var(--pt-accent);
	font-size: 12px; font-weight: 500; color: #111; padding: 5px 10px;
	border-radius: 0 8px 8px 0; white-space: nowrap; z-index: 20;
	box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.pt-owner-av {
	width: 20px; height: 20px; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 9px; font-weight: 800; color: #fff; flex-shrink: 0;
}

/* Step card — no slide/transform; popup shows only after positioned */
.prodtour-root .pt-pop,
.prodtour-root .pt-pop.show,
.prodtour-root.is-popup .pt-pop,
.prodtour-root .pt-pop.pt-pop-stacked,
.prodtour-root .pt-pop.pt-no-anim,
.prodtour-root .pt-pop.pt-no-anim.show,
.prodtour-root.is-popup .pt-pop.pt-pop-step-swap {
	animation: none !important;
	transform: none !important;
	transition: none !important;
	will-change: auto;
}
.prodtour-root .pt-pop.pt-pop-positioning,
.prodtour-root .pt-pop.pt-pop-positioning.show {
	visibility: hidden !important;
	pointer-events: none !important;
	transition: none !important;
	animation: none !important;
	transform: none !important;
}
.prodtour-root .pt-pop.pt-pop-step-swap.pt-pop-step-hide {
	transition: opacity 0.1s ease !important;
	opacity: 0 !important;
	pointer-events: none;
}
.prodtour-root .pt-pop.pt-pop-step-swap.pt-pop-step-show {
	transition: opacity 0.15s ease !important;
	opacity: 1 !important;
	pointer-events: auto;
}

/* popover — fixed to viewport (reference: hotspot demo) */
.pt-pop {
	position: fixed;
	z-index: 10;
	width: 300px;
	max-width: calc(100vw - 16px);
	background: var(--pt-pop-bg, #fff);
	border: 1px solid var(--pt-pop-edge, var(--pt-accent, #1B6EF3));
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(0,0,0,.16), 0 2px 8px rgba(0,0,0,.06);
	display: none;
	flex-direction: column;
	overflow: hidden;
	pointer-events: auto;
	transition: none;
	animation: none !important;
	transform: none !important;
}
.pt-pop.pt-has-pointer {
	overflow: visible !important;
	--pt-arrow-color: var(--pt-pop-edge, var(--pt-accent, #1868da));
}
/* Hide border on the edge where the tail attaches — arrow continues the outline */
.pt-pop.pt-pop-tail-right { border-right-color: transparent; }
.pt-pop.pt-pop-tail-left { border-left-color: transparent; }
.pt-pop.pt-pop-tail-top { border-top-color: transparent; }
.pt-pop.pt-pop-tail-bottom { border-bottom-color: transparent; }
/* Keep rounded corners when pointer forces overflow:visible */
.pt-pop .pt-pop-head {
	background: var(--pt-pop-bg, #fff);
	border-top-left-radius: 11px;
	border-top-right-radius: 11px;
	position: relative;
	z-index: 1;
}
.pt-pop .pt-pop-body,
.pt-pop .pt-pop-dots {
	background: var(--pt-pop-bg, #fff);
	position: relative;
	z-index: 1;text-align: start;
}
.pt-pop .pt-pop-nav {
	border-bottom-left-radius: 11px;
	border-bottom-right-radius: 11px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
.prodtour-root.is-popup .pt-pop { z-index: 100002; }
.pt-pop.show {
	display: flex;
	flex-direction: column;
	max-height: min(calc(100dvh - 24px), calc(100vh - 24px), 560px);
	animation: none !important;
	transition: none;
	transform: none !important;
}
.pt-pop.pt-pop-scroll {
	overflow-x: hidden;
	overflow-y: auto;
}
@keyframes pt-pop-in { from { opacity:0; transform:scale(.93) translateY(-5px); } to { opacity:1; transform: scale(1) translateY(0); } }

/* Pointer tail — accent border outline + white fill (reference: Lattice-style, no base border) */
.pt-pop-arrow {
	position: absolute;
	width: 0;
	height: 0;
	pointer-events: none;
	z-index: 3;
	display: none;
	border: none;
	background: transparent;
	transform: none;
}
.pt-pop.show .pt-pop-arrow.side-top,
.pt-pop.show .pt-pop-arrow.side-bottom,
.pt-pop.show .pt-pop-arrow.side-left,
.pt-pop.show .pt-pop-arrow.side-right {
	display: block;
}
.pt-pop-arrow::before,
.pt-pop-arrow::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	background: transparent;
}
/* Points right — card sits left of hotspot */
.pt-pop-arrow.side-right { width: 12px; height: 22px; }
.pt-pop-arrow.side-right::before {
	left: 0; top: 50%;
	transform: translateY(-50%);
	border-width: 10px 0 10px 11px;
	border-color: transparent transparent transparent var(--pt-arrow-color, var(--pt-pop-edge, var(--pt-accent, #1868da)));
}
.pt-pop-arrow.side-right::after {
	left: 0; top: 50%;
	transform: translateY(-50%);
	border-width: 9px 0 9px 10px;
	border-color: transparent transparent transparent var(--pt-pop-bg, #fff);
}
/* Points left */
.pt-pop-arrow.side-left { width: 12px; height: 22px; }
.pt-pop-arrow.side-left::before {
	right: 0; top: 50%;
	transform: translateY(-50%);
	border-width: 10px 11px 10px 0;
	border-color: transparent var(--pt-arrow-color, var(--pt-pop-edge, var(--pt-accent, #1868da))) transparent transparent;
}
.pt-pop-arrow.side-left::after {
	right: 0; top: 50%;
	transform: translateY(-50%);
	border-width: 9px 10px 9px 0;
	border-color: transparent var(--pt-pop-bg, #fff) transparent transparent;
}
/* Points up — pop below hotspot */
.pt-pop-arrow.side-top { width: 22px; height: 12px; }
.pt-pop-arrow.side-top::before {
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	border-width: 0 10px 11px 10px;
	border-color: transparent transparent var(--pt-arrow-color, var(--pt-pop-edge, var(--pt-accent, #1868da))) transparent;
}
.pt-pop-arrow.side-top::after {
	left: 50%; bottom: 0;
	transform: translateX(-50%);
	border-width: 0 9px 10px 9px;
	border-color: transparent transparent var(--pt-pop-bg, #fff) transparent;
}
/* Points down — pop above hotspot */
.pt-pop-arrow.side-bottom { width: 22px; height: 12px; }
.pt-pop-arrow.side-bottom::before {
	left: 50%; top: 0;
	transform: translateX(-50%);
	border-width: 11px 10px 0 10px;
	border-color: var(--pt-arrow-color, var(--pt-pop-edge, var(--pt-accent, #1868da))) transparent transparent transparent;
}
.pt-pop-arrow.side-bottom::after {
	left: 50%; top: 0;
	transform: translateX(-50%);
	border-width: 10px 9px 0 9px;
	border-color: var(--pt-pop-bg, #fff) transparent transparent transparent;
}

.pt-pop-head { display: none !important; }
.pt-pop-badge { display: none !important; }
.pt-pop-close { display: none !important; }
.pt-pop-badge { font-size: 11px; font-weight: 700; letter-spacing:.05em; text-transform:uppercase;
	color: var(--pt-pop-edge, var(--pt-accent, #1B6EF3));
	background: var(--pt-pop-badge-soft, var(--pt-accent-soft, rgba(27, 110, 243, .08)));
	padding: 4px 10px; border-radius: 20px; }
.pt-pop-close {
	width: 26px; height: 26px; border-radius: 50%; border: none; background: #f3f4f6;
	cursor: pointer; display: flex; align-items: center; justify-content: center;
	font-size: 16px; color: #6b7280; line-height: 1;
	position: relative; z-index: 3; pointer-events: auto;
}
.pt-pop-close:hover { background: #e5e7eb; color: #111; }

.pt-pop-body { padding: 12px 14px 6px; flex-shrink: 0; border-top-left-radius: 11px; border-top-right-radius: 11px; }
.pt-pop-title { font-size: 15px; font-weight: 700; color: var(--pt-pop-title-color, #111); margin-bottom: 4px; line-height: 1.35; }
.pt-pop-desc { font-size: 13px; line-height: 1.65; color: var(--pt-pop-desc-color, #5c6670); }

.pt-pop-dots {
	display: flex; align-items: center; justify-content: center; gap: 5px;
	padding: 8px 14px 4px; flex-wrap: wrap; flex-shrink: 0;
	max-height: 52px; overflow-y: auto;
}
.pt-pop-dots.pt-pop-dots-hidden { display: none !important; }
.pt-dot { width: 6px; height: 6px; border-radius: 50%; background: #e5e7eb; cursor: pointer; transition: all .2s; flex-shrink: 0; }
.pt-dot.active { background: var(--pt-pop-edge, var(--pt-accent)); transform: scale(1.3); }
.pt-dot:hover:not(.active) { background: #9ca3af; }

.pt-pop-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 14px 10px;
	gap: 8px;
	flex-shrink: 0;
	background: var(--pt-pop-bg, #fff);
	position: sticky;
	bottom: 0;
	z-index: 4;
}
.pt-pop-nav-start { min-width: 0; }
.pt-pop-nav-end { min-width: 0; }

.pt-btn-back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background: var(--pt-pop-nav-back-bg, #f3f4f6);
	border-color: var(--pt-pop-nav-back-bg, #f3f4f6);
	color: var(--pt-pop-nav-back-color, #9ca3af);
	font-weight: 500;
	border-radius: 8px;
	padding: 8px 11px;
	min-width: 40px;
}
.pt-pop-nav .pt-btn-back:hover:not(:disabled) {
	background: var(--pt-pop-nav-back-hover-bg, #e5e7eb) !important;
	border-color: var(--pt-pop-nav-back-hover-bg, #e5e7eb) !important;
	color: var(--pt-pop-nav-back-hover-color, #6b7280) !important;
	filter: none;
}
.pt-pop-nav .pt-btn-primary {
	border-radius: 8px;
	padding: 7px 16px;
	min-width: 40px;
	font-weight: 600;
	justify-content: center;
	background: var(--pt-pop-nav-next-bg, #2563eb);
	border-color: var(--pt-pop-nav-next-bg, #2563eb);
	color: var(--pt-pop-nav-next-color, #fff);
}
.pt-pop-nav .pt-btn-primary.pt-btn-finish {
	background: var(--pt-pop-nav-finish-bg, #16a34a);
	border-color: var(--pt-pop-nav-finish-bg, #16a34a);
	color: var(--pt-pop-nav-finish-color, #fff);
}
.pt-pop-nav .pt-btn-primary:not(.pt-btn-finish):hover:not(:disabled) {
	background: var(--pt-pop-nav-next-hover-bg, var(--pt-pop-nav-next-bg, #2563eb)) !important;
	border-color: var(--pt-pop-nav-next-hover-bg, var(--pt-pop-nav-next-bg, #2563eb)) !important;
	color: var(--pt-pop-nav-next-hover-color, var(--pt-pop-nav-next-color, #fff)) !important;
	filter: none;
}
.pt-pop-nav .pt-btn-primary.pt-btn-finish:hover:not(:disabled) {
	background: var(--pt-pop-nav-finish-hover-bg, #15803d) !important;
	border-color: var(--pt-pop-nav-finish-hover-bg, #15803d) !important;
	color: var(--pt-pop-nav-finish-hover-color, #fff) !important;
	filter: none;
}
.pt-pop-nav .pt-btn-back.pt-btn-has-label,
.pt-pop-nav .pt-btn-primary.pt-btn-has-label {
	gap: 6px;
	padding: 8px 14px;
}
.pt-btn-label {
	line-height: 1;
	white-space: nowrap;
}
.pt-nav-ico-img-next {
	transform: scaleX(-1);
}
.pt-nav-ico {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	display: block;
}
.pt-nav-ico-drawer {
	width: 18px;
	height: 18px;
}
.pt-nav-ico-img {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

/* Skip tour confirmation — above step popover (z-index 100002) */
.pt-overlay.pt-skip-overlay {
	z-index: 100003;
	background: rgba(17, 24, 39, .55);
	backdrop-filter: blur(2px);
}
.pt-overlay-card.pt-skip-card {
	max-width: 440px;
	text-align: left;
	padding: 28px 26px 24px;
	position: relative;
}
.pt-skip-head {
	display: flex;
	align-items: flex-start;
	justify-content: end;
	gap: 12px;
	margin-bottom: 10px;
}
.pt-skip-kicker {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: #2563eb;
	margin: 0;
	flex: 1;
}
.pt-skip-close {
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 50%;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 18px;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
	margin-left: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
	padding: 0;
}
.pt-skip-close:hover {
	background: #e5e7eb;
	color: #111;
}
.pt-skip-headline {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	color: #111;
	margin: 0 0 8px;
}
.pt-skip-sub {
	font-size: 15px;
	font-weight: 600;
	color: #374151;
	margin: 0 0 12px;
	line-height: 1.4;
}
.pt-skip-body {
	font-size: 14px;
	line-height: 1.65;
	color: #4b5563;
	margin: 0 0 22px;
}
.pt-skip-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}
.pt-skip-actions .pt-btn {
	justify-content: center;
	padding: 11px 16px;
	font-size: 14px;
	font-weight: 600;
}
a.pt-skip-tertiary {
	display: block;
	text-align: center;
	color: #6b7280;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	padding: 8px 4px;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-family: inherit;
}
a.pt-skip-tertiary:hover {
	color: #111;
}

.pt-btn { display: inline-flex; align-items: center; gap: 5px; padding: 7px 16px; border-radius: 7px;
	font-size: 13px; font-weight: 500; cursor: pointer; border: 1px solid #e5e7eb; background: #fff;
	color: #374151; transition: all .12s; font-family: inherit; line-height: 1; white-space: nowrap; text-decoration: none; }
.pt-btn:disabled { opacity: .35; cursor: not-allowed; }
.pt-btn-primary { background: #2563eb; color: #fff; border-color: none; }
.pt-btn-primary:hover:not(:disabled) { filter: brightness(.92); }
.pt-btn-finish { background: #16a34a; border-color: #16a34a; color: #fff; }
.pt-btn-finish:hover {background: #115e2e !important;}
.pt-btn-finish:hover:not(:disabled) { background: #15803d; }
/* overlay (welcome / demo / closing) */
.prodtour-root .pt-overlay,
body > .pt-overlay.pt-overlay-portaled {
	position: fixed; inset: 0; z-index: 100000;
	display: none; align-items: center; justify-content: center; padding: 20px;
	
}
body > .pt-overlay.pt-overlay-portaled {
	z-index: 2147483647;
}
.prodtour-root .pt-overlay.pt-overlay--hidden,
body > .pt-overlay.pt-overlay-portaled.pt-overlay--hidden {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
.prodtour-root .pt-overlay.show,
body > .pt-overlay.pt-overlay-portaled.show {
	display: flex;
	animation: pt-fade .2s ease both;
}
.prodtour-root .pt-overlay.pt-overlay-final {
	z-index: 100005;
	background: rgba(17, 24, 39, .6);
	backdrop-filter: blur(2px);
}
html.pt-tour-open body > .pt-overlay.pt-overlay-final {
	z-index: 9999999;
}
html.pt-tour-open body > .pt-overlay.pt-overlay-final.show {
	display: flex !important;
}
body.pt-tour-final-active .prodtour-root .pt-shell,
body.pt-tour-final-active .prodtour-root .pt-pop,
body.pt-tour-final-active .prodtour-root .pt-stage,
body.pt-tour-final-active .prodtour-root .pt-sbf-wrap {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
.pt-pop.pt-pop-force-hidden {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}
.pt-overlay.pt-no-anim,
.pt-overlay.pt-no-anim .pt-overlay-card,
.pt-pop.pt-no-anim,
.pt-pop.pt-no-anim.show { animation: none !important;transition: none !important;transform: none !important; }
@keyframes pt-fade { from { opacity: 0; } to { opacity: 1; } }
.pt-overlay-card {
	background: #fff; border-radius: 16px; padding: 28px 26px; max-width: 460px; width: 100%;
	box-shadow: 0 24px 60px rgba(0,0,0,.25); text-align: start;
	animation: pt-pop-in .2s cubic-bezier(.22,.68,0,1.2) both;
}
.pt-overlay-card.pt-overlay-card-welcome {
	max-width: 460px;
	padding: 34px 32px;
}
.pt-ov-title { font-size: 20px; font-weight: 700; margin: 0 0 8px; color: #111; }
.pt-ov-head {
	display: flex;
	justify-content: flex-end;
	margin: -4px -2px 2px 0;
}
.pt-ov-sub {
	font-size: 15px;
	font-weight: 600;
	color: #374151;
	margin: 0 0 8px;
	line-height: 1.45;
}
.pt-ov-desc { font-size: 14px; line-height: 1.6; color: #4b5563; margin: 0 0 20px; }
.pt-ov-actions { display: flex; flex-direction: column; gap: 8px; }
.pt-ov-actions .pt-btn { justify-content: center; padding: 10px 16px; font-size: 14px;
    font-weight: 600; }
.pt-sbf-form-overlay { margin-top: 4px; }
.pt-sbf-form-overlay .pt-sbf-visible-btn { width: 100%; margin-top: 4px; }
html.pt-tour-overlay-active .prodtour-root .pt-overlay .pt-sbf-form-overlay,
.prodtour-root.pt-tour-fullscreen .pt-overlay .pt-sbf-form-overlay,
.prodtour-root.pt-browser-fs .pt-overlay .pt-sbf-form-overlay {
	display: flex !important;
	flex-direction: column;
	gap: 12px;
}
html.pt-tour-overlay-active .prodtour-root .pt-overlay .pt-sbf-form-overlay input,
.prodtour-root.pt-tour-fullscreen .pt-overlay .pt-sbf-form-overlay input,
.prodtour-root.pt-browser-fs .pt-overlay .pt-sbf-form-overlay input {
	display: block !important;
	visibility: visible !important;
	width: 100% !important;
	opacity: 1 !important;
}
.pt-ov-closing-actions .pt-ov-trial {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	font-size: 14px;
	border-radius: 7px;
	border: 1px solid #d1d5db;
	background: #fff;
	color: #111827;
	font-weight: 600;
	text-decoration: none;
}
.pt-ov-closing-actions .pt-ov-trial:hover {
	background: #f9fafb;
	border-color: #9ca3af;
}

/* lead form */
.pt-form { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.pt-form-row { display: flex; flex-direction: column; gap: 4px; }
.pt-form-row span { font-size: 12px; font-weight: 600; color: #374151; }
.pt-form-row input {
	width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 8px;
	font-size: 14px; font-family: inherit; color: #111;
}
.pt-form-row input:focus { outline: none; border-color: var(--pt-accent); box-shadow: 0 0 0 3px var(--pt-accent-soft); }
.pt-form-err { font-size: 12px; color: #dc2626; }
.pt-form .pt-btn-primary { justify-content: center; padding: 11px 16px; font-size: 14px; margin-top: 2px; }
.pt-form-privacy {
	font-size: 11px;
	line-height: 1.45;
	color: #6b7280;
	margin: 10px 0 0;
	text-align: center;
}
.pt-form-privacy a {
	color: var(--pt-accent, #1B6EF3);
	text-decoration: underline;
}
.pt-form-privacy a:hover { color: #1558c4; }
.pt-req { color: #dc2626; font-weight: 600; }
/* Inline booking form (below tour, uses Profit Booking SDK) */
.pt-sbf-wrap {
	display: none;
	margin-top: 16px;
	padding: 16px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	max-width: 400px;
}
.pt-sbf-sub {
	font-size: 15px;
	font-weight: 600;
	color: #374151;
	margin: 0 0 8px;
	line-height: 1.45;
}
.pt-sbf-title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 6px;
	color: #111;
}
.pt-sbf-desc {
	font-size: 14px;
	color: #4b5563;
	margin: 0 0 10px;
	line-height: 1.5;
}
.pt-sbf-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 10px;
}
.pt-sbf-actions .pt-btn { justify-content: center; }
.pt-sbf-hint {
	font-size: 13px;
	color: #6b7280;
	margin: 0 0 12px;
	line-height: 1.5;
}
.pt-sbf-error {
	font-size: 12px;
	color: #dc2626;
	margin-top: 4px;
	display: block;
}
.pt-booking-trigger {
	position: fixed;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
/* Profit booking modal must sit above tour shell — only during tour session */
html.pt-tour-open booking-modal-box {
	z-index: 100001 !important;
	touch-action: auto;
	-webkit-overflow-scrolling: touch;
}
.is-popup .pt-sbf-wrap {
	margin: 12px auto 0;
}

/* inline "book a demo" button inside the popover body */
.pt-pop-demo {
	width: 100%; justify-content: center; margin-top: 8px;
	background: var(--pt-accent-soft); border-color: transparent; color: var(--pt-accent); font-weight: 600;
	cursor: pointer;
	position: relative;
	z-index: 2;
}
.pt-pop-demo:hover { background: var(--pt-accent); color: #fff; }

/* Tablet / narrow desktop (reference: ≤1024px) */
@media (max-width: 1024px) {
	.pt-pop:not(.pt-pop-stacked) {
		width: min(300px, calc(100vw - 24px));
	}
	.pt-overlay { padding: 16px; }
	.pt-overlay-card { max-width: min(380px, calc(100vw - 32px)); }
}

@media (max-width: 520px) {
	.pt-pop:not(.pt-pop-stacked) {
		width: min(285px, calc(100vw - 16px));
	}
}

/* md+ desktop shell padding (48px / 96px total — JS syncs on resize) */
@media (min-width: 768px) {
	.prodtour-root {
		--pt-shell-pad-x: 20px;
		--pt-shell-pad-y: 32px;
	}
}

/* Below md: image → step card (scroll-adjusted stack, <768px) */
@media (max-width: 767px) {
	.prodtour-root.is-popup.pt-layout-stacked {
		--pt-shell-pad-x: 14px;
		--pt-shell-pad-y: 28px;
	}

	.pt-overlay-card { padding: 22px 18px; border-radius: 14px; }
	.pt-ov-title { font-size: 18px; }

	.prodtour-root.pt-layout-stacked {
		--pt-stack-shadow: 0 10px 36px rgba(15, 23, 42, .14), 0 2px 10px rgba(15, 23, 42, .08);
		--pt-stack-border: var(--pt-pop-edge, var(--pt-accent, #1B6EF3));
	}

	.prodtour-root.pt-layout-stacked .pt-stage {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.prodtour-root.pt-layout-stacked .pt-step-stack {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		gap: 10px;
		box-sizing: border-box;
		border: none;
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
	}

	.prodtour-root.pt-layout-stacked .pt-img-wrap {
		flex: 1 1 auto;
		min-height: 0;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		border-radius: 12px;
		box-shadow: var(--pt-stack-shadow);
		overflow: hidden;
		line-height: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		max-height: var(--pt-stack-img-h, auto);
	}
	.prodtour-root.pt-layout-stacked .pt-img-wrap.pt-img-wrap--fitted {
		flex: 0 0 auto;
		width: min(100%, var(--pt-stack-img-w, 100%));
		height: var(--pt-stack-img-h, auto);
		max-height: var(--pt-stack-img-h, none);
		margin-left: auto;
		margin-right: auto;
		display: block;
		position: relative;
	}
	.prodtour-root.pt-layout-stacked .pt-img {
		width: auto !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: 100% !important;
		object-fit: contain;
		display: block;
	}
	.prodtour-root.pt-layout-stacked .pt-img-wrap--fitted .pt-img {
		width: 100% !important;
		height: 100% !important;
		max-width: none !important;
		max-height: none !important;
		object-fit: fill;
		object-position: center top;
	}
	.prodtour-root.pt-layout-stacked .pt-owner {
		font-size: 11px;
		max-width: min(220px, calc(100% - 16px));
		white-space: normal;
	}

	/* Step card below image (in flow, not fixed overlay) */
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked {
		position: relative !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		bottom: auto !important;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: none !important;
		margin: 0;
		padding: 0;
		border-radius: 12px;
		background: var(--pt-pop-bg, #fff);
		box-shadow: var(--pt-stack-shadow);
		box-sizing: border-box;
		overflow: hidden;
		flex-shrink: 0;
		z-index: 2;
		animation: none;
		transition: none;
		border: 1px solid var(--pt-pop-edge, var(--pt-accent, #1B6EF3));
	}
	@keyframes pt-stack-in {
		from { opacity: 0; transform: translateY(8px); }
		to { opacity: 1; transform: translateY(0); }
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked.pt-no-anim,
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked.pt-no-anim.show {
		animation: none !important;
	}

	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-arrow { display: none !important; }

	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-body { padding: 12px 14px 6px; }
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-title {
		font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3;
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-desc {
		font-size: 14px; line-height: 1.6; color: #5c6670;
	}

	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-dots {
		padding: 10px 14px 4px; gap: 6px;
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-dot {
		width: 7px; height: 7px;
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-dot.active { transform: scale(1.15); }

	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-nav {
		padding: 10px 14px 14px;
		border-top: 1px solid #e5e7eb;
		gap: 10px;
		position: static;
		box-shadow: none;
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-nav .pt-btn {
		justify-content: center;
		padding: 11px 14px;
		font-size: 14px;
		font-weight: 600;
		border-radius: 10px;
		min-width: 44px;
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-nav-start .pt-btn,
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-nav-end .pt-btn {
		min-width: 44px;
		width: auto;
		flex: 0 0 auto;
	}
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-nav .pt-btn-primary {
		box-shadow: 0 2px 8px rgba(27, 110, 243, .25);
	}

	/* Popup shell: fit viewport — no scroll, top/bottom padding */
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell {
		padding: var(--pt-shell-pad-y) var(--pt-shell-pad-x);
		align-items: stretch;
		justify-content: center;
		overflow: hidden;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell.pt-has-page-title.show {
		justify-content: center;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell-tour-fit {
		width: 100% !important;
		max-width: 100% !important;
		max-height: calc(100dvh - (var(--pt-shell-pad-y, 40px) * 2));
		min-height: 0;
		display: flex;
		flex-direction: column;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell.pt-has-page-title .main-tour,
	.prodtour-root.is-popup.pt-layout-stacked .main-tour {
		width: 100% !important;
		max-width: 100% !important;
		height: auto;
		max-height: calc(100dvh - (var(--pt-shell-pad-y, 40px) * 2));
		min-height: 0;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		border-radius: 16px;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell-title {
		flex-shrink: 0;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-tour-header {
		padding: 8px 10px;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-tour-header-search {
		height: 32px;
		font-size: 13px;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell-inner {
		flex: 1 1 auto;
		max-width: 100%;
		width: 100%;
		min-height: 0;
		border-radius: 0;
		border: none;
		box-shadow: none;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-stage {
		flex: 1 1 auto;
		min-height: 0;
		overflow: hidden;
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 100%;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-step-stack {
		width: 100%;
		max-width: 100%;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-pop.pt-pop-stacked {
		flex-shrink: 0;
	}
	.prodtour-root.is-popup.pt-layout-stacked .pt-pop.pt-pop-stacked {
		margin-bottom: 0;
	}

	/* Responsive fullscreen: same view as default stacked popup (welcome + steps) */
	html.pt-tour-browser-fullscreen .prodtour-root.is-popup.pt-layout-stacked {
		position: fixed !important;
		inset: 0 !important;
		width: 100% !important;
		height: 100% !important;
	}
	html.pt-tour-browser-fullscreen .prodtour-root.pt-layout-stacked .pt-shell.pt-shell-fullscreen,
	html.pt-tour-browser-fullscreen .prodtour-root.pt-layout-stacked .pt-shell.pt-shell-fullscreen.show,
	html.pt-tour-shell-fullscreen .prodtour-root .pt-shell,
	html.pt-tour-shell-fullscreen .prodtour-root .pt-shell.show,
	.prodtour-root .pt-shell.pt-shell-fullscreen,
	.prodtour-root .pt-shell.pt-shell-fullscreen.show,
	.prodtour-root .pt-shell.pt-shell-fullscreen.pt-has-page-title.show,
	.prodtour-root.is-popup.pt-layout-stacked .pt-shell.pt-shell-fullscreen,
	html.pt-tour-shell-fullscreen .prodtour-root.is-popup.pt-layout-stacked .pt-shell {
		padding: var(--pt-shell-pad-y) var(--pt-shell-pad-x) !important;
		background: rgba(17, 24, 39, .6) !important;
		background-color: rgba(17, 24, 39, .6) !important;
		backdrop-filter: blur(2px) !important;
		-webkit-backdrop-filter: blur(2px) !important;
		align-items: stretch !important;
		justify-content: center !important;
	}
	.prodtour-root .pt-shell.pt-shell-fullscreen .main-tour,
	.prodtour-root .pt-shell.pt-shell-fullscreen .pt-shell-tour-fit,
	html.pt-tour-browser-fullscreen .prodtour-root.pt-layout-stacked .pt-shell.pt-shell-fullscreen .main-tour,
	html.pt-tour-browser-fullscreen .prodtour-root.pt-layout-stacked .pt-shell.pt-shell-fullscreen .pt-shell-tour-fit {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		max-height: calc(100dvh - (var(--pt-shell-pad-y, 40px) * 2)) !important;
	}
	.prodtour-root.pt-tour-fullscreen.pt-layout-stacked .pt-img-wrap {
		border-radius: 12px;
		box-shadow: var(--pt-stack-shadow);
	}

	/* Inline embed: page scrolls with stack */
	.prodtour-root.is-inline.pt-layout-stacked.pt-tour-active {
		padding: var(--pt-shell-pad-y) var(--pt-shell-pad-x) calc(var(--pt-shell-pad-y) + 4px);
		background: #eef3f8;
		border-radius: 12px;
	}
	.prodtour-root.pt-layout-stacked .pt-img {
		border-radius: 12px 12px 0 0;
	}
	.prodtour-root.pt-layout-stacked .pt-owner-av { width: 18px; height: 18px; font-size: 8px; }
}

@media (max-width: 380px) {
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-title { font-size: 16px; }
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-desc { font-size: 13px; }
	.prodtour-root.pt-layout-stacked .pt-pop.pt-pop-stacked .pt-pop-nav .pt-btn {
		padding: 10px 12px;
		font-size: 13px;
	}
}
button.pt-btn.pt-ov-keep:hover{
    background: #eee;
}button.pt-btn.pt-ov-skip:hover {
    background: #eee;
}.pt-pop-nav .pt-btn-back:hover:not(:disabled) {
	background: var(--pt-pop-nav-back-hover-bg, #e5e7eb) !important;
	border-color: var(--pt-pop-nav-back-hover-bg, #e5e7eb) !important;
	color: var(--pt-pop-nav-back-hover-color, #6b7280) !important;
}
.pt-pop-nav .pt-btn-primary:not(.pt-btn-finish):hover:not(:disabled) {
	background: var(--pt-pop-nav-next-hover-bg, var(--pt-pop-nav-next-bg, #2563eb)) !important;
	border-color: var(--pt-pop-nav-next-hover-bg, var(--pt-pop-nav-next-bg, #2563eb)) !important;
	color: var(--pt-pop-nav-next-hover-color, var(--pt-pop-nav-next-color, #fff)) !important;
}
.pt-pop-nav .pt-btn-primary.pt-btn-finish:hover:not(:disabled) {
	background: var(--pt-pop-nav-finish-hover-bg, #15803d) !important;
	border-color: var(--pt-pop-nav-finish-hover-bg, #15803d) !important;
	color: var(--pt-pop-nav-finish-hover-color, #fff) !important;
}
button.pt-btn.pt-btn-primary.pt-ov-book:hover {
    background: #1E3A8A;
}
button.pt-btn.pt-ov-done:hover {
    background: #eee;
}
button.pt-btn.pt-btn-primary.pt-ov-start:hover {
    background: #1E3A8A;
}button.pt-btn.pt-btn-primary.pt-f-submit:hover {
    background: #1E3A8A;
}.pt-pop.show {
    border: 1px solid #1868da;
}button.pt-btn.pt-btn-primary:hover {
    background: #1E3A8A;
}.pt-step-stack {
	border: none;
}/* Product Tour — admin */
.prodtour-wrap { max-width: 1400px; }

.prodtour-topbar {
	display: flex; align-items: center; justify-content: space-between;
	margin: 12px 0 20px; gap: 16px;
}
.prodtour-topbar-left { display: flex; align-items: center; gap: 12px; flex: 1; }
.prodtour-topbar-right { display: flex; align-items: center; gap: 12px; }
.prodtour-back { font-size: 22px; text-decoration: none; color: #555; }

.pt-title-input {
	font-size: 18px; font-weight: 600; padding: 6px 10px; min-width: 320px;
	border: 1px solid #dcdcde; border-radius: 6px;
}

.pt-status { font-size: 13px; }
.pt-status.is-ok { color: #16a34a; }
.pt-status.is-error { color: #dc2626; }
.pt-shortcode { font-family: monospace; font-size: 12px; color: #555; background: #f0f0f1; padding: 4px 8px; border-radius: 4px; }
.pt-shortcodes { display: flex; flex-direction: column; gap: 4px; max-width: 420px; margin-right: 12px; }
.pt-sc-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pt-sc-label { font-size: 11px; font-weight: 600; color: #646970; min-width: 82px; text-transform: uppercase; letter-spacing: .03em; }
.pt-sc-list div + div { margin-top: 4px; }
.prodtour-topbar-right { flex-wrap: wrap; gap: 8px; }

/* list */
.prodtour-table { margin-top: 12px; }
.prodtour-table code { background: #f0f0f1; padding: 2px 6px; border-radius: 4px; }
.prodtour-row-actions { display: flex; gap: 6px; justify-content: flex-end; }
.prodtour-empty { background: #fff; border: 1px solid #e2e4e7; border-radius: 8px; padding: 48px; text-align: center; }

/* builder layout */
.prodtour-grid {
	display: grid; grid-template-columns: 440px 1fr; gap: 20px; align-items: start;
}
@media (max-width: 1100px) { .prodtour-grid { grid-template-columns: 1fr; } }

.prodtour-panel { display: flex; flex-direction: column; gap: 14px; }

.pt-card { background: #fff; border: 1px solid #e2e4e7; border-radius: 10px; padding: 16px; }
.pt-card h2 { font-size: 14px; margin: 0 0 12px; }
.pt-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pt-card-head h2 { margin: 0; }

.pt-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 10px; }
.pt-field > span { font-size: 12px; font-weight: 600; color: #50575e; }
.pt-field input[type=text], .pt-field input[type=url], .pt-field input[type=number],
.pt-field textarea, .pt-field select {
	width: 100%; padding: 7px 9px; border: 1px solid #dcdcde; border-radius: 6px; font-size: 13px;
}
.pt-field input[type=color] { width: 48px; height: 32px; padding: 2px; border: 1px solid #dcdcde; border-radius: 6px; }
.pt-link-presets { display: flex; gap: 8px; margin-bottom: 8px; }
.pt-link-preset {
	width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent;
	cursor: pointer; padding: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08);
}
.pt-link-preset[data-color="#60a5fa"] { background: #60a5fa; }
.pt-link-preset[data-color="#22c55e"] { background: #22c55e; }
.pt-link-preset[data-color="#9333ea"] { background: #9333ea; }
.pt-link-preset[data-color="#ea580c"] { background: #ea580c; }
.pt-link-preset.is-active { border-color: #1d2327; box-shadow: 0 0 0 2px #fff, 0 0 0 4px #2271b1; }
.pt-link-color-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pt-hs-color-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pt-hs-line-only-toggle { margin: 0; }
.pt-link-preview {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 14px; font-weight: 600; color: #60a5fa;
}
.pt-link-preview-arrow { width: 16px; height: 16px; flex-shrink: 0; }
.pt-nav-icon-preview-wrap { display: flex; align-items: center; gap: 10px; margin-top: 6px; font-size: 12px; color: #50575e; }
.pt-nav-icon-preview {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; min-height: 28px; padding: 4px 8px;
	background: #f6f7f7; border: 1px solid #dcdcde; border-radius: 6px; color: #1d2327;
}
.pt-nav-icon-preview .pt-nav-ico { width: 18px; height: 18px; }
.pt-nav-icon-preview .pt-nav-ico-drawer { width: 18px; height: 18px; }
.pt-nav-icon-preview .pt-nav-ico-img { width: 18px; height: 18px; object-fit: contain; }
.pt-field-row { display: flex; gap: 8px;flex-wrap: wrap; }
.pt-field-row > * { flex: 1; }
.pt-sub { font-size: 12px; font-weight: 600; color: #50575e; display: block; margin-bottom: 4px; }

.pt-switch { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; }

/* steps */
.pt-steps { display: flex; flex-direction: column; gap: 8px; }
.pt-step { border: 1px solid #e2e4e7; border-radius: 8px; overflow: hidden; background: #fbfbfc; }
.pt-step.is-active { border-color: #1B6EF3; box-shadow: 0 0 0 1px #1B6EF3; }
.pt-step-head {
	display: flex; align-items: center; gap: 8px; padding: 9px 12px; cursor: pointer; background: #fff;
}
.pt-step-num {
	width: 20px; height: 20px; border-radius: 50%; background: #1B6EF3; color: #fff;
	font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pt-step-title-preview { flex: 1; font-size: 13px; font-weight: 500; color: #1d2327; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pt-step-tools { display: flex; align-items: center; gap: 6px; }
.pt-step-tools .button-link { color: #787c82; text-decoration: none; font-size: 14px; line-height: 1; cursor: pointer; padding: 2px 4px; }
.pt-step-tools .button-link:hover { color: #1d2327; }
.pt-step-del:hover { color: #dc2626 !important; }
.pt-step-body { padding: 12px; border-top: 1px solid #f0f0f1; }
.pt-step.collapsed .pt-step-body { display: none; }

.pt-image-row { display: flex; gap: 6px; }
.pt-image-row input { flex: 1; }

.pt-label-fields summary { font-size: 12px; cursor: pointer; color: #50575e; margin-top: 4px; }
.pt-label-fields .pt-field-row { margin-top: 8px; }

/* preview */
.prodtour-preview-wrap { position: sticky; top: 40px; }
.pt-preview-toolbar { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.pt-preview-toolbar .pt-hint { font-size: 12px; color: #787c82; }
.pt-preview { background: #f0f2f5; border: 1px solid #e2e4e7; border-radius: 10px; padding: 20px; min-height: 300px; }
.pt-preview-empty { text-align: center; color: #787c82; font-size: 13px; padding: 60px 20px; }

.pt-pv-imgwrap { position: relative; line-height: 0; border-radius: 10px; overflow: visible; cursor: crosshair; box-shadow: 0 2px 16px rgba(0,0,0,.12); }
.pt-pv-imgwrap img { width: 100%; height: auto; display: block; border-radius: 10px; user-select: none; pointer-events: none; }
.pt-pv-hs { position: absolute; border: 2.5px solid #1B6EF3; background: transparent; border-radius: 8px; pointer-events: none; }
.pt-hs-fill-none.pt-pv-hs,
.pt-pv-hs.pt-hs-fill-none {
	background: transparent !important;
	background-color: transparent !important;
}
.pt-pv-pop {
	position: absolute; z-index: 6; pointer-events: none;
	background: var(--pt-pv-bg, #fff); border: 2px solid var(--pt-pv-accent, #1B6EF3); border-radius: 10px;
	padding: 8px 10px 8px 12px; font-size: 11px; line-height: 1.35; color: #374151;
	box-shadow: 0 4px 16px rgba(0,0,0,.12); max-width: calc(100% - 8px);
	overflow: visible;
}
.pt-pv-pop-label {
	display: block; font-size: 9px; font-weight: 700; letter-spacing: .04em;
	text-transform: uppercase; color: var(--pt-pv-accent, #1B6EF3); margin-bottom: 4px;
}
.pt-pv-pop-arrow {
	position: absolute;
	width: 0;
	height: 0;
	z-index: 2;
	pointer-events: none;
	border: none;
	background: transparent;
}
.pt-pv-pop-arrow::before,
.pt-pv-pop-arrow::after {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
}
.pt-pv-pop.arrow-right .pt-pv-pop-arrow {
	width: 12px; height: 22px; right: -12px; top: 50%; margin-top: -11px;
}
.pt-pv-pop.arrow-right .pt-pv-pop-arrow::before {
	left: 0; top: 0;
	border-width: 11px 0 11px 12px;
	border-color: transparent transparent transparent var(--pt-pv-accent, #1B6EF3);
}
.pt-pv-pop.arrow-right .pt-pv-pop-arrow::after {
	left: 0; top: 2px;
	border-width: 9px 0 9px 10px;
	border-color: transparent transparent transparent var(--pt-pv-bg, #fff);
}
.pt-pv-pop.arrow-left .pt-pv-pop-arrow {
	width: 12px; height: 22px; left: -12px; top: 50%; margin-top: -11px;
}
.pt-pv-pop.arrow-left .pt-pv-pop-arrow::before {
	right: 0; top: 0;
	border-width: 11px 12px 11px 0;
	border-color: transparent var(--pt-pv-accent, #1B6EF3) transparent transparent;
}
.pt-pv-pop.arrow-left .pt-pv-pop-arrow::after {
	right: 0; top: 2px;
	border-width: 9px 10px 9px 0;
	border-color: transparent var(--pt-pv-bg, #fff) transparent transparent;
}
.pt-pv-pop.arrow-top .pt-pv-pop-arrow {
	width: 22px; height: 12px; top: -12px; left: 24px;
}
.pt-pv-pop.arrow-top .pt-pv-pop-arrow::before {
	left: 50%; bottom: -1px;
	transform: translateX(-50%);
	border-width: 0 11px 12px 11px;
	border-color: transparent transparent var(--pt-pv-accent, #1B6EF3) transparent;
}
.pt-pv-pop.arrow-top .pt-pv-pop-arrow::after {
	display: none;
}
.pt-pv-pop.arrow-bottom .pt-pv-pop-arrow {
	width: 22px; height: 12px; bottom: -12px; left: 24px;
}
.pt-pv-pop.arrow-bottom .pt-pv-pop-arrow::before {
	left: 50%; top: -1px;
	transform: translateX(-50%);
	border-width: 12px 11px 0 11px;
	border-color: var(--pt-pv-accent, #1B6EF3) transparent transparent transparent;
}
.pt-pv-pop.arrow-bottom .pt-pv-pop-arrow::after {
	display: none;
}
.pt-pv-pop strong { display: block; font-size: 12px; color: #111; font-weight: 600; }
.pt-pv-label {
	position: absolute; display: flex; align-items: center; gap: 6px;
	background: #fff; border: 1px solid #e5e7eb; border-left: 3px solid #1B6EF3;
	font-size: 11px; font-weight: 500; padding: 4px 8px; border-radius: 0 8px 8px 0;
	white-space: nowrap; line-height: 1; box-shadow: 0 2px 10px rgba(0,0,0,.1);
}
.pt-pv-av { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; color: #fff; }

/* v1.1 additions */
.pt-note { font-size: 11px; color: #787c82; margin: 8px 0 0; line-height: 1.5; }
.pt-add-group { display: inline-flex; gap: 6px; }
.pt-demo-btn-toggle { margin-top: 10px; display: flex; }
.pt-step-demo { background: #f0f6ff; }
.pt-step-demo .pt-step-head { background: #eaf2ff; }
.pt-step-badge {
	font-size: 9px; font-weight: 800; letter-spacing: .06em; color: #fff;
	background: #1B6EF3; padding: 2px 6px; border-radius: 4px; flex-shrink: 0;
}
/* Desktop popup shell only (md+) — do not apply on stacked mobile (breaks borders/shadow) */
@media (min-width: 768px) {
.prodtour-root.is-popup:not(.pt-layout-stacked) .pt-shell-inner {
	box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
	overflow: visible;
	border-radius:0px 0px 12px 12px;
	padding: 0;
}
.prodtour-root.is-popup:not(.pt-layout-stacked) .pt-shell-title + .pt-shell-inner .pt-img {
	border-radius: 0 0 12px 12px;
}
.prodtour-root .pt-shell.pt-has-page-title .pt-shell-tour-fit {
	background: rgba(17, 24, 39, .6);
    backdrop-filter: blur(2px);
}
.prodtour-root .pt-shell.pt-has-page-title .pt-shell-inner {
	background: #fff;
}
}.pt-overlay.pt-intro-locked.show {
  
    background: rgba(17, 24, 39, .6);
    backdrop-filter: blur(2px);
}

.pt-pop { transition: none; animation: none !important; transform: none !important; }
.pt-pop.show { animation: none !important; transition: none; transform: none !important; }html.pt-tour-open .prodtour-root * {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}