/*
 * Multicharts Universe — Featured Products (curated picks)
 *
 * Three product cards, more editorial than catalog. Each card has a
 * dark media area showing the product SKU as a typographic mark, then
 * editorial body copy, then price + ghost CTA.
 */

body.mcu-theme .mcu-featured {
	padding-block: var(--space-3xl);
	background:
		radial-gradient(ellipse at 20% 100%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
		linear-gradient(180deg, var(--color-deep-space) 0%, var(--color-void) 100%);
}

body.mcu-theme .mcu-featured__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-lg);
	list-style: none;
	padding: 0;
	margin: 0 0 var(--space-xl);
}

@media (min-width: 720px) {
	body.mcu-theme .mcu-featured__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-md);
	}
}

body.mcu-theme .mcu-featured__item { margin: 0; padding: 0; list-style: none; }

body.mcu-theme .mcu-featured__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: var(--color-cosmic-night);
	border: 1px solid var(--color-border-subtle);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform var(--dur-base) var(--ease-celestial),
	            border-color var(--dur-base) var(--ease-celestial),
	            box-shadow var(--dur-base) var(--ease-celestial);
}

body.mcu-theme .mcu-featured__card:hover {
	transform: translateY(-4px);
	border-color: var(--color-gold);
	box-shadow: var(--shadow-lg), var(--glow-gold-sm);
}

/* === Media: SKU as typographic mark on dark gradient ================== */
body.mcu-theme .mcu-featured__media {
	position: relative;
	min-height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 50% 50%, var(--color-gold-veil) 0%, transparent 70%),
		linear-gradient(135deg, var(--color-stardust) 0%, var(--color-cosmic-night) 100%);
	overflow: hidden;
}

body.mcu-theme .mcu-featured__media::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(90deg, transparent 49.5%, var(--color-border-subtle) 50%, transparent 50.5%),
		linear-gradient(0deg, transparent 49.5%, var(--color-border-subtle) 50%, transparent 50.5%);
	background-size: 48px 48px;
	opacity: 0.3;
}

body.mcu-theme .mcu-featured__sku {
	position: relative;
	font-family: var(--font-display);
	font-size: clamp(3rem, 6vw, 4rem);
	font-weight: var(--weight-light);
	letter-spacing: var(--tracking-tight);
	background: linear-gradient(135deg, var(--color-gold-bright) 0%, var(--color-gold-deep) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	z-index: 1;
}

/* === Body ============================================================= */
body.mcu-theme .mcu-featured__body {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	padding: var(--space-lg);
	flex: 1 1 auto;
}

body.mcu-theme .mcu-featured__tag {
	font-family: var(--font-body);
	font-size: var(--text-xs);
	font-weight: var(--weight-medium);
	letter-spacing: var(--tracking-widest);
	text-transform: uppercase;
	color: var(--color-gold);
	margin: 0;
}

body.mcu-theme .mcu-featured__title {
	font-family: var(--font-display);
	font-size: var(--text-xl);
	font-weight: var(--weight-regular);
	line-height: var(--leading-snug);
	letter-spacing: var(--tracking-tight);
	color: var(--color-text-primary);
	margin: 0;
}

body.mcu-theme .mcu-featured__lead {
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	color: var(--color-text-secondary);
	margin: var(--space-xs) 0 0;
	flex: 1 1 auto;
}

body.mcu-theme .mcu-featured__foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: var(--space-md) 0 0;
	padding-top: var(--space-sm);
	border-top: 1px solid var(--color-border-subtle);
}

body.mcu-theme .mcu-featured__price {
	font-family: var(--font-mono);
	font-size: var(--text-lg);
	font-weight: var(--weight-medium);
	color: var(--color-gold-bright);
	letter-spacing: var(--tracking-tight);
}

body.mcu-theme .mcu-featured__cta {
	padding: 0.5em 1.2em !important;
	font-size: var(--text-xs) !important;
}

body.mcu-theme .mcu-featured__archive {
	text-align: center;
	margin: 0;
}
