/**
 * StorefrontPlus — Distraction-Free Checkout
 */

/* ── Remove Distractions ──────────────────────────────── */
.sp-distraction-free .storefront-breadcrumb,
.sp-distraction-free .site-header-cart,
.sp-distraction-free .storefront-product-search,
.sp-distraction-free #secondary {
	display: none !important;
}

.sp-distraction-free #primary {
	width: 100%;
	float: none;
}

.sp-distraction-free .site-header {
	border-bottom: 1px solid #eee;
	text-align: center;
}

.sp-distraction-free .site-footer {
	border-top: 1px solid #eee;
	padding: 1.5em 0;
	text-align: center;
	font-size: 0.85em;
}

.sp-distraction-free .site-footer .footer-widgets {
	display: none;
}

/* ── Back to Cart Link ────────────────────────────────── */
.sp-checkout-nav {
	display: inline-block;
}

.sp-checkout-back {
	color: var(--sp-color-text);
	text-decoration: none;
	font-size: 0.9em;
	opacity: 0.7;
	transition: opacity 0.2s ease;
}

.sp-checkout-back:hover {
	opacity: 1;
}

/* ── Progress Indicator ───────────────────────────────── */
.sp-progress {
	max-width: 600px;
	margin: 0 auto 3em;
	padding: 2em 1em 0;
}

.sp-progress__bar {
	height: 3px;
	background: #e0e0e0;
	border-radius: 3px;
	margin-bottom: 1em;
	overflow: hidden;
}

.sp-progress__fill {
	height: 100%;
	background: var(--sp-progress-accent, #96588a);
	border-radius: 3px;
	transition: width 0.4s ease;
}

.sp-progress__steps {
	display: flex;
	justify-content: space-between;
}

.sp-progress__step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4em;
	flex: 1;
}

.sp-progress__number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85em;
	font-weight: 600;
	border: 2px solid #e0e0e0;
	color: #999;
	background: #fff;
	transition: all 0.3s ease;
}

.sp-progress__step--current .sp-progress__number {
	border-color: var(--sp-progress-accent, #96588a);
	background: var(--sp-progress-accent, #96588a);
	color: #fff;
}

.sp-progress__step--completed .sp-progress__number {
	border-color: var(--sp-progress-accent, #96588a);
	background: var(--sp-progress-accent, #96588a);
	color: #fff;
}

.sp-progress__label {
	font-size: 0.8em;
	color: #999;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-weight: 500;
}

.sp-progress__step--current .sp-progress__label {
	color: var(--sp-progress-accent, #96588a);
	font-weight: 700;
}

.sp-progress__step--completed .sp-progress__label {
	color: var(--sp-color-text);
}

/* ── Trust Badges ─────────────────────────────────────── */
.sp-trust-badges {
	display: flex;
	justify-content: center;
	gap: 2em;
	margin-top: 2em;
	padding-top: 1.5em;
	border-top: 1px solid #eee;
}

.sp-trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5em;
	font-size: 0.8em;
	color: #888;
}

.sp-trust-badge svg {
	color: #28a745;
	flex-shrink: 0;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
	.sp-trust-badges {
		flex-direction: column;
		align-items: center;
		gap: 1em;
	}

	.sp-progress__label {
		font-size: 0.7em;
	}

	.sp-progress__number {
		width: 28px;
		height: 28px;
		font-size: 0.75em;
	}
}
