.ogeeat-setup-wrap {
	max-width: 640px;
	margin: 40px auto;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.ogeeat-setup-header {
	text-align: center;
	margin-bottom: 32px;
}
.ogeeat-setup-header h1 {
	font-size: 28px;
	font-weight: 800;
	letter-spacing: 1px;
	margin: 0 0 8px;
}
.ogeeat-setup-header p {
	font-size: 15px;
	color: #646970;
	margin: 0;
}

/* Progress bar */
.ogeeat-setup-progress {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-bottom: 32px;
}
.ogeeat-setup-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	opacity: .4;
}
.ogeeat-setup-step.active,
.ogeeat-setup-step.done { opacity: 1; }
.ogeeat-setup-step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f0f0f1;
	color: #646970;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}
.ogeeat-setup-step.active .ogeeat-setup-step-num {
	background: #2271b1;
	color: #fff;
}
.ogeeat-setup-step.done .ogeeat-setup-step-num {
	background: #00a32a;
	color: #fff;
}
.ogeeat-setup-step-label {
	font-size: 12px;
	font-weight: 600;
	color: #646970;
	text-transform: uppercase;
	letter-spacing: .3px;
}

/* Body */
.ogeeat-setup-body {
	background: #fff;
	border: 1px solid #dcdde1;
	border-radius: 12px;
	padding: 32px;
}
.ogeeat-setup-body h2 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
}
.ogeeat-setup-body .desc {
	color: #646970;
	font-size: 13px;
	margin: 0 0 24px;
}

/* Fields */
.ogeeat-setup-field {
	margin-bottom: 20px;
}
.ogeeat-setup-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 6px;
	color: #1d2327;
}
.ogeeat-setup-field input[type="text"],
.ogeeat-setup-field input[type="url"],
.ogeeat-setup-field select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #c3c4c7;
	border-radius: 6px;
	font-size: 14px;
}

/* Site type cards */
.ogeeat-setup-types {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: 6px;
}
.ogeeat-setup-type {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 14px 8px;
	border: 2px solid #dcdde1;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color .15s, background .15s;
	text-align: center;
}
.ogeeat-setup-type:hover {
	border-color: #2271b1;
	background: #f0f6fc;
}
.ogeeat-setup-type input {
	display: none;
}
.ogeeat-setup-type.selected {
	border-color: #2271b1;
	background: #f0f6fc;
}
.ogeeat-setup-type .dashicons {
	font-size: 24px;
	width: 24px;
	height: 24px;
	color: #2271b1;
}
.ogeeat-setup-type span:last-child {
	font-size: 12px;
	font-weight: 600;
	color: #1d2327;
}

/* Module toggles */
.ogeeat-setup-modules {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.ogeeat-setup-module {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: #f9f9f9;
	border-radius: 8px;
	transition: background .15s;
}
.ogeeat-setup-module:hover {
	background: #f0f6fc;
}
.ogeeat-setup-module input[type="checkbox"] {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}
.ogeeat-setup-module-info {
	flex: 1;
}
.ogeeat-setup-module-name {
	font-size: 14px;
	font-weight: 600;
	color: #1d2327;
	display: block;
}
.ogeeat-setup-module-desc {
	font-size: 12px;
	color: #646970;
}

/* Logo preview */
.ogeeat-setup-logo-preview {
	margin-top: 8px;
}
.ogeeat-setup-logo-preview img {
	max-height: 60px;
	border-radius: 6px;
}

/* Actions */
.ogeeat-setup-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid #f0f0f1;
}
.ogeeat-setup-skip {
	font-size: 13px;
	color: #646970;
	text-decoration: none;
}
.ogeeat-setup-skip:hover {
	color: #2271b1;
}

/* Done */
.ogeeat-setup-done {
	text-align: center;
	padding: 20px 0;
}
.ogeeat-setup-done .dashicons {
	font-size: 48px;
	width: 48px;
	height: 48px;
	color: #00a32a;
	margin-bottom: 16px;
}
.ogeeat-setup-done h2 {
	margin-bottom: 8px;
}
.ogeeat-setup-done p {
	color: #646970;
	font-size: 14px;
	margin: 0 0 24px;
}
.ogeeat-setup-done-links {
	display: flex;
	justify-content: center;
	gap: 12px;
}

/* Summary */
.ogeeat-setup-summary {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 24px 0;
	text-align: left;
}
.ogeeat-setup-summary-item {
	padding: 10px 14px;
	background: #f9f9f9;
	border-radius: 6px;
	font-size: 13px;
}
.ogeeat-setup-summary-item strong {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .3px;
	color: #646970;
	margin-bottom: 2px;
}
