/* =========================================================
   MU EXODUS - MENTOR ITEM PREVIEWS & STAGE
   ========================================================= */

.mentor-item-preview {
	position: relative;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(218, 171, 63, 0.35);
	border-radius: 12px;
	background: radial-gradient(circle at 50% 40%, rgba(218, 171, 63, 0.15), rgba(11, 21, 28, 0.95) 75%);
	box-shadow: inset 0 0 12px rgba(218, 171, 63, 0.08), 0 4px 10px rgba(0, 0, 0, 0.35);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
	cursor: help;
	z-index: 2;
}

.mentor-item-preview:hover {
	transform: scale(1.08) translateY(-2px);
	border-color: #e5b94c;
	box-shadow: inset 0 0 16px rgba(218, 171, 63, 0.2), 0 6px 16px rgba(0, 0, 0, 0.45);
}

.mentor-item-preview img {
	display: block;
	max-width: 40px;
	max-height: 40px;
	object-fit: contain;
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.85));
	transition: transform .22s ease;
}

.mentor-item-preview:hover img {
	transform: scale(1.05);
}

.mentor-item-qty {
	position: absolute;
	right: -4px;
	bottom: -4px;
	min-width: 20px;
	padding: 1px 5px;
	border: 1px solid #e1b44b;
	border-radius: 999px;
	background: #0c1820;
	color: #f5c242;
	font-size: 9px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.mentor-item-preview.fallback {
	color: #dfb249;
	font-size: 20px;
}
