/* ==========================================================================
   OG Hemp - Process Page Stylesheet (7-Step Interactive Experience)
   Path: app/public/wp-content/themes/shoptimizer-child-theme/assets/css/oghemp-process.css
   ========================================================================== */

:root {
	--og-green-primary: #2E5B38;
	--og-green-dark: #1E3A24;
	--og-green-light: #EBF2EC;
	--og-cream-bg: #F9F8F3;
	--og-gold-accent: #C5A059;
	--og-text-dark: #1C241E;
	--og-text-muted: #5A655D;
	--og-card-shadow: 0 16px 40px rgba(28, 36, 30, 0.08);
	--og-card-radius: 20px;
	--og-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.oghemp-process-wrapper {
	background-color: var(--og-cream-bg);
	color: var(--og-text-dark);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
	padding-bottom: 80px;
}

/* 1. Hero Section */
.oghemp-process-hero {
	position: relative;
	padding: 60px 24px 40px;
	background: linear-gradient(180deg, #FFFFFF 0%, var(--og-cream-bg) 100%);
	text-align: center;
}

.oghemp-process-hero .hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 18px;
	background: var(--og-green-light);
	color: var(--og-green-primary);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	border-radius: 50px;
	margin-bottom: 18px;
	border: 1px solid rgba(46, 91, 56, 0.15);
}

.oghemp-process-hero h1 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 48px;
	font-weight: 700;
	color: var(--og-text-dark);
	margin-bottom: 16px;
	line-height: 1.15;
}

.oghemp-process-hero h1 span {
	color: var(--og-green-primary);
	position: relative;
	display: inline-block;
}

.oghemp-process-hero h1 span::after {
	content: '';
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 6px;
	background: rgba(197, 160, 89, 0.3);
	border-radius: 3px;
	z-index: -1;
}

.oghemp-process-hero .hero-subtitle {
	max-width: 760px;
	margin: 0 auto 30px;
	font-size: 18px;
	color: var(--og-text-muted);
	line-height: 1.6;
}

/* Sticky Step Quick Links Pill Bar */
.oghemp-step-nav-bar {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	max-width: 1100px;
	margin: 0 auto;
}

.oghemp-step-nav-bar a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: #FFFFFF;
	color: var(--og-text-dark);
	border-radius: 30px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	transition: var(--og-transition);
}

.oghemp-step-nav-bar a:hover {
	background: var(--og-green-primary);
	color: #FFFFFF;
	border-color: var(--og-green-primary);
	transform: translateY(-2px);
}

.oghemp-step-nav-bar a span.num {
	background: var(--og-green-light);
	color: var(--og-green-primary);
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
}

.oghemp-step-nav-bar a:hover span.num {
	background: rgba(255,255,255,0.25);
	color: #FFFFFF;
}

/* 2. Main Steps Container */
.oghemp-process-container {
	max-width: 1140px;
	margin: 60px auto 0;
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	gap: 70px;
}

/* Step Card Layout */
.oghemp-step-card {
	background: #FFFFFF;
	border-radius: var(--og-card-radius);
	border: 1px solid rgba(46, 91, 56, 0.12);
	box-shadow: var(--og-card-shadow);
	padding: 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	scroll-margin-top: 100px;
}

/* Alternating Reverse Row */
.oghemp-step-card.reverse {
	grid-template-columns: 1fr 1fr;
}

.oghemp-step-card.reverse .step-media-col {
	order: 2;
}

.oghemp-step-card.reverse .step-content-col {
	order: 1;
}

/* Content Column */
.step-content-col .step-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--og-gold-accent);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.step-content-col h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 34px;
	font-weight: 700;
	color: var(--og-text-dark);
	margin-bottom: 16px;
	line-height: 1.2;
}

.step-content-col p {
	font-size: 16px;
	color: var(--og-text-muted);
	line-height: 1.7;
	margin-bottom: 24px;
}

.step-content-col .step-highlight-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: var(--og-green-light);
	color: var(--og-green-primary);
	border-radius: 30px;
	font-size: 13.5px;
	font-weight: 600;
}

/* Media (Video) Column */
.step-media-col {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.12);
	background: #000000;
	aspect-ratio: 16/9;
}

.step-media-col video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 3. Bottom CTA Section */
.oghemp-process-cta {
	max-width: 1140px;
	margin: 80px auto 0;
	padding: 0 24px;
}

.process-cta-card {
	background: linear-gradient(135deg, var(--og-green-dark) 0%, var(--og-green-primary) 100%);
	color: #FFFFFF;
	padding: 50px 40px;
	border-radius: var(--og-card-radius);
	text-align: center;
	box-shadow: 0 20px 40px rgba(30, 58, 36, 0.25);
	position: relative;
	overflow: hidden;
}

.process-cta-card h2 {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 36px;
	color: #FFFFFF;
	margin-bottom: 12px;
}

.process-cta-card p {
	font-size: 17px;
	color: rgba(255, 255, 255, 0.85);
	max-width: 680px;
	margin: 0 auto 30px;
}

.process-cta-btns {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.process-cta-btns .btn-primary {
	background: var(--og-gold-accent);
	color: #FFFFFF;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--og-transition);
}

.process-cta-btns .btn-primary:hover {
	background: #D8B26B;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(197, 160, 89, 0.4);
}

.process-cta-btns .btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #FFFFFF;
	padding: 14px 36px;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	border: 1px solid rgba(255, 255, 255, 0.3);
	transition: var(--og-transition);
}

.process-cta-btns .btn-secondary:hover {
	background: #FFFFFF;
	color: var(--og-green-primary);
	transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
	.oghemp-step-card,
	.oghemp-step-card.reverse {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 28px 24px;
	}
	.oghemp-step-card.reverse .step-media-col {
		order: 1;
	}
	.oghemp-step-card.reverse .step-content-col {
		order: 2;
	}
}

@media (max-width: 640px) {
	.oghemp-process-hero h1 {
		font-size: 34px;
	}
	.step-content-col h2 {
		font-size: 26px;
	}
}
