/**
 * Feature Create Section
 *
 * "Create Like a Designer" section with lightweight gradient background.
 * Uses bg-glow class from lightweight-background.css for performance.
 *
 * @package AgenticWP
 */

/* =========================================
   Create Section Content Styles
   ========================================= */

.create-split-layout {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 900px) {
	.create-split-layout {
		flex-direction: row;
		align-items: center;
		gap: 5rem;
	}

	.create-text-content {
		flex: 1;
	}

	.create-visual-content {
		flex: 1;
		display: flex;
		justify-content: center;
	}
}

/* Typography overrides for this section - left-aligned for split layout */
.feature-create h2 {
	color: var(--color-ink);
	margin-bottom: 1.5rem;
	text-align: left;
}

/* Gradient accent for heading */
.feature-create h2 .accent {
	background: var(--gradient-orange);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #7C2D12;
}

.feature-create .lead-text {
	font-size: 1.25rem;
	line-height: 1.6;
	color: var(--ink);
	margin-bottom: 3rem;
	text-align: left;
	max-width: none;
}

/* Toolkit Grid - Stacked layout */
.create-toolkit-grid {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.toolkit-item {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	background: linear-gradient(135deg, rgba(255, 237, 213, 0.7), rgba(254, 215, 170, 0.7)); /* Orange gradient matching blob */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 1.25rem;
	border-radius: 16px;
	border: 1px solid var(--color-line, #e5e7eb);
}

.toolkit-icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #f97316; /* Orange-500 */
}

.toolkit-details {
	text-align: left;
}

.toolkit-details strong {
	display: block;
	font-size: 1.125rem;
	color: var(--color-ink);
	margin-bottom: 0.25rem;
}

.toolkit-details p {
	font-size: 0.95rem;
	color: var(--ink);
	margin: 0;
	line-height: 1.4;
	text-align: left;
}

/* Design Showcase Visualization */
.design-showcase {
	width: 100%;
	max-width: 450px;
}

.design-card-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}

/* Prompt Card (Input) */
.design-prompt-card {
	width: 100%;
	background: linear-gradient(135deg, rgba(255, 237, 213, 0.85), rgba(254, 215, 170, 0.85)); /* Orange gradient matching blob */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.card-header {
	background: #f9fafb;
	border-bottom: 1px solid var(--color-line);
	padding: 0.75rem 1rem;
	display: flex;
	gap: 6px;
}

.card-header .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.card-header .dot.red { background: #ef4444; }
.card-header .dot.yellow { background: #f59e0b; }
.card-header .dot.green { background: #22c55e; }

.prompt-body {
	padding: 1.5rem;
}

.prompt-body p {
	font-family: monospace;
	color: var(--color-ink);
	background: #f3f4f6;
	padding: 0.75rem;
	border-radius: 6px;
	border-left: 3px solid #f97316;
	margin: 0;
	font-size: 0.9rem;
}

/* Arrow */
.design-arrow {
	color: var(--color-muted);
	animation: bounce-vertical 2s infinite;
}

/* Result Card (Output) */
.design-result-card {
	width: 100%;
	background: linear-gradient(135deg, rgba(255, 237, 213, 0.85), rgba(254, 215, 170, 0.85)); /* Orange gradient matching blob */
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid var(--color-line);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	padding: 1.5rem;
	transform: rotate(-2deg);
	transition: transform 0.3s ease;
}

.design-result-card:hover {
	transform: rotate(0deg) scale(1.02);
}

/* Mini Pricing Table CSS Drawing */
.mini-pricing-table {
	display: flex;
	gap: 12px;
	align-items: center;
}

.mini-tier {
	flex: 1;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 12px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mini-tier.featured {
	border-color: #f97316;
	background: #fff7ed;
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
	z-index: 2;
}

.mini-line {
	height: 6px;
	background: #e5e7eb;
	border-radius: 3px;
}

.mini-line.title { width: 60%; height: 8px; background: #d1d5db; margin-bottom: 4px; }
.mini-line.price { width: 40%; height: 12px; background: #1f2937; }
.mini-line.feat { width: 100%; }

.mini-tier.featured .mini-line.price { background: #f97316; }
