/* ==========================================================================
   Selektable Onboarding Wizard
   ========================================================================== */

/* ---- Page layout ---- */
.selektable-setup-page {
	min-height: calc(100vh - 32px);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	box-sizing: border-box;
}

.selektable-setup-container {
	width: 100%;
	max-width: 580px;
}

/* ---- Card shell ---- */
.selektable-setup-card {
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #E2E8F0;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.05);
	overflow: hidden;
}

.slk-card--centered .slk-card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* ---- Accent bar (top green line) ---- */
.slk-card-accent {
	height: 4px;
	background: #1A3824;
}

/* ---- Card body ---- */
.slk-card-body {
	padding: 40px 48px 44px;
}

/* ---- Logo row ---- */
.slk-logo-row {
	display: flex;
	align-items: center;
	margin-bottom: 28px;
}

.slk-onboarding-logo {
	display: block;
	height: 24px;
	width: auto;
}

/* ---- Headings & text ---- */
.slk-heading {
	font-size: 26px;
	font-weight: 700;
	color: #0F172A;
	letter-spacing: -0.03em;
	line-height: 1.25;
	margin: 0 0 12px;
}

.slk-heading--step {
	font-size: 22px;
	margin-bottom: 8px;
}

.slk-heading--success {
	font-size: 26px;
	margin-bottom: 10px;
}

.slk-subtext {
	font-size: 14px;
	color: #64748B;
	line-height: 1.6;
	margin: 0 0 28px;
}

/* ---- Feature list (welcome screen) ---- */
.slk-feature-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
}

.slk-feature-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 15px;
	background: #F8FAFC;
	border-radius: 8px;
	border: 1px solid #E2E8F0;
}

.slk-feature-icon {
	width: 32px;
	height: 32px;
	background: #F0F9EC;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.slk-feature-item strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 2px;
}

.slk-feature-item span {
	font-size: 12px;
	color: #64748B;
}

/* ---- Notice boxes ---- */
.slk-notice {
	padding: 13px 15px;
	border-radius: 8px;
	font-size: 12px;
	line-height: 1.55;
	margin-bottom: 28px;
}

.slk-notice--amber {
	background: #FFFBEB;
	border: 1px solid #FDE68A;
	color: #92400E;
}

.slk-notice strong {
	display: block;
	margin-bottom: 4px;
	font-weight: 600;
}

/* ---- Info box ---- */
.slk-info-box {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 11px 14px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	font-size: 12px;
	color: #64748B;
	margin-bottom: 24px;
}

.slk-info-box svg {
	flex-shrink: 0;
}

.slk-link {
	color: #1A3824;
	font-weight: 500;
	text-decoration: underline;
}

.slk-link:hover {
	color: #2D6A40;
}

/* ---- Form elements ---- */
.slk-form-group {
	margin-bottom: 16px;
}

.slk-label {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 8px;
}

.slk-input-wrap {
	display: flex;
	align-items: stretch;
	border: 1.5px solid #D1D5DB;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.slk-input-wrap:focus-within,
.slk-input-wrap--focus {
	border-color: #1A3824;
	box-shadow: 0 0 0 3px rgba(26,56,36,0.1);
}

.slk-input-prefix {
	padding: 0 12px;
	display: flex;
	align-items: center;
	background: #F8FAFC;
	border-right: 1px solid #E2E8F0;
	font-size: 13px;
	font-weight: 500;
	color: #94A3B8;
	flex-shrink: 0;
	white-space: nowrap;
}

.slk-input {
	flex: 1;
	height: 44px;
	padding: 0 14px;
	border: none;
	outline: none;
	font-size: 14px;
	color: #0F172A;
	background: transparent;
	font-family: inherit;
	letter-spacing: 0.02em;
	box-shadow: none !important; /* override WP */
}

.slk-hint {
	font-size: 11px;
	color: #64748B;
	margin: 6px 0 0;
}

/* ---- Error message ---- */
.slk-error-msg {
	padding: 10px 14px;
	background: #FEF2F2;
	border: 1px solid #FECACA;
	border-radius: 7px;
	font-size: 13px;
	color: #991B1B;
	margin-bottom: 16px;
}

/* ---- Step indicator ---- */
.slk-step-indicator {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 28px;
}

.slk-step-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.slk-step-circle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;

	/* default: upcoming */
	background: #E2E8F0;
	color: #94A3B8;
}

.slk-step-circle--active {
	background: #1A3824;
	color: #BBEF3A;
}

.slk-step-circle--done {
	background: #D8F5B8;
	color: #1A3824;
}

.slk-step-label {
	font-size: 12px;
	font-weight: 500;
	color: #94A3B8;
	white-space: nowrap;
}

.slk-step-label--active {
	font-weight: 600;
	color: #1A3824;
}

.slk-step-line {
	flex: 1;
	height: 1px;
	background: #E2E8F0;
	min-width: 20px;
}

.slk-step-line--done {
	background: #D8F5B8;
}

/* ---- WooCommerce detected banner ---- */
.slk-detected-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 15px;
	background: #F0F9EC;
	border: 1.5px solid #BBEF3A;
	border-radius: 10px;
	margin-bottom: 22px;
}

.slk-detected-icon {
	width: 36px;
	height: 36px;
	background: #1A3824;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.slk-detected-banner strong {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #1A3824;
	margin-bottom: 2px;
}

.slk-detected-banner span {
	font-size: 12px;
	color: #3D7A2A;
}

/* ---- Feature bullets ---- */
.slk-feature-bullets {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.slk-feature-bullets li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	color: #374151;
}

.slk-feature-bullets li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #BBEF3A;
	flex-shrink: 0;
}

/* ---- Toggle row ---- */
.slk-toggle-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 15px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	margin-bottom: 24px;
}

.slk-toggle-row strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 2px;
}

.slk-toggle-row span {
	font-size: 12px;
	color: #64748B;
}

/* Toggle switch */
.slk-toggle {
	width: 44px;
	height: 24px;
	background: #D1D5DB;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: background 0.2s;
	padding: 0;
}

.slk-toggle--on {
	background: #1A3824;
}

.slk-toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	background: #ffffff;
	border-radius: 50%;
	transition: left 0.2s, background 0.2s;
}

.slk-toggle--on .slk-toggle-thumb {
	left: calc(100% - 21px);
	background: #BBEF3A;
}

/* ---- PDP placement preview ---- */
.slk-placement-preview {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 13px 15px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	margin-bottom: 24px;
}

.slk-pdp-mockup {
	width: 80px;
	background: #F0F0F1;
	border-radius: 6px;
	flex-shrink: 0;
	overflow: hidden;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.slk-pdp-line {
	border-radius: 2px;
	background: #D1D5DB;
}

.slk-pdp-line--title {
	height: 8px;
	width: 70%;
}

.slk-pdp-line--price {
	height: 6px;
	width: 50%;
}

.slk-pdp-btn {
	background: #1A3824;
	border-radius: 3px;
	padding: 4px 0;
	font-size: 5px;
	color: #BBEF3A;
	font-weight: 600;
	text-align: center;
	white-space: nowrap;
}

.slk-placement-preview strong {
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 3px;
}

.slk-placement-preview span {
	font-size: 12px;
	color: #64748B;
	line-height: 1.5;
}

/* ---- Actions row ---- */
.slk-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 8px;
}

.slk-step-hint {
	font-size: 12px;
	color: #94A3B8;
}

/* ---- Buttons ---- */
.slk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: opacity 0.15s, background 0.15s;
	text-decoration: none;
	border: none;
	font-family: inherit;
	letter-spacing: -0.01em;
	line-height: 1;
}

.slk-btn--primary {
	background: #1A3824;
	color: #ffffff;
}

.slk-btn--primary:hover,
.slk-btn--primary:focus {
	background: #22502F;
	color: #ffffff;
	outline: none;
}

.slk-btn--lime {
	background: #1A3824;
	color: #BBEF3A !important;
}

.slk-btn--lime:hover,
.slk-btn--lime:focus {
	background: #22502F;
	outline: none;
}

.slk-btn--secondary {
	background: transparent;
	color: #475569;
	border: 1px solid #E2E8F0;
}

.slk-btn--secondary:hover,
.slk-btn--secondary:focus {
	background: #F8FAFC;
	color: #475569;
	outline: none;
}

.slk-btn--full {
	width: 100%;
}

.slk-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* ---- Success screen elements ---- */
.slk-success-icon {
	width: 72px;
	height: 72px;
	background: #1A3824;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.slk-status-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 28px;
}

.slk-pill {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 13px;
	background: #F0F9EC;
	border: 1px solid #BBEF3A;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #1A3824;
}

.slk-pill::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #1A3824;
	flex-shrink: 0;
}

.slk-divider {
	width: 100%;
	border: none;
	border-top: 1px solid #F1F5F9;
	margin: 0 0 22px;
}

.slk-next-label {
	font-size: 11px;
	font-weight: 700;
	color: #94A3B8;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 12px;
	align-self: flex-start;
	width: 100%;
	text-align: left;
}

.slk-next-steps {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 24px;
	width: 100%;
}

.slk-next-step-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #F8FAFC;
	border-radius: 8px;
	border: 1px solid #E2E8F0;
	text-decoration: none;
	transition: background 0.15s;
}

.slk-next-step-item:hover {
	background: #F0F9EC;
	border-color: #D8F5B8;
}

.slk-next-step-item svg:first-child {
	flex-shrink: 0;
}

.slk-next-step-item div {
	flex: 1;
}

.slk-next-step-item strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #0F172A;
	margin-bottom: 2px;
}

.slk-next-step-item span {
	font-size: 11px;
	color: #64748B;
}

.slk-arrow {
	flex-shrink: 0;
}

/* ---- No Account section ---- */
.slk-no-account-section {
	background: #F8FAFC;
	border: 1px solid #E8EAE9;
	border-radius: 10px;
	padding: 20px;
	margin: 20px 0 0;
}

.slk-no-account-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #94A3B8;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.slk-pricing-cards {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.slk-pricing-card {
	flex: 1;
	background: #ffffff;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.slk-pricing-card--dark {
	background: #1A3824;
	border-color: #1A3824;
}

.slk-pricing-card__label {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.07em;
	color: #94A3B8;
	text-transform: uppercase;
}

.slk-pricing-card--dark .slk-pricing-card__label {
	color: rgba(187, 239, 58, 0.7);
}

.slk-pricing-card__value {
	font-size: 22px;
	font-weight: 700;
	color: #1A3824;
	line-height: 1;
}

.slk-pricing-card--dark .slk-pricing-card__value {
	color: #BBEF3A;
}

.slk-pricing-card__unit {
	font-size: 12px;
	font-weight: 500;
	color: #94A3B8;
	margin-left: 1px;
}

.slk-pricing-card--dark .slk-pricing-card__unit {
	color: rgba(187, 239, 58, 0.6);
}

.slk-btn--lime {
	background: #BBEF3A;
	color: #1A3824;
	font-weight: 700;
}

.slk-btn--lime:hover {
	background: #a8d832;
	color: #1A3824;
}

.slk-btn--full {
	width: 100%;
	text-align: center;
	display: block;
	box-sizing: border-box;
	text-decoration: none;
}

.slk-pricing-fine-print {
	font-size: 11px;
	color: #94A3B8;
	text-align: center;
	margin: 10px 0 0;
}

/* ---- Already have account row ---- */
.slk-already-account-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #E8EAE9;
	padding-top: 20px;
	margin-top: 20px;
}

.slk-already-account-text {
	font-size: 13px;
	color: #787C82;
}
