/* ═══════════════════════════════════════════════════════════
   PRODUCT SLIDER SECTION (DARK THEME)
   ═══════════════════════════════════════════════════════════ */

.t16-section--prodslider {
	background-color: transparent;
	padding: 20px 0 40px;
}

.t16-prodslider {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

/* ── Header ──────────────────────────────────────────────── */
.t16-prodslider__header {
	text-align: center;
	margin-bottom: 48px;
	max-width: 800px;
	width: 100%;
}

.t16-prodslider__eyebrow {
	color: #B5FF00; /* Signature lime green */
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.t16-prodslider__heading {
	color: #ffffff;
	font-size: 3rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 1.1;
	margin: 0 0 20px;
}

.t16-prodslider__desc {
	color: #a0a0a0;
	font-size: 1.125rem;
	line-height: 1.6;
	margin: 0;
	font-weight: 400;
}

/* ── Shortcode Content ───────────────────────────────────── */
.t16-prodslider__content {
	width: 100%;
	margin-bottom: 48px;
}

/* Ensure the shortcode container doesn't overflow */
.t16-prodslider__content > * {
	max-width: 100%;
}

/* ── Footer / CTA ────────────────────────────────────────── */
.t16-prodslider__footer {
	text-align: center;
}

.t16-btn-outline-dark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	background-color: transparent;
	color: #ffffff;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	padding: 16px 36px;
	text-decoration: none;
	transition: all 0.2s ease;
	min-width: 280px;
}

.t16-btn-outline-dark:hover {
	background-color: #B5FF00;
	border-color: #B5FF00;
	color: #000000;
}

.t16-btn-outline-dark svg {
	transition: transform 0.2s ease;
}

.t16-btn-outline-dark:hover svg {
	transform: translateX(4px);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
	.t16-section--prodslider {
		padding: 60px 0 80px;
	}

	.t16-prodslider__heading {
		font-size: 2.25rem;
	}

	.t16-prodslider__desc {
		font-size: 1rem;
	}
}

@media (max-width: 600px) {
	.t16-section--prodslider {
		padding: 16px 0 32px;
	}

	.t16-prodslider__heading {
		font-size: 1.75rem;
	}
	
	.t16-btn-outline-dark {
		width: 100%;
		padding: 14px 24px;
	}
}
