.wc-ih {
	width: 100%;
}

/* IMAGE CONTAINER */
.wc-ih-container {
	position: relative;
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	aspect-ratio: 16 / 9;
}

/* HOTSPOT */
.wc-ih-spot {
	position: absolute;
	z-index: 1;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	background: rgba(255, 102, 0, 0.3);
	border: 2px solid #ff6600;
	font-weight: bold;
	color: #fff;
	font-size: 14px;
	transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
	user-select: none;
	transform: translate(-50%, -50%);
}

.wc-ih-spot:hover,
.wc-ih-spot.is-active {
	z-index: 20;
}

.wc-ih-spot:hover {
	background: rgba(255, 102, 0, 0.5);
	transform: translate(-50%, -50%) scale(1.1);
}

.wc-ih-spot.is-active {
	background: #ff6600;
	box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

.wc-ih-spot-number {
	pointer-events: none;
}

/* TOOLTIP */
.wc-ih-tooltip {
	position: absolute;
	background: #fff;
	padding: 16px;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 10;
	width: 250px;
	pointer-events: none;
}

.wc-ih-tooltip.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.wc-ih-tooltip-title {
	font-weight: 700;
	color: #000;
	margin-bottom: 8px;
	font-size: 15px;
}

.wc-ih-tooltip-text {
	color: #666;
	font-size: 13px;
	line-height: 1.5;
}

.wc-ih-tooltip-arrow {
	position: absolute;
	width: 12px;
	height: 12px;
	background: #fff;
	transform: rotate(45deg);
	z-index: -1;
}

/* MOBILE */
@media (max-width: 768px) {
	.wc-ih-spot {
		width: 40px;
		height: 40px;
		font-size: 12px;
	}

	.wc-ih-tooltip {
		width: 200px;
	}

	.wc-ih-tooltip-title {
		font-size: 14px;
	}

	.wc-ih-tooltip-text {
		font-size: 12px;
	}
}
