.akin-map-hotspot-wrapper {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.akin-map-container {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

.akin-map-image {
	display: block;
	max-width: 100%;
	height: auto;
}

.akin-hotspot-area {
	position: absolute;
	transition: opacity 0.2s ease;
	cursor: pointer;
	background: radial-gradient(circle at center, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
}

.akin-hotspot-area:hover {
	opacity: 0.7;
	background: radial-gradient(circle at center, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
}

@keyframes akin-pulse {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.akin-hotspot-tooltip {
	position: absolute;
	display: none;
	z-index: 0;
	pointer-events: none;
	transform: none;
	transition: opacity 0.2s ease;
}

.akin-hotspot-tooltip.akin-visible {
	display: block;
	opacity: 1;
}

.akin-tooltip-image {
	display: block;
	width: 220px !important;
	max-width: 220px !important;
	height: auto;
	border-radius: 6px;
	transform-origin: top left;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.akin-hotspot-tooltip.akin-visible .akin-tooltip-image {
	transform: scale(1.05);
}

.akin-hotspot-area:focus {
	outline: none;
}

.akin-hotspot-area:focus-visible::before {
	animation: none;
	box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.8);
	border-radius: 50%;
}

@media (max-width: 768px) {
	.akin-tooltip-image {
		width: 90px !important;
		max-width: 90px !important;
		height: auto;
	}

	.akin-hotspot-tooltip.akin-visible .akin-tooltip-image {
		transform: scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.akin-hotspot-area::before,
	.akin-tooltip-image,
	.akin-hotspot-tooltip {
		animation: none !important;
		transition: none !important;
	}
}