.gpm-tour-highlight {
	position: relative;
	z-index: 10001;
	outline: 3px solid #c9a13b;
	outline-offset: 3px;
	border-radius: 6px;
	box-shadow: 0 0 0 6000px rgba(7, 21, 36, 0.55);
}

.gpm-tour-overlay {
	position: fixed;
	inset: 0;
	z-index: 10000;
	background: transparent;
}

.gpm-tour-card {
	position: absolute;
	z-index: 10002;
	max-width: 320px;
	background: #ffffff;
	color: #1f2937;
	border-radius: 10px;
	padding: 16px 18px;
	box-shadow: 0 12px 30px rgba(7, 21, 36, 0.35);
	font-family: inherit;
}

html[data-gpm-theme="dark"] .gpm-tour-card {
	background: #101c2c;
	color: #f2f4f7;
}

.gpm-tour-card__counter {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #c9a13b;
	margin-bottom: 4px;
}

.gpm-tour-card h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
}

.gpm-tour-card p {
	margin: 0 0 14px;
	font-size: 0.9rem;
	line-height: 1.4;
}

.gpm-tour-card__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}

.gpm-tour-card__actions button {
	border: 0;
	border-radius: 6px;
	padding: 6px 12px;
	font-size: 0.85rem;
	cursor: pointer;
}

.gpm-tour-card__skip {
	background: transparent;
	color: inherit;
	opacity: 0.7;
	margin-right: auto;
}

.gpm-tour-card__prev {
	background: transparent;
	border: 1px solid currentColor;
	color: inherit;
}

.gpm-tour-card__next {
	background: #0d233a;
	color: #ffffff;
}

html[data-gpm-theme="dark"] .gpm-tour-card__next {
	background: #c9a13b;
	color: #101c2c;
}

