/**
 * Bizzwishlist - Getting Started Page Styles
 *
 * @package Bizzwishlist
 */

/* Layout */
.bizzwishlist-gs {
	margin: 20px 0 40px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
	color: #1e1e1e;
	line-height: 1.6;
}

/* Hero */
.bizzwishlist-gs__hero {
	background: #1d2327;
	color: #fff;
	padding: 48px 32px;
	margin-bottom: 32px;
}

.bizzwishlist-gs__hero-inner {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
}

.bizzwishlist-gs__hero-icon {
	display: inline-block;
	font-size: 48px;
	color: #e25c3d;
	margin-bottom: 12px;
}

.bizzwishlist-gs__hero h1 {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 8px;
	color: #fff;
}

.bizzwishlist-gs__hero p {
	font-size: 15px;
	margin: 0;
	opacity: 0.85;
}

/* Sections */
.bizzwishlist-gs__section {
	background: #fff;
	border: 1px solid #dcdcde;
	padding: 28px 32px;
	margin-bottom: 24px;
}

.bizzwishlist-gs__section-title {
	font-size: 18px;
	font-weight: 600;
	margin: 0 0 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f0f0f1;
	color: #1e1e1e;
}

/* Steps */
.bizzwishlist-gs__steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.bizzwishlist-gs__step {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.bizzwishlist-gs__step-number {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #1d2327;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 50%;
}

.bizzwishlist-gs__step-content h3 {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 4px;
	color: #1e1e1e;
}

.bizzwishlist-gs__step-content p {
	margin: 0;
	font-size: 13px;
	color: #50575e;
}

.bizzwishlist-gs__step-content a {
	color: #2271b1;
	text-decoration: none;
}

.bizzwishlist-gs__step-content a:hover {
	color: #135e96;
	text-decoration: underline;
}

/* Features Grid */
.bizzwishlist-gs__features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bizzwishlist-gs__feature {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	padding: 24px;
}

.bizzwishlist-gs__feature-icon {
	font-size: 28px;
	margin-bottom: 10px;
}

.bizzwishlist-gs__feature h3 {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 6px;
	color: #1e1e1e;
}

.bizzwishlist-gs__feature p {
	margin: 0;
	font-size: 13px;
	color: #50575e;
	line-height: 1.5;
}

.bizzwishlist-gs__feature code {
	background: #e0e0e0;
	padding: 1px 5px;
	font-size: 12px;
}

/* Table */
.bizzwishlist-gs__table {
	width: 100%;
	border-collapse: collapse;
}

.bizzwishlist-gs__table th,
.bizzwishlist-gs__table td {
	text-align: left;
	padding: 10px 14px;
	border-bottom: 1px solid #f0f0f1;
	font-size: 13px;
}

.bizzwishlist-gs__table th {
	background: #f6f7f7;
	font-weight: 600;
	color: #1e1e1e;
}

.bizzwishlist-gs__table code {
	background: #f0f0f1;
	padding: 2px 6px;
	font-size: 12px;
}

/* Code Block */
.bizzwishlist-gs__code {
	background: #f6f7f7;
	border: 1px solid #dcdcde;
	padding: 14px 18px;
	overflow-x: auto;
	font-size: 13px;
	margin: 12px 0;
}

.bizzwishlist-gs__section > p {
	font-size: 13px;
	color: #50575e;
	margin: 0 0 10px;
}

.bizzwishlist-gs__section > p:last-child {
	margin-bottom: 0;
}

.bizzwishlist-gs__section code {
	background: #f0f0f1;
	padding: 2px 6px;
	font-size: 12px;
}

/* Footer */
.bizzwishlist-gs__footer {
	text-align: center;
	padding: 24px 20px;
	color: #50575e;
	font-size: 14px;
}

.bizzwishlist-gs__footer a {
	color: #e25c3d;
	text-decoration: none;
	font-weight: 600;
}

.bizzwishlist-gs__footer a:hover {
	text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
	.bizzwishlist-gs__features {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.bizzwishlist-gs__hero {
		padding: 32px 20px;
	}

	.bizzwishlist-gs__section {
		padding: 20px;
	}

	.bizzwishlist-gs__features {
		grid-template-columns: 1fr;
	}

	.bizzwishlist-gs__step {
		flex-direction: column;
		gap: 8px;
	}
}