.wke-stl,
.wke-stl * { box-sizing: border-box; }

.wke-stl {
	--accent: #b91416;
	--accent-soft: #e04446;
	--ink: #14110c;
	font-family: 'Outfit', sans-serif;
	background: #0e0c09;
	color: #fff;
	padding: 70px 6%;
	overflow: hidden;
}

.wke-stl .wkstl-head {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 44px;
}

.wke-stl .wkstl-eyebrow {
	color: var(--accent-soft);
	font-size: 12px;
	letter-spacing: 2.4px;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 14px;
}

.wke-stl .wkstl-title {
	margin: 0;
	font-family: 'Outfit', sans-serif;
	font-size: 48px;
	line-height: .98;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .5px;
	color: #fff;
}

.wke-stl .wkstl-sub {
	margin: 16px auto 0;
	max-width: 480px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(255,255,255,.7);
}

.wke-stl .wkstl-grid {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 48px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

/* ---- STAGE ---- */
.wke-stl .wkstl-stage {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	background: #1a1712;
}

.wke-stl .wkstl-stage img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.wke-stl .wkstl-stage::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 40%, rgba(10,8,5,0) 40%, rgba(10,8,5,.35) 100%);
	pointer-events: none;
}

.wke-stl .wkstl-hotspot {
	position: absolute;
	box-sizing: border-box !important;
	width: 30px !important;
	height: 30px !important;
	min-width: 30px !important;
	max-width: 30px !important;
	min-height: 30px !important;
	max-height: 30px !important;
	flex: 0 0 30px !important;
	aspect-ratio: 1 / 1 !important;
	padding: 0 !important;
	line-height: 1 !important;
	transform: translate(-50%, -50%) scale(.4);
	opacity: 0;
	border: none;
	border-radius: 50% !important;
	background: var(--accent);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Outfit', sans-serif;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	transition: opacity .5s ease, transform .5s ease, background .25s ease;
}

.wke-stl.is-revealed .wkstl-hotspot {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	animation: bstlPulse 2.4s infinite;
}
.wke-stl.is-revealed .wkstl-hotspot:nth-child(3){ animation-delay: .2s; }
.wke-stl.is-revealed .wkstl-hotspot:nth-child(4){ animation-delay: .4s; }
.wke-stl.is-revealed .wkstl-hotspot:nth-child(5){ animation-delay: .6s; }

.wke-stl .wkstl-hotspot.is-active {
	background: #fff;
	color: var(--ink);
	transform: translate(-50%, -50%) scale(1.15);
	animation: none;
}

@keyframes bstlPulse {
	0%   { box-shadow: 0 0 0 0 rgba(185,20,22,.55); }
	70%  { box-shadow: 0 0 0 14px rgba(185,20,22,0); }
	100% { box-shadow: 0 0 0 0 rgba(185,20,22,0); }
}

/* ---- PANEEL ---- */
.wke-stl .wkstl-product {
	font-size: 12px;
	letter-spacing: 1.6px;
	text-transform: uppercase;
	color: var(--accent-soft);
	font-weight: 600;
	margin-bottom: 6px;
}

.wke-stl .wkstl-product-name {
	margin: 0 0 4px;
	font-family: 'Outfit', sans-serif;
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	color: #fff;
}

.wke-stl .wkstl-price {
	font-size: 18px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 22px;
}

.wke-stl .wkstl-feat {
	border-top: 1px solid rgba(255,255,255,.12);
	padding: 16px 0;
	display: flex;
	gap: 14px;
	align-items: flex-start;
	cursor: pointer;
}
.wke-stl .wkstl-feat:last-of-type { border-bottom: 1px solid rgba(255,255,255,.12); }

.wke-stl .wkstl-feat-num {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--accent);
	color: var(--accent-soft);
	font-size: 12px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .25s ease, color .25s ease;
}
.wke-stl .wkstl-feat.is-active .wkstl-feat-num { background: var(--accent); color: #fff; }

.wke-stl .wkstl-feat-body h4 {
	margin: 2px 0 4px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
}
.wke-stl .wkstl-feat-body p {
	margin: 0;
	font-size: 13.5px;
	line-height: 1.5;
	color: rgba(255,255,255,.62);
}

.wke-stl .wkstl-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 26px;
	padding: 15px 32px;
	background: var(--accent);
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 3px;
	transition: transform .25s ease, opacity .25s ease;
}
.wke-stl .wkstl-cta:hover { transform: translateY(-2px); background: #14110c; color: #fff; }

/* ---- REVEAL ---- */
.wke-stl .wkstl-rev {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity .6s ease, transform .6s ease;
}
.wke-stl.is-revealed .wkstl-rev { opacity: 1; transform: translateY(0); }
.wke-stl.is-revealed .wkstl-rev:nth-child(2){ transition-delay: .1s; }
.wke-stl.is-revealed .wkstl-rev:nth-child(3){ transition-delay: .2s; }

/* ---- MOBIEL ---- */
@media (max-width: 860px) {
	.wke-stl { padding: 48px 20px; }
	.wke-stl .wkstl-title { font-size: 34px; }
	.wke-stl .wkstl-grid { grid-template-columns: 1fr; gap: 24px; }
	.wke-stl .wkstl-stage { aspect-ratio: 3 / 4; max-height: 62vh; }
	.wke-stl .wkstl-hotspot { width: 26px !important; height: 26px !important; min-width: 26px !important; max-width: 26px !important; min-height: 26px !important; max-height: 26px !important; flex: 0 0 26px !important; font-size: 12px; }
	.wke-stl .wkstl-product-name { font-size: 26px; }
}
