/**
 * Premium product cards — Steam / Epic style overlay.
 */

.nx-premium-v2 .ns-pro-product,
.ns-pro-product.nx-premium-product {
	position: relative;
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
	transform-style: preserve-3d;
}

.nx-premium-v2 .ns-pro-product:hover,
.ns-pro-product.nx-premium-product:hover {
	transform: translateY(-6px) rotateX(2deg);
	box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 0 24px rgba(120,140,255,.2);
}

.nx-premium-product__glow {
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(127,92,255,.25), rgba(59,201,255,.15));
	opacity: 0;
	transition: opacity 0.3s;
	pointer-events: none;
	z-index: 0;
}

.nx-premium-v2 .ns-pro-product:hover .nx-premium-product__glow,
.ns-pro-product.nx-premium-product:hover .nx-premium-product__glow {
	opacity: 1;
}

.nx-premium-product__badges {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	z-index: 2;
}

.nx-premium-product__badge {
	padding: 0.2rem 0.5rem;
	border-radius: 6px;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
}

.nx-premium-product__badge--sale {
	background: #e74c3c;
}

.nx-premium-product__badge--premium {
	background: linear-gradient(90deg, #7f5cff, #3bc9ff);
}

.nx-premium-product__badge--stock {
	background: rgba(0,0,0,.55);
}

.nx-premium-v2 .ns-pro-product__thumb {
	transition: transform 0.4s ease;
}

.nx-premium-v2 .ns-pro-product:hover .ns-pro-product__thumb {
	transform: scale(1.03);
}

.nx-premium-v2 .ns-pro-marketplace__card {
	transition: transform 0.25s, box-shadow 0.25s;
}

.nx-premium-v2 .ns-pro-marketplace__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
