/* =============================================================================
   Stack Cards — Frontend Styles
   ============================================================================= */

:root {
	--stk-primary:     #0e0e0e;
	--stk-secondary:   #444444;
	--stk-accent:      #6c63ff;
	--stk-accent-rgb:  108, 99, 255;
	--stk-muted:       #888888;
	--stk-border:      #e0e0e0;
	--stk-white:       #ffffff;
	--stk-shadow:      rgba(0, 0, 0, 0.08);
	--stk-shadow-lg:   rgba(0, 0, 0, 0.16);
}

/* ── Base Card ────────────────────────────────────────────────────────────── */

.stkc-card {
	position: relative;
	background-color: var(--stk-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 16px var(--stk-shadow);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.stkc-card:hover {
	box-shadow: 0 8px 32px var(--stk-shadow-lg);
	transform: translateY(-4px);
}
/* Keyboard focus visibility */
.stkc-card:focus-within,
.stkc-card:focus-visible {
	outline: 2px solid rgba(var(--stk-accent-rgb), 0.65);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(var(--stk-accent-rgb), 0.15), 0 8px 32px var(--stk-shadow-lg);
}

/* ── Media (image wrapper) ────────────────────────────────────────────────── */

.stkc-media {
	position: relative;
	overflow: hidden;
}
.stkc-img-wrap img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.stkc-card:hover .stkc-img-wrap img {
	transform: scale(1.04);
}

/* ── Body ─────────────────────────────────────────────────────────────────── */

.stkc-body {
	padding: 24px;
}

/* ── Icon ─────────────────────────────────────────────────────────────────── */

.stkc-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: var(--stk-accent);
	transition: color 0.25s ease, background-color 0.25s ease;
}
.stkc-icon-wrap i,
.stkc-icon-wrap svg {
	font-size: 32px;
	width: 32px;
	height: auto;
	fill: var(--stk-accent);
	transition: color 0.25s ease, fill 0.25s ease;
}

/* ── Badge ────────────────────────────────────────────────────────────────── */

.stkc-badge {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--stk-accent);
	background-color: rgba( var(--stk-accent-rgb), 0.10 );
	border: 1px solid rgba( var(--stk-accent-rgb), 0.25 );
	border-radius: 100px;
	padding: 3px 12px;
	margin-bottom: 12px;
}

/* ── Title ────────────────────────────────────────────────────────────────── */

.stkc-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--stk-primary);
	line-height: 1.3;
	margin: 0 0 10px;
	transition: color 0.2s ease;
}
.stkc-title span {
	color: var(--stk-accent);
}

/* ── Subtitle ─────────────────────────────────────────────────────────────── */

.stkc-subtitle {
	font-size: 14px;
	font-weight: 600;
	color: var(--stk-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 10px;
}

/* ── Description ──────────────────────────────────────────────────────────── */

.stkc-desc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--stk-secondary);
	margin: 0 0 20px;
}

/* ── Button ───────────────────────────────────────────────────────────────── */

.stkc-btn {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 11px 24px;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.stkc-btn-outline {
	color: var(--stk-accent);
	border: 2px solid var(--stk-accent);
	background: transparent;
}
.stkc-btn-outline:hover {
	background-color: var(--stk-accent);
	color: var(--stk-white);
}
.stkc-btn-fill {
	color: var(--stk-white);
	background-color: var(--stk-accent);
	border: 2px solid var(--stk-accent);
}
.stkc-btn-fill:hover {
	background-color: transparent;
	color: var(--stk-accent);
}
.stkc-btn-ghost {
	color: var(--stk-primary);
	background: transparent;
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.stkc-btn-ghost:hover {
	color: var(--stk-accent);
}
.stkc-btn-text {
	color: var(--stk-accent);
	background: transparent;
	border: none;
	padding-left: 0;
	padding-right: 0;
	font-size: 14px;
}
.stkc-btn-text::after {
	content: ' →';
	transition: margin-left 0.2s ease;
}
.stkc-btn-text:hover::after {
	margin-left: 4px;
}

/* =============================================================================
   LAYOUT STYLES
   ============================================================================= */

/* ── Style 1: Standard (Image Top) ───────────────────────────────────────── */
/* Default base styles above cover this fully */

/* ── Style 2: Horizontal (Image Left) ────────────────────────────────────── */

.stkc-horizontal {
	display: flex;
	align-items: stretch;
	overflow: hidden;
}
.stkc-horizontal .stkc-media {
	flex: 0 0 40%;
	max-width: 40%;
}
.stkc-horizontal .stkc-img-wrap,
.stkc-horizontal .stkc-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stkc-horizontal .stkc-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ── Style 3: Horizontal Reverse (Image Right) ────────────────────────────── */

.stkc-horizontal-rev {
	display: flex;
	flex-direction: row-reverse;
	align-items: stretch;
	overflow: hidden;
}
.stkc-horizontal-rev .stkc-media {
	flex: 0 0 40%;
	max-width: 40%;
}
.stkc-horizontal-rev .stkc-img-wrap,
.stkc-horizontal-rev .stkc-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stkc-horizontal-rev .stkc-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ── Style 4: Overlay (Content Over Image) ───────────────────────────────── */

.stkc-overlay {
	min-height: 320px;
}
.stkc-overlay .stkc-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.stkc-overlay .stkc-img-wrap,
.stkc-overlay .stkc-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.stkc-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient( to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%, transparent 100% );
}
.stkc-overlay .stkc-body {
	position: relative;
	z-index: 2;
	margin-top: auto;
	padding: 28px;
}
.stkc-overlay .stkc-title,
.stkc-overlay .stkc-subtitle,
.stkc-overlay .stkc-desc,
.stkc-overlay .stkc-badge {
	color: var(--stk-white);
}
.stkc-overlay .stkc-badge {
	background-color: rgba( 255, 255, 255, 0.15 );
	border-color: rgba( 255, 255, 255, 0.3 );
}
.stkc-overlay .stkc-desc {
	color: rgba( 255, 255, 255, 0.85 );
}

/* Flex column so body stays at bottom */
.stkc-overlay {
	display: flex;
	flex-direction: column;
}

/* ── Style 5: Flip Card ───────────────────────────────────────────────────── */

.stkc-flip {
	perspective: 1000px;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}
.stkc-flip:hover {
	transform: none;
	box-shadow: none;
}
.stkc-flip-inner {
	position: relative;
	width: 100%;
	min-height: 320px;
	transform-style: preserve-3d;
	transition: transform 0.6s cubic-bezier( 0.4, 0.2, 0.2, 1 );
}
.stkc-flip:hover .stkc-flip-inner {
	transform: rotateY(180deg);
}
.stkc-flip-front,
.stkc-flip-back {
	position: absolute;
	inset: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	border-radius: 12px;
	overflow: hidden;
	background-color: var(--stk-white);
	box-shadow: 0 2px 16px var(--stk-shadow);
}
.stkc-flip-front {
	display: flex;
	flex-direction: column;
}
.stkc-flip-back {
	transform: rotateY(180deg);
	background-color: var(--stk-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.stkc-flip-back .stkc-title,
.stkc-flip-back .stkc-desc {
	color: var(--stk-white);
}
.stkc-flip-back .stkc-btn-outline {
	color: var(--stk-white);
	border-color: var(--stk-white);
}
.stkc-flip-back .stkc-btn-outline:hover {
	background-color: var(--stk-white);
	color: var(--stk-accent);
}
/* Ensure flip card has correct height via padding trick */
.stkc-flip-front .stkc-img-wrap img {
	height: 180px;
}

/* ── Style 6: Icon Card (No Image) ───────────────────────────────────────── */

.stkc-icon-only {
	text-align: center;
}
.stkc-icon-only .stkc-body {
	padding: 36px 28px;
}
.stkc-icon-only .stkc-icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba( var(--stk-accent-rgb), 0.1 );
	border: 1px solid rgba( var(--stk-accent-rgb), 0.2 );
	margin: 0 auto 20px;
}
.stkc-icon-only .stkc-icon-wrap i,
.stkc-icon-only .stkc-icon-wrap svg {
	font-size: 26px;
	width: 26px;
}

/* ── Style 7: Numbered Card ───────────────────────────────────────────────── */

.stkc-numbered {
	overflow: hidden;
}
.stkc-number {
	position: absolute;
	top: -10px;
	right: 16px;
	font-size: 100px;
	font-weight: 900;
	line-height: 1;
	color: var(--stk-primary);
	opacity: 0.08;
	pointer-events: none;
	user-select: none;
	z-index: 0;
}
.stkc-numbered .stkc-body {
	position: relative;
	z-index: 1;
}

/* ── Style 8: Minimal (Flat / Borderless) ─────────────────────────────────── */

.stkc-minimal {
	background: transparent;
	box-shadow: none;
	border: 1px solid var(--stk-border);
	border-radius: 8px;
}
.stkc-minimal:hover {
	box-shadow: 0 4px 20px var(--stk-shadow);
}

/* ── Style 9: Dark Card ───────────────────────────────────────────────────── */

.stkc-dark {
	background-color: var(--stk-primary);
}
.stkc-dark .stkc-title {
	color: var(--stk-white);
}
.stkc-dark .stkc-subtitle {
	color: rgba( 255, 255, 255, 0.5 );
}
.stkc-dark .stkc-desc {
	color: rgba( 255, 255, 255, 0.7 );
}
.stkc-dark .stkc-badge {
	background-color: rgba( 255, 255, 255, 0.1 );
	border-color: rgba( 255, 255, 255, 0.2 );
	color: var(--stk-white);
}
.stkc-dark .stkc-icon-wrap,
.stkc-dark .stkc-icon-wrap i,
.stkc-dark .stkc-icon-wrap svg {
	color: var(--stk-white);
	fill: var(--stk-white);
}

/* ── Style 10: Outline Card ───────────────────────────────────────────────── */

.stkc-outline {
	background: transparent;
	box-shadow: none;
	border: 2px solid var(--stk-accent);
}
.stkc-outline:hover {
	background-color: rgba( var(--stk-accent-rgb), 0.04 );
	box-shadow: 0 4px 24px rgba( var(--stk-accent-rgb), 0.2 );
}

/* ── Style 11: Reveal (Hover Slide Up) ───────────────────────────────────── */

.stkc-reveal {
	overflow: hidden;
}
.stkc-reveal .stkc-media {
	position: relative;
}
.stkc-reveal .stkc-img-wrap img {
	height: 300px;
}
.stkc-reveal .stkc-body {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 2;
	background: linear-gradient( to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100% );
	padding: 28px;
	transform: translateY( calc( 100% - 80px ) );
	transition: transform 0.4s cubic-bezier( 0.4, 0, 0.2, 1 );
}
.stkc-reveal:hover .stkc-body {
	transform: translateY(0);
}
.stkc-reveal .stkc-title,
.stkc-reveal .stkc-subtitle,
.stkc-reveal .stkc-desc {
	color: var(--stk-white);
}
.stkc-reveal .stkc-badge {
	background-color: rgba( 255, 255, 255, 0.15 );
	border-color: rgba( 255, 255, 255, 0.3 );
	color: var(--stk-white);
}
.stkc-reveal .stkc-title {
	font-size: 18px;
	margin-bottom: 0;
	transition: margin-bottom 0.3s ease;
}
.stkc-reveal:hover .stkc-title {
	margin-bottom: 10px;
}
/* Media needs min-height for reveal to work without an image */
.stkc-reveal .stkc-media:not(:has(.stkc-img-wrap)) {
	min-height: 300px;
	background-color: var(--stk-primary);
}

/* ── Style 12: Profile Card (Avatar) ─────────────────────────────────────── */

.stkc-profile {
	text-align: center;
}
.stkc-profile .stkc-body {
	padding: 28px 24px 32px;
}
.stkc-profile .stkc-img-wrap {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	border: 3px solid var(--stk-border);
}
.stkc-profile .stkc-img-wrap img {
	width: 96px;
	height: 96px;
	object-fit: cover;
}
.stkc-profile .stkc-media {
	padding-top: 28px;
	background: transparent;
}
.stkc-profile .stkc-card:hover .stkc-img-wrap img {
	transform: none;
}

/* ── Style 13: Feature Card (Icon Circle) ────────────────────────────────── */

.stkc-feature {
	text-align: center;
}
.stkc-feature .stkc-body {
	padding: 36px 28px;
}
.stkc-feature .stkc-icon-wrap {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient( 135deg, rgba( var(--stk-accent-rgb), 0.15 ) 0%, rgba( var(--stk-accent-rgb), 0.05 ) 100% );
	border: 1px solid rgba( var(--stk-accent-rgb), 0.2 );
	margin: 0 auto 20px;
	transition: background 0.3s ease;
}
.stkc-feature .stkc-icon-wrap i,
.stkc-feature .stkc-icon-wrap svg {
	font-size: 32px;
	width: 32px;
}
.stkc-feature:hover .stkc-icon-wrap {
	background: linear-gradient( 135deg, var(--stk-accent) 0%, rgba( var(--stk-accent-rgb), 0.7 ) 100% );
}
.stkc-feature:hover .stkc-icon-wrap i,
.stkc-feature:hover .stkc-icon-wrap svg {
	color: var(--stk-white);
	fill: var(--stk-white);
}

/* ── Style 14: Glassmorphism ──────────────────────────────────────────────── */

.stkc-glass {
	background: rgba( 255, 255, 255, 0.15 );
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba( 255, 255, 255, 0.3 );
	box-shadow: 0 4px 24px rgba( 0, 0, 0, 0.12 );
}
.stkc-glass:hover {
	background: rgba( 255, 255, 255, 0.22 );
}
.stkc-glass .stkc-title {
	color: var(--stk-white);
}
.stkc-glass .stkc-desc,
.stkc-glass .stkc-subtitle {
	color: rgba( 255, 255, 255, 0.8 );
}
.stkc-glass .stkc-badge {
	background-color: rgba( 255, 255, 255, 0.2 );
	border-color: rgba( 255, 255, 255, 0.4 );
	color: var(--stk-white);
}

/* ── Style 15: Side Accent Bar ────────────────────────────────────────────── */

.stkc-side-accent {
	border-left: 4px solid var(--stk-accent);
	border-radius: 0 12px 12px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STYLES 16 – 35
═══════════════════════════════════════════════════════════════════════════ */

/* ── 16 — Neumorphic ───────────────────────────────────────────────────── */
.stkc-neumorphic {
	background: #e8ecf1;
	border: 1px solid #d0d5de;
	border-radius: 20px;
	box-shadow: 6px 6px 14px rgba(163,177,198,.6), -6px -6px 14px rgba(255,255,255,.9);
	transition: box-shadow .3s, transform .3s;
}
.stkc-neumorphic:hover {
	box-shadow: 2px 2px 6px rgba(163,177,198,.6), -2px -2px 6px rgba(255,255,255,.9);
	transform: scale(.98);
}
.stkc-neumorphic .stkc-badge {
	background: #e8ecf1;
	color: #5c6bc0;
	box-shadow: inset 2px 2px 5px rgba(163,177,198,.5), inset -2px -2px 5px rgba(255,255,255,.8);
	border: none;
}

/* ── 17 — Gradient Border ─────────────────────────────────────────────── */
.stkc-gradient-border {
	border: 2px solid transparent;
	border-radius: 14px;
	background: linear-gradient(#ffffff,#ffffff) padding-box,
	            linear-gradient(135deg, #f093fb, #f5576c, #4facfe) border-box;
	transition: transform .3s ease, box-shadow .3s ease;
}
.stkc-gradient-border:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }

/* ── 18 — Neon ────────────────────────────────────────────────────────── */
.stkc-neon {
	background: #0a0a1a;
	border: 1px solid #00e5ff;
	border-radius: 10px;
	color: #e0e0e0;
	box-shadow: 0 0 10px rgba(0,229,255,.15), inset 0 0 20px rgba(0,229,255,.03);
	transition: box-shadow .3s, border-color .3s;
}
.stkc-neon:hover { border-color: #00e5ff; box-shadow: 0 0 20px rgba(0,229,255,.4), inset 0 0 30px rgba(0,229,255,.08); }
.stkc-neon .stkc-title { color: #00e5ff; text-shadow: 0 0 8px rgba(0,229,255,.6); }
.stkc-neon .stkc-badge { background: rgba(0,229,255,.12); color: #00e5ff; border: 1px solid rgba(0,229,255,.35); }

/* ── 19 — Polaroid ────────────────────────────────────────────────────── */
.stkc-polaroid {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 2px;
	padding: 10px 10px 28px;
	box-shadow: 0 3px 10px rgba(0,0,0,.12);
	transform: rotate(-1.5deg);
	transition: transform .3s, box-shadow .3s;
}
.stkc-polaroid:hover { transform: rotate(0) scale(1.04); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.stkc-polaroid .stkc-media { margin: 0; }
.stkc-polaroid .stkc-img-wrap img { border-radius: 2px; }
.stkc-polaroid .stkc-body { padding: 10px 4px 0; text-align: center; }

/* ── 20 — Metro Tile ──────────────────────────────────────────────────── */
.stkc-metro {
	position: relative;
	min-height: 240px;
	border: 2px solid rgba(255,255,255,.2);
	border-radius: 4px;
	overflow: hidden;
}
.stkc-metro .stkc-media { position: absolute; inset: 0; }
.stkc-metro .stkc-img-wrap { height: 100%; }
.stkc-metro .stkc-img-wrap img { height: 100%; object-fit: cover; border-radius: 0; filter: brightness(.55); transition: filter .3s; }
.stkc-metro:hover .stkc-img-wrap img { filter: brightness(.35); }
.stkc-metro .stkc-body { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 240px; padding: 20px; color: #fff; }
.stkc-metro .stkc-title { color: #fff; }
.stkc-metro .stkc-badge { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }

/* ── 21 — Testimonial ─────────────────────────────────────────────────── */
.stkc-testimonial {
	background: #fff;
	border: 1px solid #e8eaf6;
	border-radius: 12px;
	padding: 28px;
	position: relative;
}
.stkc-testimonial::before {
	content: '\201C';
	position: absolute;
	top: 12px; left: 20px;
	font-size: 5rem;
	line-height: 1;
	color: #e8eaf6;
	font-family: Georgia, serif;
	pointer-events: none;
}
.stkc-testimonial .stkc-body { position: relative; z-index: 1; padding: 0; }
.stkc-testimonial .stkc-desc { font-style: italic; font-size: .95rem; line-height: 1.7; margin-bottom: 16px; }
.stkc-testimonial .stkc-badge { background: none; border: none; padding: 0; font-weight: 700; color: #333; font-size: .85rem; }
.stkc-testimonial:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }

/* ── 22 — Event (Date Badge) ──────────────────────────────────────────── */
.stkc-event {
	background: #fff;
	border: 1px solid #e0e6f5;
	border-radius: 10px;
	display: flex;
	flex-direction: row;
	overflow: hidden;
}
.stkc-event .stkc-media { display: none; }
.stkc-event .stkc-body { padding: 20px; flex: 1; }
.stkc-event .stkc-badge {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	flex: 0 0 70px; min-width: 70px;
	background: #4f46e5; color: #fff; border-radius: 0;
	font-size: 1.4rem; font-weight: 800; line-height: 1;
	padding: 12px 4px;
}
.stkc-event .stkc-badge::after { content: attr(data-month); font-size: .65rem; font-weight: 600; text-transform: uppercase; margin-top: 4px; opacity: .85; }
.stkc-event:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); }

/* ── 23 — Pricing Card ────────────────────────────────────────────────── */
.stkc-pricing {
	background: #fff;
	border: 2px solid #e0e6f4;
	border-radius: 16px;
	text-align: center;
}
.stkc-pricing .stkc-body { padding: 32px 24px; display: flex; flex-direction: column; align-items: center; }
.stkc-pricing .stkc-title { font-size: 2rem; font-weight: 800; color: #4f46e5; margin: 8px 0; }
.stkc-pricing .stkc-subtitle { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: #888; margin-bottom: 12px; }
.stkc-pricing .stkc-desc { text-align: left; width: 100%; font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }
.stkc-pricing .stkc-badge { background: #e8f0fe; color: #4f46e5; border-color: #c7d7fc; font-size: .72rem; font-weight: 700; }
.stkc-pricing:hover { border-color: #4f46e5; box-shadow: 0 8px 28px rgba(79,70,229,.2); }

/* ── 24 — Magazine ────────────────────────────────────────────────────── */
.stkc-magazine {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	overflow: hidden;
}
.stkc-magazine .stkc-img-wrap img { height: 260px; border-radius: 0; transition: transform .4s; }
.stkc-magazine:hover .stkc-img-wrap img { transform: scale(1.05); }
.stkc-magazine .stkc-body { border-top: 3px solid #e53935; padding: 16px; }
.stkc-magazine .stkc-badge { background: #e53935; color: #fff; border-radius: 0; border: none; font-size: .68rem; }
.stkc-magazine .stkc-title { font-size: 1.1rem; }

/* ── 25 — Split Panel ─────────────────────────────────────────────────── */
.stkc-split {
	background: #fff;
	border: 1px solid #e0e6f0;
	border-radius: 12px;
	overflow: hidden;
}
.stkc-split .stkc-img-wrap img { border-radius: 0; height: 180px; }
.stkc-split .stkc-body { border-top: 4px solid #4f46e5; background: #f8f9ff; }
.stkc-split .stkc-title { color: #4f46e5; }
.stkc-split .stkc-badge { background: #eef0fd; color: #4f46e5; border-color: #c7d7fc; }
.stkc-split:hover { box-shadow: 0 8px 24px rgba(79,70,229,.15); }

/* ── 26 — Bold Border ─────────────────────────────────────────────────── */
.stkc-bold {
	background: #fff;
	border: 3px solid #111;
	border-radius: 0;
}
.stkc-bold .stkc-badge { background: #111; color: #fff; border-radius: 0; border: none; }
.stkc-bold .stkc-body { border: none; }
.stkc-bold:hover { box-shadow: 5px 5px 0 #111; transform: translate(-3px,-3px); }

/* ── 27 — Ribbon ──────────────────────────────────────────────────────── */
.stkc-ribbon {
	background: #fff;
	border: 1px solid #dde4f0;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.stkc-ribbon .stkc-badge {
	position: absolute;
	top: 16px; right: -24px;
	width: 100px; padding: 4px 0;
	background: #f44336; color: #fff;
	font-size: .65rem; font-weight: 700;
	text-align: center; text-transform: uppercase;
	transform: rotate(45deg);
	border: none; border-radius: 0; letter-spacing: .05em;
	box-shadow: 0 2px 6px rgba(0,0,0,.2);
	z-index: 2;
}
.stkc-ribbon:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }

/* ── 28 — Shadow Lift ─────────────────────────────────────────────────── */
.stkc-shadow-lift {
	background: #fff;
	border: 1px solid #eaeef5;
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(0,0,0,.12);
	transition: box-shadow .3s, transform .3s;
}
.stkc-shadow-lift:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(0,0,0,.2); }

/* ── 29 — Frosted ─────────────────────────────────────────────────────── */
.stkc-frosted {
	background: rgba(255,255,255,.18);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 18px;
	box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.stkc-frosted:hover { background: rgba(255,255,255,.25); box-shadow: 0 8px 32px rgba(0,0,0,.14); }
.stkc-frosted .stkc-badge { background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.4); color: inherit; }

/* ── 30 — Step Card ───────────────────────────────────────────────────── */
.stkc-step {
	background: #fff;
	border: 1px solid #e8eaf6;
	border-radius: 10px;
	border-left: 4px solid #5c6bc0;
}
.stkc-step .stkc-body { padding: 20px 20px 20px 24px; }
.stkc-step .stkc-badge {
	background: #5c6bc0; color: #fff; border: none; border-radius: 50%;
	width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
	font-size: .85rem; font-weight: 800; padding: 0; margin-bottom: 10px;
}
.stkc-step:hover { border-left-color: #3949ab; box-shadow: 0 4px 14px rgba(57,73,171,.15); }

/* ── 31 — Compact ─────────────────────────────────────────────────────── */
.stkc-compact {
	background: #fff;
	border: 1px solid #eaeef5;
	border-radius: 6px;
}
.stkc-compact .stkc-img-wrap img { height: 140px; border-radius: 6px 6px 0 0; }
.stkc-compact .stkc-body { padding: 12px 14px; }
.stkc-compact .stkc-title { font-size: .9rem; }
.stkc-compact .stkc-desc { font-size: .8rem; }
.stkc-compact:hover { box-shadow: 0 6px 18px rgba(0,0,0,.1); transform: translateY(-3px); }

/* ── 32 — Avatar Card ─────────────────────────────────────────────────── */
.stkc-avatar {
	background: #fff;
	border: 1px solid #e0e8f0;
	border-radius: 16px;
	text-align: center;
	padding-top: 24px;
}
.stkc-avatar .stkc-icon-wrap {
	width: 80px; height: 80px; border-radius: 50%;
	margin: 0 auto 12px; display: flex; align-items: center; justify-content: center;
	background: #e8eaf6; border: 3px solid #c5cae9;
	font-size: 2rem; color: #5c6bc0;
}
.stkc-avatar .stkc-body { display: flex; flex-direction: column; align-items: center; padding-top: 0; }
.stkc-avatar:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.1); }

/* ── 33 — Colored Bar ─────────────────────────────────────────────────── */
.stkc-colored-bar {
	background: #fff;
	border: 1px solid #e0e6f0;
	border-radius: 8px;
	overflow: hidden;
}
.stkc-colored-bar .stkc-media { height: 6px; min-height: 6px; }
.stkc-colored-bar .stkc-img-wrap,
.stkc-colored-bar .stkc-img-wrap img { height: 6px; border-radius: 0; }
.stkc-colored-bar .stkc-badge {
	background: #4f46e5; color: #fff; border: none; border-radius: 4px;
	font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
	margin-bottom: 8px;
}
.stkc-colored-bar::before {
	content: ''; display: block; height: 5px;
	background: linear-gradient(90deg, #4f46e5, #7c3aed);
}
.stkc-colored-bar:hover { box-shadow: 0 6px 20px rgba(79,70,229,.15); }

/* ── 34 — Blueprint ───────────────────────────────────────────────────── */
.stkc-blueprint {
	background: #0d2137;
	border: 1.5px solid #2a7fff;
	border-radius: 6px;
	color: #a8d4ff;
	box-shadow: 0 0 0 3px rgba(42,127,255,.12), inset 0 0 30px rgba(0,50,100,.3);
}
.stkc-blueprint .stkc-title { color: #62b5ff; }
.stkc-blueprint .stkc-badge { background: rgba(42,127,255,.2); color: #62b5ff; border: 1px solid rgba(42,127,255,.4); }
.stkc-blueprint .stkc-desc { color: #7bafd4; }
.stkc-blueprint:hover { border-color: #62b5ff; box-shadow: 0 0 0 3px rgba(42,127,255,.25), 0 8px 24px rgba(0,0,0,.4); }

/* ── 35 — Retro ───────────────────────────────────────────────────────── */
.stkc-retro {
	background: #fff;
	border: 2px solid #222;
	border-radius: 0;
	box-shadow: 4px 4px 0 #222;
	transition: box-shadow .2s, transform .2s;
}
.stkc-retro:hover { box-shadow: 7px 7px 0 #222; transform: translate(-2px,-2px); }
.stkc-retro .stkc-badge { background: #ffe066; color: #222; border: 1.5px solid #222; border-radius: 0; font-weight: 700; }
.stkc-retro .stkc-img-wrap img { border-bottom: 2px solid #222; border-radius: 0; }

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media ( max-width: 767px ) {
	.stkc-horizontal,
	.stkc-horizontal-rev {
		flex-direction: column;
	}
	.stkc-horizontal .stkc-media,
	.stkc-horizontal-rev .stkc-media {
		flex: 0 0 auto;
		max-width: 100%;
	}
	.stkc-horizontal .stkc-img-wrap img,
	.stkc-horizontal-rev .stkc-img-wrap img {
		height: 200px;
	}
	.stkc-reveal .stkc-body {
		transform: translateY(0);
		position: relative;
		background: rgba(0,0,0,0.7);
	}
	.stkc-flip-inner {
		min-height: 280px;
	}
}


/* ── 36 — Diagonal Split ───────────────────────────────────────────────── */
.stkc-diagonal {
	position: relative;
	background: #fff;
	border: 1px solid #e6ebf3;
	border-radius: 14px;
	overflow: hidden;
}
.stkc-diagonal::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(79,70,229,.12) 0%, rgba(79,70,229,.12) 50%, transparent 50.1%);
	pointer-events: none;
}
.stkc-diagonal .stkc-media { position: relative; z-index: 0; }
.stkc-diagonal .stkc-body { position: relative; z-index: 1; }
.stkc-diagonal:hover { box-shadow: 0 10px 28px rgba(0,0,0,.12); transform: translateY(-3px); }

/* ── 37 — Ghost Outline ───────────────────────────────────────────────── */
.stkc-ghost-outline {
	background: transparent;
	border: 2px dashed rgba(0,0,0,.2);
	border-radius: 12px;
	box-shadow: none;
}
.stkc-ghost-outline .stkc-body { background: rgba(255,255,255,.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.stkc-ghost-outline:hover {
	border-style: solid;
	border-color: rgba(var(--stk-accent-rgb), .6);
	box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

/* ── 38 — Stacked Layers ──────────────────────────────────────────────── */
.stkc-stacked {
	position: relative;
	background: #fff;
	border: 1px solid #e8edf6;
	border-radius: 12px;
}
.stkc-stacked::before,
.stkc-stacked::after {
	content: '';
	position: absolute;
	inset: 10px -10px auto auto;
	height: 100%;
	border-radius: 12px;
	background: #fff;
	border: 1px solid #e8edf6;
	box-shadow: 0 6px 18px rgba(0,0,0,.06);
	transform: translate(10px, 10px);
	z-index: -1;
}
.stkc-stacked::after {
	inset: 20px -20px auto auto;
	transform: translate(20px, 20px);
	opacity: .85;
}
.stkc-stacked:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }

/* ── 39 — Curtain Reveal ──────────────────────────────────────────────── */
.stkc-curtain {
	position: relative;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e7ecf5;
	border-radius: 12px;
}
.stkc-curtain::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0,0,0,.1), rgba(0,0,0,0));
	transform: translateX(-100%);
	transition: transform .5s ease;
	pointer-events: none;
}
.stkc-curtain:hover::before { transform: translateX(0%); }

/* ── 40 — Terminal ────────────────────────────────────────────────────── */
.stkc-terminal {
	background: #0c0f14;
	border: 1px solid #1a1f29;
	border-radius: 10px;
	color: #e6f6e6;
	box-shadow: inset 0 0 0 1px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.25);
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.stkc-terminal .stkc-media { display: none; }
.stkc-terminal .stkc-body { padding-top: 16px; }
.stkc-terminal::before {
	content: '';
	display: block;
	height: 26px;
	background: #11151d;
	border-bottom: 1px solid #1f2632;
	border-radius: 10px 10px 0 0;
	box-shadow: inset 0 -1px 0 rgba(255,255,255,.02);
}
.stkc-terminal::after {
	content: '';
	position: absolute;
	top: 8px; left: 12px;
	width: 36px; height: 10px;
	background:
		radial-gradient(circle at 5px 5px, #ff5f56 4px, transparent 5px) 0 0 / 12px 12px no-repeat,
		radial-gradient(circle at 5px 5px, #ffbd2e 4px, transparent 5px) 12px 0 / 12px 12px no-repeat,
		radial-gradient(circle at 5px 5px, #27c93f 4px, transparent 5px) 24px 0 / 12px 12px no-repeat;
	opacity: .9;
}
.stkc-terminal .stkc-title { color: #8df58d; text-shadow: 0 0 8px rgba(141,245,141,.25); }
.stkc-terminal .stkc-badge { background: rgba(141,245,141,.15); color: #8df58d; border: 1px solid rgba(141,245,141,.35); }
.stkc-terminal .stkc-desc { color: #b6d8b6; }
.stkc-terminal .stkc-btn { background: #0c0f14; color: #8df58d; border: 1px solid #24303f; }
.stkc-terminal .stkc-btn:hover { background: #121823; border-color: #2d3a4d; }
