.plc-intro {
	max-width: 560px;
	font-size: 13px;
	color: rgba(0,0,0,.6);
	margin: 0 0 8px;
}

/* ------------------------------------------------------------------ */
/* Probe Locker Configurator — front-end step accordion               */
/* ------------------------------------------------------------------ */
.plc-configurator {
	max-width: 560px;
	margin-bottom: 20px;
	border: 1px solid rgba(0,0,0,.12);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}

/* --- Steps --- */
.plc-step {
	border-bottom: 1px solid rgba(0,0,0,.08);
}
.plc-step:last-of-type { border-bottom: 0; }

.plc-step-header {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 12px 16px;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
}
.plc-step-header:hover { background: rgba(0,0,0,.025); }
.plc-step-header:focus-visible { outline: 2px solid #2271b1; outline-offset: -2px; }

.plc-step-number {
	flex: 0 0 24px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(0,0,0,.08);
	color: rgba(0,0,0,.6);
	font-size: 12px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.plc-step-done .plc-step-number {
	background: #fff;
	border: 1.5px solid #2e7d32;
	color: #2e7d32;
	font-size: 0;
}
.plc-step-done .plc-step-number::before {
	content: "\2713";
	font-size: 12px;
}

.plc-step-titles {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}
.plc-step-title {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.3;
}
.plc-step-optional {
	font-weight: 400;
	font-size: 12px;
	color: rgba(0,0,0,.45);
}
.plc-step-value {
	font-size: 13px;
	color: rgba(0,0,0,.55);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.plc-step-open .plc-step-value { display: none; }

.plc-step-chevron {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-right: 2px solid rgba(0,0,0,.4);
	border-bottom: 2px solid rgba(0,0,0,.4);
	transform: rotate(45deg);
	transition: transform .15s ease;
}
.plc-step-open .plc-step-chevron { transform: rotate(225deg); }

.plc-step-body {
	display: none;
	padding: 2px 16px 16px 52px;
}
.plc-step-open .plc-step-body { display: block; }

.plc-step-next {
	margin-top: 10px;
	font-size: 13px;
	padding: 4px 14px;
}

/* --- Inputs --- */
.plc-select {
	width: 100%;
	padding: 8px;
	font-size: 14px;
}

.plc-swatches {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
	gap: 8px 4px;
}
.plc-swatch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	cursor: pointer;
	font-size: 11px;
	line-height: 1.2;
	text-align: center;
	margin: 0;
}
.plc-swatch input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.plc-swatch-color {
	display: block;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px rgba(0,0,0,.25);
	transition: box-shadow .1s ease;
}
.plc-swatch input:checked + .plc-swatch-color {
	box-shadow: 0 0 0 2px #2271b1;
}
.plc-swatch input:focus-visible + .plc-swatch-color {
	outline: 2px solid #2271b1;
	outline-offset: 2px;
}
.plc-swatch-label { color: rgba(0,0,0,.6); }

.plc-checkboxes {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 2px 18px;
}
.plc-checkboxes label {
	display: block;
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
}
.plc-opt-price { color: rgba(0,0,0,.5); font-size: 12px; }

/* --- Note / footer --- */
.plc-order-note {
	background: #fff8e5;
	border-left: 3px solid #dba617;
	padding: 10px 14px;
	margin: 0;
	font-size: 13px;
}

.plc-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 16px;
	background: rgba(0,0,0,.02);
	border-top: 1px solid rgba(0,0,0,.08);
}
.plc-quantity-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}
.plc-quantity-wrap .plc-field-label { margin: 0; font-weight: 600; font-size: 14px; }
.plc-quantity {
	width: 64px;
	padding: 6px 8px;
}
.plc-price-summary {
	flex: 1 1 auto;
	font-size: 19px;
	font-weight: 700;
	text-align: right;
}
.plc-price-label { font-size: 13px; font-weight: 400; color: rgba(0,0,0,.55); display: block; line-height: 1; }
.plc-add-to-cart-btn { flex: 0 0 auto; }
.plc-add-to-cart-btn[disabled] { opacity: .6; cursor: not-allowed; }

.plc-errors {
	color: #c00;
	padding: 0 16px 12px;
	font-size: 13px;
}
.plc-errors:empty { display: none; padding: 0; }

@media (max-width: 480px) {
	.plc-step-body { padding-left: 16px; }
	.plc-footer { flex-wrap: wrap; }
	.plc-price-summary { text-align: left; }
	.plc-add-to-cart-btn { width: 100%; }
}

.plc-step-hidden { display: none; }
