/* Woo Product Configurator by Ahsan — progress navigation + summary (Task 7). */
body.wpc-has-progress {
	padding-bottom: 182px;
}
.wpc-progress-sel {
	font-size: 0.7em;
	color: #8a8a8a;
	font-weight: 400;
	line-height: 1.3;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.wpc-progress-title {
	max-width: 1400px;
	margin: 0 auto 2px;
	font-weight: 600;
	font-size: 0.92em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.wpc-progress {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
	background: var(--wpc-surface, #fff);
	border-top: 1px solid #e3e3e3;
	box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.06);
	margin: 0;
	padding: 14px 20px 12px;
}
.wpc-progress-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	max-width: 1400px;
	margin: 0 auto;
}
.wpc-progress-steps {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-start;
	overflow-x: auto;
	padding: 2px 2px 4px;
	min-width: 0;
}
.wpc-progress-total {
	flex: none;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
	white-space: nowrap;
	font-size: 1.05em;
	color: #111;
	padding-right: 6px;
	line-height: 1.4;
}
.wpc-total-line1 {
	font-size: 0.85em;
	color: #8a8a8a;
}
.wpc-total-line1 s {
	color: #a1a1a1;
	font-weight: 400;
}
.wpc-total-line2 {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 8px;
}
.wpc-total-line2 strong {
	font-size: 1.5em;
	color: #111;
}
.wpc-progress-total strong {
	font-size: 1.25em;
	font-weight: 700;
}
.wpc-off-badge {
	color: var(--wpc-primary, #b32d2e);
	font-weight: 700;
	font-size: 0.85em;
	white-space: nowrap;
}
.wpc-price-line s,
.wpc-progress-total s {
	color: #8c8f94;
	font-weight: 400;
}
.wpc-progress-step {
	position: relative;
	flex: 1 1 0;
	min-width: 88px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0 4px;
	text-align: center;
}
.wpc-progress-step::before {
	content: "";
	position: absolute;
	top: 12px;
	left: -50%;
	width: 100%;
	height: 2px;
	background: #e3e3e3;
}
.wpc-progress-step:first-child::before {
	display: none;
}
.wpc-progress-step.wpc-done::before,
.wpc-progress-step.wpc-active::before {
	background: #1a1a1a;
}
.wpc-progress-num {
	position: relative;
	z-index: 1;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid #d8d8d8;
	background: var(--wpc-surface, #fff);
	color: #a1a1a1;
	font-weight: 400;
	font-size: 12px;
}
.wpc-progress-step.wpc-active .wpc-progress-num,
.wpc-progress-step.wpc-done .wpc-progress-num {
	border-color: #1a1a1a;
	color: #1a1a1a;
}
.wpc-progress-label {
	font-size: 0.74em;
	color: #8a8a8a;
	line-height: 1.35;
	font-weight: 400;
	min-height: 2.4em;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}
.wpc-progress-step.wpc-active .wpc-progress-label,
.wpc-progress-step.wpc-done .wpc-progress-label {
	color: #1a1a1a;
}
.wpc-summary {
	border: 1px solid #dcdcde;
	border-radius: var(--wpc-radius, 4px);
	margin: 0 0 2em;
	padding: 4px 18px 10px;
	background: var(--wpc-surface, #fbfbfc);
}
.wpc-summary-title {
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #646970;
}
.wpc-summary-list {
	margin: 0;
}
.wpc-summary-row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 5px 0;
	border-top: 1px solid #eee;
	font-size: 0.92em;
}
.wpc-summary-row:first-child {
	border-top: none;
}
.wpc-summary-row dt {
	color: #646970;
}
.wpc-summary-row dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}
