.banner.has-gorantau-tour {
	overflow: visible;
	position: relative;
}

.has-gorantau-tour-stage {
	min-height: var(--gorantau-stage-min-height, auto);
	overflow: visible !important;
	position: relative;
}

.has-gorantau-tour-stage::before {
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 20;
}

.banner.has-gorantau-tour::after {
	content: none;
}

.banner.has-gorantau-tour .banner-layers.container {
	overflow: visible;
	z-index: 21;
}

.gorantau-tour-hotspot {
	--gorantau-pin-size: 38px;
	--gorantau-pin-color: #c9a96e;
	z-index: 12;
	transform: translate(-50%, -100%);
	padding-bottom: 6px;
	transition: filter .25s ease, opacity .25s ease;
}

.gorantau-tour-hotspot.is-active {
	z-index: 36;
}

.banner.has-gorantau-tour .gorantau-tour-hotspot:not(.is-active) {
	filter: brightness(.62);
}

.gorantau-tour-pin {
	all: unset;
	align-items: center;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 3px;
	position: relative;
}

.gorantau-tour-pin:focus-visible .gorantau-tour-pin__drop {
	outline: 2px solid #fff;
	outline-offset: 5px;
}

.gorantau-tour-pin__drop {
	align-items: center;
	background: var(--gorantau-pin-color);
	border-radius: 50% 50% 50% 0;
	box-shadow: 0 4px 14px rgba(0, 0, 0, .4), 0 0 0 2px rgba(255, 255, 255, .16);
	display: flex;
	height: var(--gorantau-pin-size);
	justify-content: center;
	position: relative;
	transform: rotate(-45deg);
	transition: transform .35s cubic-bezier(.34, 1.56, .64, 1), box-shadow .35s ease;
	width: var(--gorantau-pin-size);
}

.gorantau-tour-pin__drop::before {
	background: rgba(255, 255, 255, .18);
	border-radius: 50%;
	content: "";
	inset: 5px;
	position: absolute;
}

.gorantau-tour-pin__drop svg {
	fill: none;
	height: 17px;
	position: relative;
	stroke: #fff;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
	transform: rotate(45deg);
	width: 17px;
	z-index: 1;
}

.gorantau-tour-hotspot.is-active .gorantau-tour-pin__drop,
.gorantau-tour-pin:hover .gorantau-tour-pin__drop {
	box-shadow: 0 10px 28px rgba(0, 0, 0, .5), 0 0 0 3px rgba(255, 255, 255, .24), 0 0 24px var(--gorantau-pin-color);
	transform: rotate(-45deg) scale(1.2) translateY(-5px);
}

.gorantau-tour-pin__pulse {
	border: 2px solid var(--gorantau-pin-color);
	border-radius: 50% 50% 50% 0;
	bottom: -2px;
	height: var(--gorantau-pin-size);
	left: 50%;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	transform: translateX(-50%) rotate(-45deg) scale(1);
	width: var(--gorantau-pin-size);
}

.gorantau-tour-hotspot.is-active .gorantau-tour-pin__pulse {
	animation: gorantau-tour-pin-pulse 2.2s ease-out infinite;
}

@keyframes gorantau-tour-pin-pulse {
	0% {
		opacity: .7;
		transform: translateX(-50%) rotate(-45deg) scale(1);
	}
	100% {
		opacity: 0;
		transform: translateX(-50%) rotate(-45deg) scale(2.4);
	}
}

.gorantau-tour-pin__step {
	align-items: center;
	background: #11141e;
	border: 1.5px solid var(--gorantau-pin-color);
	border-radius: 50%;
	color: var(--gorantau-pin-color);
	display: flex;
	font-size: 8px;
	font-weight: 800;
	height: 16px;
	justify-content: center;
	pointer-events: none;
	position: absolute;
	right: -7px;
	top: -7px;
	width: 16px;
	z-index: 2;
}

.gorantau-tour-pin__label {
	background: rgba(14, 16, 23, .86);
	border: 1px solid var(--gorantau-pin-color);
	border-radius: 99px;
	color: var(--gorantau-pin-color);
	display: block;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.5;
	opacity: .7;
	padding: 2px 8px;
	text-transform: uppercase;
	transform: translateY(2px);
	transition: opacity .25s ease, transform .25s cubic-bezier(.34, 1.56, .64, 1);
	white-space: nowrap;
}

.gorantau-tour-hotspot.is-active .gorantau-tour-pin__label,
.gorantau-tour-pin:hover .gorantau-tour-pin__label {
	opacity: 1;
	transform: translateY(0);
}

.gorantau-tour-layer {
	--gorantau-card-width: min(340px, 34vw);
	--gorantau-card-bg: rgba(17, 20, 30, .97);
	--gorantau-card-border: rgba(255, 255, 255, .1);
	--gorantau-card-text: #f5f0e6;
	--gorantau-card-muted: rgba(245, 240, 230, .65);
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 30;
}

.gorantau-tour-layer__connector {
	height: 100%;
	inset: 0;
	overflow: visible;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.gorantau-tour-layer__connector-shadow,
.gorantau-tour-layer__connector-main {
	fill: none;
	stroke-linecap: round;
}

.gorantau-tour-layer__connector-shadow {
	opacity: 0;
	stroke-width: 5;
	transition: opacity .35s ease;
}

.gorantau-tour-layer__connector-main {
	filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .24));
	stroke-dasharray: 7 9;
	stroke-width: 2.25;
}

.gorantau-tour-cards {
	inset: 18px 22px auto auto;
	pointer-events: none;
	position: absolute;
	width: var(--gorantau-card-width);
	z-index: 2;
}

.gorantau-tour-layer[data-card-position="left"] .gorantau-tour-cards {
	inset: 18px auto auto 22px;
}

.gorantau-tour-card {
	background: var(--gorantau-card-bg);
	border: 1px solid var(--gorantau-card-border);
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, .42), inset 0 0 0 1px rgba(255, 255, 255, .04);
	color: var(--gorantau-card-text);
	display: flex;
	flex-direction: column;
	left: 0;
	max-height: none;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	position: absolute;
	top: 0;
	transform: translateX(18px) scale(.97);
	transition: opacity .35s ease, transform .4s cubic-bezier(.34, 1.56, .64, 1);
	width: 100%;
}

.gorantau-tour-layer[data-card-position="left"] .gorantau-tour-card {
	transform: translateX(-18px) scale(.97);
}

.gorantau-tour-card.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(0) scale(1);
}

.gorantau-tour-card__accent {
	background: var(--gorantau-active-color, #c9a96e);
	flex: 0 0 3px;
}

.gorantau-tour-card__image {
	background: #1a1e2a;
	flex: 0 0 155px;
	overflow: hidden;
	position: relative;
}

.gorantau-tour-card__image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gorantau-tour-card__placeholder {
	align-items: center;
	background: linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02));
	color: rgba(255, 255, 255, .34);
	display: flex;
	font-size: 12px;
	height: 100%;
	justify-content: center;
	text-transform: uppercase;
}

.gorantau-tour-card__badge {
	background: var(--gorantau-active-color, #c9a96e);
	border-radius: 99px;
	color: #fff;
	font-size: 8px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.4;
	padding: 4px 9px;
	position: absolute;
	right: 11px;
	text-transform: uppercase;
	top: 11px;
}

.gorantau-tour-card__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow: visible;
	padding: 16px 18px 18px;
}

.gorantau-tour-card__subtitle {
	color: var(--gorantau-active-color, #c9a96e);
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.gorantau-tour-card__title {
	color: var(--gorantau-card-text);
	font-size: 21px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.15;
	margin: 0 0 10px;
}

.gorantau-tour-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
	align-items: center;
	margin-bottom: 12px;
}

.gorantau-tour-card__meta > span:not(.gorantau-tour-card__meta-tags) {
	color: var(--gorantau-card-muted);
	font-size: 11px;
	line-height: 1.4;
}

.gorantau-tour-card__description {
	color: var(--gorantau-card-muted);
	font-size: 13px;
	line-height: 1.65;
	margin: 0 0 14px;
}

.gorantau-tour-card__timeline {
	display: grid;
	gap: 9px;
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
}

.gorantau-tour-card__timeline li {
	display: grid;
	gap: 2px;
	grid-template-columns: 24px 1fr;
}

.gorantau-tour-card__timeline-index {
	align-items: center;
	background: rgba(201, 169, 110, .16);
	border: 1px solid var(--gorantau-active-color, #c9a96e);
	border-radius: 50%;
	color: var(--gorantau-active-color, #c9a96e);
	display: flex;
	font-size: 9px;
	font-weight: 800;
	height: 20px;
	justify-content: center;
	margin-top: 1px;
	width: 20px;
}

.gorantau-tour-card__timeline-main {
	color: var(--gorantau-card-text);
	display: block;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.32;
	margin-bottom: 4px;
}

.gorantau-tour-card__timeline-duration {
	align-items: center;
	background: rgba(201, 169, 110, .13);
	border: 1px solid rgba(201, 169, 110, .24);
	border-radius: 99px;
	color: var(--gorantau-active-color, #c9a96e);
	display: inline-flex;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	margin: 0 0 4px;
	padding: 4px 8px;
	text-transform: uppercase;
	width: fit-content;
}

.gorantau-tour-card__timeline-pills,
.gorantau-tour-card__timeline-tags,
.gorantau-tour-card__meta-tags {
	align-items: center;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 6px;
}

.gorantau-tour-card__timeline-pills {
	margin: 0 0 4px;
}

.gorantau-tour-card__timeline-pills .gorantau-tour-card__timeline-duration {
	margin: 0;
}

.gorantau-tour-pill {
	--gorantau-pill-bg: rgba(201, 169, 110, .18);
	align-items: center;
	background: var(--gorantau-pill-bg);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 99px;
	color: #fff;
	display: inline-flex;
	font-size: 9px;
	font-weight: 800;
	gap: 4px;
	line-height: 1;
	min-height: 21px;
	padding: 0 8px;
	text-transform: uppercase;
}

.gorantau-tour-card__meta-tags .gorantau-tour-pill,
.gorantau-tour-card__timeline-tags .gorantau-tour-pill {
	color: #fff;
	font-size: 9px;
	line-height: 1;
}

.gorantau-tour-pill i {
	font-size: 10px;
	line-height: 1;
}

.gorantau-tour-pill span {
	color: inherit;
	font-size: inherit;
	line-height: inherit;
}

.gorantau-tour-card__timeline-desc {
	color: rgba(245, 240, 230, .66);
	display: block;
	font-size: 11.5px;
	line-height: 1.55;
	max-width: 28em;
}

.gorantau-tour-card__spot-images {
	display: flex;
	gap: 7px;
	margin-top: 8px;
	max-width: 100%;
}

.gorantau-tour-card__spot-image {
	border: 1px solid rgba(201, 169, 110, .32);
	border-radius: 7px;
	display: block;
	flex: 0 0 58px;
	height: 46px;
	overflow: hidden;
	position: relative;
	transition: border-color .2s ease, opacity .2s ease, transform .2s ease;
}

.gorantau-tour-card__spot-image:hover,
.gorantau-tour-card__spot-image:focus-visible {
	border-color: var(--gorantau-active-color, #c9a96e);
	opacity: .9;
	outline: none;
	transform: translateY(-1px);
}

.gorantau-tour-card__spot-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.gorantau-tour-card__cta {
	align-items: center;
	background: var(--gorantau-active-color, #c9a96e);
	border-radius: 99px;
	color: #fff;
	display: inline-flex;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1;
	min-height: 34px;
	padding: 0 17px;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity .2s ease, transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

.gorantau-tour-card__cta:hover {
	color: #fff;
	opacity: .86;
	transform: translateY(-2px);
}

.gorantau-tour-arrow {
	align-items: center;
	background: rgba(17, 20, 30, .92);
	border: 1px solid rgba(201, 169, 110, .54);
	border-radius: 50%;
	box-shadow: 0 12px 28px rgba(0, 0, 0, .26);
	color: var(--gorantau-active-color, #c9a96e);
	cursor: pointer;
	display: flex;
	font-size: calc(var(--gorantau-arrow-size, 28px) * .68);
	font-weight: 400;
	height: var(--gorantau-arrow-size, 28px);
	justify-content: center;
	line-height: 1;
	pointer-events: auto;
	position: absolute;
	top: var(--gorantau-arrow-top, 0);
	transition: background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
	width: var(--gorantau-arrow-size, 28px);
	z-index: 4;
}

.gorantau-tour-arrow:hover,
.gorantau-tour-arrow:focus-visible {
	background: var(--gorantau-active-color, #c9a96e);
	border-color: var(--gorantau-active-color, #c9a96e);
	color: #fff;
	outline: none;
}

.gorantau-tour-arrow:disabled {
	cursor: default;
	opacity: .35;
}

.gorantau-tour-arrow--prev {
	left: var(--gorantau-arrow-prev-x, auto);
	right: auto;
	transform: none;
}

.gorantau-tour-arrow--prev:hover,
.gorantau-tour-arrow--prev:focus-visible {
	transform: translateY(-2px);
}

.gorantau-tour-arrow--next {
	left: var(--gorantau-arrow-next-x, auto);
	right: auto;
	transform: none;
}

.gorantau-tour-arrow--next:hover,
.gorantau-tour-arrow--next:focus-visible {
	transform: translateY(-2px);
}

.gorantau-tour-nav {
	display: flex;
	gap: 7px;
	justify-content: center;
	left: var(--gorantau-dots-left, 22px);
	pointer-events: auto;
	position: absolute;
	right: auto;
	top: var(--gorantau-dots-top, calc(100% - 28px));
	width: var(--gorantau-dots-width, calc(100% - 44px));
	z-index: 3;
}

.gorantau-tour-nav button {
	all: unset;
	background: rgba(255, 255, 255, .28);
	border-radius: 99px;
	cursor: pointer;
	height: 7px;
	position: relative;
	transition: width .3s cubic-bezier(.34, 1.56, .64, 1), background .3s ease;
	width: 7px;
}

.gorantau-tour-nav button::after {
	content: "";
	inset: -8px;
	position: absolute;
}

.gorantau-tour-nav button.is-active {
	background: var(--gorantau-active-color, #c9a96e);
	width: 22px;
}

@media (max-width: 849px) {
	.has-gorantau-tour-stage {
		margin-bottom: var(--gorantau-mobile-stack-height, 420px);
	}

	.gorantau-tour-layer {
		inset: auto 0 calc(-1 * var(--gorantau-mobile-stack-height, 420px)) 0;
		min-height: var(--gorantau-mobile-stack-height, 420px);
		pointer-events: auto;
		z-index: 25;
	}

	.gorantau-tour-layer__connector {
		display: none;
	}

	.gorantau-tour-cards {
		align-items: stretch;
		display: flex;
		gap: 14px;
		inset: 16px 0 50px;
		overflow-x: auto;
		overflow-y: hidden;
		overscroll-behavior-x: contain;
		padding: 0 16px;
		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		width: auto;
		scrollbar-width: none;
		min-height: fit-content;
	}

	.gorantau-tour-cards::-webkit-scrollbar {
		display: none;
	}

	.gorantau-tour-layer[data-card-position="left"] .gorantau-tour-cards {
		inset: 16px 0 50px;
	}

	.gorantau-tour-card,
	.gorantau-tour-layer[data-card-position="left"] .gorantau-tour-card {
		flex: 0 0 min(86vw, 360px);
		height: auto;
		max-height: none;
		min-height: 100%;
		opacity: 1;
		pointer-events: auto;
		position: relative;
		scroll-snap-align: center;
		transform: none;
		transition: box-shadow .25s ease;
	}

	.gorantau-tour-card:not(.is-active) {
		box-shadow: 0 12px 34px rgba(0, 0, 0, .28);
	}

	.gorantau-tour-card__image {
		flex-basis: 132px;
	}

	.gorantau-tour-card__body {
		padding: 14px 15px 16px;
	}

	.gorantau-tour-arrow--prev,
	.gorantau-tour-arrow--prev:hover,
	.gorantau-tour-arrow--prev:focus-visible {
		left: auto;
		right: 52px;
		top: 0;
	}

	.gorantau-tour-arrow--next,
	.gorantau-tour-arrow--next:hover,
	.gorantau-tour-arrow--next:focus-visible {
		left: auto;
		right: 16px;
		top: 0;
	}

	.gorantau-tour-nav {
		bottom: 18px;
		left: 70px;
		right: 70px;
		top: auto;
		width: auto;
	}
}
