.ih-frontend-wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
	--ih-dot-size: 20px;
	--ih-dot-fill: #ffffff;
	--ih-dot-border: #ffffff;
	--ih-dot-border-w: 2px;
}

.ih-frontend-wrap img {
	display: block;
	max-width: 100%;
	height: auto;
}

.ih-hotspot {
	position: absolute;
	transform: translate(-50%, -50%);
}

.ih-hotspot-dot {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--ih-dot-size);
	height: var(--ih-dot-size);
	border-radius: 50%;
	border: var(--ih-dot-border-w) solid var(--ih-dot-border);
	background: var(--ih-dot-fill);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	padding: 0;
	text-decoration: none;
	animation: ih-pulse 2.8s ease-in-out infinite;
}

.ih-hotspot-dot:focus-visible {
	outline: 2px solid #0a7ac2;
	outline-offset: 2px;
}

.ih-hotspot-tooltip {
	position: absolute;
	left: 14px;
	top: 14px;
	background: #fff;
	padding: 10px 12px;
	min-width: 180px;
	border-radius: 6px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 20;
}

.ih-hotspot-tooltip-link {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
}

.ih-hotspot-tooltip-link:hover {
	background: #fcfcfc;
}

.ih-hotspot-tooltip strong {
	display: block;
	font-size: 14px;
	line-height: 1.3;
}

.ih-hotspot-tooltip span {
	display: block;
	margin-top: 4px;
	font-size: 13px;
	color: #4a4a4a;
}

.ih-hotspot:hover .ih-hotspot-tooltip,
.ih-hotspot:focus-within .ih-hotspot-tooltip,
.ih-hotspot.is-active .ih-hotspot-tooltip {
	display: block;
}

.ih-admin-edit-link-wrap {
	position: absolute;
	left: 50%;
	bottom: 10px;
	transform: translateX(-50%);
	margin: 0;
	z-index: 25;
}

.ih-admin-edit-link {
	display: inline-block;
	font-size: 12px;
	color: #1d2327;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.92);
	padding: 6px 10px;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

@keyframes ih-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
	}
	50% {
		transform: scale(1.14);
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
	}
}
