.solar-category-showcase {
	position: relative;
	min-height: calc(var(--category-scroll-height, 430vh) + 100vh);
	background:
		radial-gradient(circle at 72% 28%, rgba(18, 105, 255, .18), transparent 31%),
		radial-gradient(circle at 20% 76%, rgba(210, 177, 111, .08), transparent 28%),
		linear-gradient(180deg, #050506 0%, #090a0d 48%, #050506 100%);
	overflow: clip;
}

.solar-category-showcase__sticky {
	position: sticky;
	top: 0;
	height: 100vh;
	min-height: 760px;
	overflow: hidden;
	isolation: isolate;
}

.solar-category-showcase__sticky::before {
	position: absolute;
	inset: 12% 6%;
	z-index: -1;
	border: 1px solid rgba(255, 255, 255, .07);
	border-radius: 28px;
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .055) 50%, transparent 50.2%),
		linear-gradient(0deg, transparent 49.8%, rgba(255, 255, 255, .04) 50%, transparent 50.2%);
	background-size: 86px 86px;
	mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
	content: "";
	opacity: calc(.16 + var(--category-phase) * .38);
}

.solar-category-showcase__intro {
	position: absolute;
	top: clamp(112px, 16vh, 170px);
	right: 50%;
	z-index: 2;
	width: min(760px, calc(100% - 34px));
	text-align: center;
	transform: translateX(50%);
	transition: opacity .28s ease;
}

.solar-category-showcase__intro .solar-kicker {
	justify-content: center;
}

.solar-category-showcase__intro h2 {
	margin: 12px auto 12px;
	font-size: clamp(26px, 3.6vw, 46px);
	font-weight: 650;
	line-height: 1.55;
}

.solar-category-showcase__intro p:not(.solar-kicker) {
	max-width: 610px;
	margin: 0 auto;
	color: var(--muted);
	font-size: 13px;
	font-weight: 300;
	line-height: 2.1;
}

.solar-category-showcase__visual {
	position: absolute;
	top: var(--category-visual-top, 74%);
	right: auto;
	left: 50%;
	z-index: 1;
	width: min(500px, 38vw);
	aspect-ratio: 3 / 2;
	transform: translate(calc(-50% + var(--category-visual-x, 0px)), -50%) scale(var(--category-visual-scale, 1)) rotate(var(--category-visual-rotate, 0deg));
	transform-origin: center;
	transition: transform .46s cubic-bezier(.22, .8, .22, 1), top .46s cubic-bezier(.22, .8, .22, 1);
	will-change: transform;
}

.solar-category-showcase__halo {
	position: absolute;
	inset: 8% 7%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 105, 255, .34), rgba(18, 105, 255, .09) 34%, transparent 68%);
	filter: blur(34px);
	opacity: calc(.55 + var(--category-phase) * .22);
	transform: translateY(8%);
}

.solar-category-showcase__migrating-panel,
.solar-category-showcase__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 34px 30px rgba(0, 0, 0, .36));
	transform: translate3d(0, calc(18px + var(--category-panel-extra-y, 0px)), 0) scale(.96) rotate(-1deg);
	transition: opacity .7s ease, transform .9s cubic-bezier(.2, .8, .2, 1);
}

.solar-category-showcase__migrating-panel {
	opacity: var(--category-migrating-opacity, 1);
}

.solar-category-showcase__image {
	opacity: 0 !important;
}

.solar-category-showcase__image.is-active {
	opacity: var(--category-gallery-opacity, 0) !important;
	transform: translate3d(0, var(--category-panel-extra-y, 0px), 0) scale(1) rotate(0deg);
}

.solar-category-showcase__content {
	position: absolute;
	top: 40%;
	left: clamp(92px, 14vw, 230px);
	width: min(410px, 30vw);
	opacity: var(--category-content-phase, 0);
	pointer-events: none;
	transform: translateY(-50%);
	will-change: opacity, transform;
}

.solar-category-swiper {
	overflow: visible;
}

.solar-category-showcase__label {
	margin: 0 0 10px;
	color: var(--gold-light);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.8;
}

.solar-category-slide {
	height: auto;
	min-height: 170px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	direction: rtl;
}

.solar-category-slide span {
	display: block;
	margin-bottom: 12px;
	color: rgba(95, 163, 255, .72);
	font-size: 13px;
	letter-spacing: 0;
}

.solar-category-slide h3 {
	margin: 0 0 22px;
	color: #f2f6f5;
	font-size: clamp(30px, 3.8vw, 56px);
	font-weight: 700;
	line-height: 1.25;
}

.solar-category-slide .solar-btn {
	pointer-events: auto;
	padding: 12px 18px;
	gap: 16px;
	font-size: 12px;
}

.solar-category-slide .solar-btn svg {
	width: 15px;
}

.solar-category-showcase__progress {
	position: relative;
	width: min(340px, 100%);
	height: 3px;
	margin-top: 16px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
}

.solar-category-showcase__progress i {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--electric), var(--gold-light));
	transform: scaleX(0);
	transform-origin: right center;
}

@media (max-width: 900px) {
	.solar-category-showcase {
		min-height: calc(var(--category-scroll-height, 350vh) + 100vh);
	}

	.solar-category-showcase__sticky {
		min-height: 700px;
	}

	.solar-category-showcase__intro {
		top: 105px;
	}

	.solar-category-showcase__visual {
		top: 55%;
		width: min(340px, 62vw);
	}

	.solar-category-showcase__content {
		top: 47%;
		right: 20px;
		bottom: auto;
		left: 20px;
		width: auto;
		text-align: center;
		transform: none;
	}

	.solar-category-slide {
		min-height: 0;
		align-items: center;
		justify-content: flex-start;
	}

	.solar-category-slide h3 {
		margin-bottom: 14px;
		font-size: clamp(28px, 8vw, 40px);
		text-align: center;
		position: relative;
		z-index: 2;
	}

	.solar-category-slide .solar-btn {
		margin-top: 0;
		position: relative;
		z-index: 2;
	}

	.solar-category-showcase__progress {
		margin-top: 22px;
		margin-right: auto;
		margin-left: auto;
	}
}

@media (max-width: 520px) {
	.solar-category-showcase__sticky {
		min-height: 640px;
	}

	.solar-category-showcase__intro h2 {
		font-size: 25px;
	}

	.solar-category-showcase__intro p:not(.solar-kicker) {
		font-size: 12px;
	}

	.solar-category-showcase__visual {
		top: 55%;
		width: 130vw;
	}

	.solar-category-slide .solar-btn {
		width: min(100%, 330px);
		justify-content: center;
	}
}

/* Unified Modal-inspired category override */
.solar-category-showcase {
	background: transparent;
}

.solar-category-showcase__sticky::before {
	inset: 10% 5%;
	border-color: rgba(101, 167, 255, .16);
	border-radius: 28px;
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(101, 167, 255, .07) 50%, transparent 50.2%),
		linear-gradient(0deg, transparent 49.8%, rgba(101, 167, 255, .05) 50%, transparent 50.2%),
		radial-gradient(circle at 50% 50%, rgba(35, 120, 255, .1), transparent 34%);
	background-size: 72px 72px, 72px 72px, 100% 100%;
	opacity: calc(.18 + var(--category-phase) * .34);
}

.solar-category-showcase__halo {
	background: radial-gradient(circle, rgba(101, 167, 255, .34), rgba(35, 120, 255, .1) 36%, transparent 68%);
}

.solar-category-showcase__label,
.solar-category-slide span {
	color: #65a7ff;
	letter-spacing: 0;
}

.solar-category-slide h3,
.solar-category-showcase__intro h2 {
	color: #eef5ff;
	font-weight: 760;
	letter-spacing: 0;
}

.solar-category-showcase__intro p:not(.solar-kicker) {
	color: rgba(229, 238, 250, .64);
}

.solar-category-showcase__progress {
	height: 4px;
	background: rgba(24, 54, 86, .82);
}

.solar-category-showcase__progress i {
	background: #2d86ff;
	box-shadow: 0 0 14px rgba(45, 134, 255, .38);
}

.solar-category-slide .solar-btn--gold {
	position: relative;
	isolation: isolate;
	box-shadow: 0 10px 22px rgba(0, 0, 0, .16);
	border: 1px solid rgba(213, 165, 70, .24);
	background: rgba(213, 165, 70, .08);
	color: var(--gold-light);
}

.solar-category-slide .solar-btn--gold::before {
	display: none;
}

.solar-category-slide .solar-btn--gold:hover {
    border-color: rgba(213, 165, 70, .48);
    background: rgba(213, 165, 70, .12);
    color: var(--gold-light);
    box-shadow: none;
    transform: none;
}

@media (min-width: 1280px) {
	.solar-category-showcase__sticky::before {
		inset: 9% clamp(16px, 1.5vw, 28px);
	}

	.solar-category-showcase__intro {
		width: min(940px, calc(100% - 48px));
	}

	.solar-category-showcase__intro h2 {
		font-size: clamp(42px, 4.2vw, 70px);
	}

	.solar-category-showcase__intro p:not(.solar-kicker) {
		max-width: 760px;
		font-size: 16px;
	}

	.solar-category-showcase__visual {
		width: min(560px, 38vw);
	}

	.solar-category-showcase__content {
		left: clamp(54px, 7vw, 140px);
		width: min(500px, 32vw);
	}

	.solar-category-slide h3 {
		font-size: clamp(42px, 4.4vw, 72px);
	}

	.solar-category-slide .solar-btn {
		min-height: 54px;
		padding: 15px 24px;
		font-size: 14px;
	}

	.solar-category-showcase__progress {
		width: min(460px, 100%);
		height: 4px;
	}
}

@media (max-width: 760px) {
	.solar-category-showcase__content {
		top: auto !important;
		right: 20px !important;
		bottom: calc(118px + env(safe-area-inset-bottom, 0px)) !important;
		left: 20px !important;
		width: auto !important;
		transform: none !important;
	}

	.solar-category-swiper,
	.solar-category-swiper .swiper-wrapper,
	.solar-category-slide {
		height: auto !important;
		min-height: 0 !important;
		overflow: visible !important;
	}

	.solar-category-slide {
		justify-content: flex-start !important;
	}

	.solar-category-showcase__progress {
		width: min(420px, calc(100vw - 72px)) !important;
		margin-top: 16px !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}
}

@media (max-width: 420px) {
	.solar-category-showcase__content {
		bottom: calc(112px + env(safe-area-inset-bottom, 0px)) !important;
	}
}
