/*
 * Loc-Box Quote Flow — base structural styles.
 * Visual design (colours, typography, spacing polish) to be added per design.
 */

/* Prevent horizontal scrollbar caused by 100vw full-bleed sections */
body:has(.lb-quote) {
	overflow-x: hidden;
}

/* Full-bleed: escape the theme's .container so the background spans the viewport */
.lb-quote {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	padding: 2rem calc(50vw - 450px);
}

/* Clamp the side padding on narrow viewports so content never touches the edge */
@media (max-width: 980px) {
	.lb-quote {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}
}

/* Progress bar */
.lb-quote__progress {
	display: flex;
	list-style: none;
	margin: 0 0 2.5rem;
	padding: 0;
	gap: 0;
	counter-reset: none;
}

.lb-quote__progress-step {
	flex: 1;
	text-align: center;
	position: relative;
	font-size: 0.75rem;
	color: #999;
}

.lb-quote__progress-step::before {
	content: '';
	display: block;
	height: 3px;
	background: #ddd;
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	z-index: 0;
}

.lb-quote__progress-step:first-child::before { left: 50%; }
.lb-quote__progress-step:last-child::before  { right: 50%; }

.lb-quote__progress-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 2px solid #ddd;
	background: #fff;
	font-size: 0.75rem;
	position: relative;
	z-index: 1;
}

.lb-quote__progress-step.is-active .lb-quote__progress-num {
	border-color: #8abb2a;
	background: #8abb2a;
	color: #fff;
}

.lb-quote__progress-step.is-active { color: #333; }

.lb-quote__progress-step.is-complete .lb-quote__progress-num {
	border-color: #8abb2a;
	background: #8abb2a;
	color: #fff;
}

.lb-quote__progress-step.is-complete::before { background: #8abb2a; }

/* Fill left half of the active step's connector in green (arrived from completed steps) */
.lb-quote__progress-step.is-active::before {
	background: linear-gradient(to right, #8abb2a 50%, #ddd 50%);
}
/* Step 1 has no left connector — right connector stays grey */
.lb-quote__progress-step:first-child.is-active::before {
	background: #ddd;
}

.lb-quote__progress-label {
	display: block;
	margin-top: 0.35rem;
}

/* Step content */
.lb-quote__step-header {
	margin-bottom: 1.5rem;
	text-align: center;
}

.lb-quote__step-title {
	margin: 0 0 0.5rem;
}

.lb-quote__step-intro {
	margin: 0;
}

/* Inputs */
.lb-quote__label {
	display: block;
	margin-bottom: 0.4rem;
	font-weight: 600;
}

.lb-quote__input {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	box-sizing: border-box;
}

.lb-quote__search-row {
	display: flex;
	gap: 0.5rem;
}

.lb-quote__search-row .lb-quote__input {
	flex: 1;
}

@media ( max-width: 600px ) {
	.lb-quote__search-row {
		flex-direction: column;
	}
	.lb-quote__search-row .lb-quote__input,
	.lb-quote__search-row .lb-quote__btn {
		width: 100%;
	}
}

/* Buttons */
.lb-quote__btn {
	padding: 0.6rem 1.25rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
	font-weight: 600;
}

.lb-quote__btn--primary {
	background: #8abb2a;
	color: #fff;
}

.lb-quote__btn--primary:hover { background: #7aaa1e; }

.lb-quote__btn--secondary {
	background: #eee;
	color: #333;
}

.lb-quote__btn--secondary:hover { background: #ddd; }

/* Location cards */
.lb-quote__location-cards {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 220px, 1fr ) );
	gap: 1rem;
	margin-top: 1.5rem;
}

.lb-quote__location-card {
	display: flex;
	flex-direction: column;
	padding: 1rem 1.25rem;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
	position: relative;
}

.lb-quote__location-card:hover,
.lb-quote__location-card:focus {
	border-color: #8abb2a;
	box-shadow: 0 2px 8px rgba( 0, 0, 0, 0.08 );
	outline: none;
}

.lb-quote__location-card.is-selected {
	border-color: #8abb2a;
	box-shadow: 0 0 0 1px #8abb2a;
}

.lb-quote__location-card.is-selected::after,
.lb-quote__addon-card.is-selected::after,
.lb-quote__unit-card.is-selected::after {
	content: '';
	position: absolute;
	top: 8px;
	right: 8px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #8abb2a url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/12px no-repeat;
}

.lb-quote__location-name {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.lb-quote__location-cta {
	font-size: 0.85rem;
	color: #8abb2a;
}

/* Feedback states */
.lb-quote__loading { color: #999; font-style: italic; }
.lb-quote__error   { color: #c0392b; }

@media ( max-width: 600px ) {
	.lb-quote__progress-label { display: none; }
	.lb-quote__location-cards { grid-template-columns: 1fr; }
}

/* Step 3 — contact form */
.lb-quote__form {
	max-width: 560px;
}

.lb-quote__form-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.25rem;
}

.lb-quote__form-group label {
	font-weight: 600;
	margin-bottom: 0.35rem;
	font-size: 0.9rem;
}

.lb-quote__form-group input,
.lb-quote__form-group select {
	padding: 0.65rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	width: 100%;
	box-sizing: border-box;
}

.lb-quote__form-group input:focus,
.lb-quote__form-group select:focus {
	border-color: #8abb2a;
	outline: none;
	box-shadow: 0 0 0 3px rgba( 138, 187, 42, 0.2 );
}

.lb-quote__form-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.lb-quote__field-hint {
	font-size: 0.8rem;
	color: #777;
	margin-top: 0.3rem;
}

.lb-quote__selected-summary {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
}

.lb-quote__form-actions {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
}

/* Buttons */
.lb-quote__btn {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s, opacity 0.15s;
	text-decoration: none;
}

.lb-quote__btn--primary {
	background: #8abb2a;
	color: #fff;
}

.lb-quote__btn--primary:hover {
	background: #79a423;
}

.lb-quote__btn--secondary {
	background: #fff;
	color: #8abb2a;
	border: 2px solid #8abb2a;
}

.lb-quote__btn--secondary:hover {
	background: #f5f9ee;
}

.lb-quote__btn--ghost {
	background: transparent;
	color: #555;
	border: 1px solid #ccc;
}

.lb-quote__btn--ghost:hover {
	background: #f5f5f5;
}

.lb-quote__btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Step 4 — decision cards */
.lb-quote__decision-cards {
	display: grid;
	grid-template-columns: repeat( auto-fit, minmax( 220px, 1fr ) );
	gap: 1.25rem;
	margin: 1.5rem 0;
}

.lb-quote__decision-card {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.lb-quote__decision-card h3 {
	margin: 0;
	font-size: 1.1rem;
}

.lb-quote__decision-card p {
	font-size: 0.9rem;
	color: #555;
	flex: 1;
	margin: 0;
}

.lb-quote__decision-icon {
	font-size: 2rem;
	line-height: 1;
}

.lb-quote__panel {
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1.5rem;
	max-width: 560px;
}

.lb-quote__panel-title {
	margin-top: 0;
}

.lb-quote__confirmation-message {
	text-align: center;
	padding: 2rem 1rem;
}

.lb-quote__confirmation-icon {
	font-size: 3rem;
	color: #8abb2a;
	margin-bottom: 0.75rem;
}

@media ( max-width: 600px ) {
	.lb-quote__form-row--half { grid-template-columns: 1fr; }
	.lb-quote__decision-cards { grid-template-columns: 1fr; }
}

/* Step 5 — contract details form */
.lb-quote__form--wide {
	max-width: 720px;
}

.lb-quote__fieldset {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	margin: 0 0 1.5rem;
}

.lb-quote__fieldset-legend {
	font-weight: 700;
	font-size: 1rem;
	/* Override browser default floating/gap behaviour */
	display: block;
	width: auto;
	padding: 0.75rem 1rem;
	margin: 0 0 1rem;
	box-sizing: border-box;
}

.lb-quote__fieldset-intro {
	margin-top: 0;
	font-size: 0.875rem;
	color: #666;
}

.lb-quote__optional {
	font-weight: 400;
	color: #999;
	font-size: 0.85em;
}

.lb-quote__form-row--thirds {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 1rem;
}

.lb-quote__form-group--radio {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.lb-quote__radio-label {
	font-weight: 600;
	font-size: 0.9rem;
}

.lb-quote__radio-group {
	display: flex;
	gap: 1.5rem;
}

.lb-quote__radio-group label {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	cursor: pointer;
	font-size: 0.95rem;
}

@media ( max-width: 600px ) {
	.lb-quote__form-row--thirds { grid-template-columns: 1fr; }
}

/* Step 6 — contract & signature */
.lb-quote__contract-wrapper {
	margin-bottom: 2rem;
}

.lb-quote__contract-scroll {
	border: 1px solid #ddd;
	border-radius: 6px;
	height: 320px;
	overflow-y: scroll;
	padding: 1.25rem 1.5rem;
	background: #fafafa;
	font-size: 0.875rem;
	line-height: 1.6;
	margin-bottom: 0.75rem;
}

.lb-quote__contract-scroll:focus {
	outline: 2px solid #8abb2a;
	outline-offset: 2px;
}

.lb-quote__contract-doc h3 { margin-top: 0; }
.lb-quote__contract-doc h4 { margin: 1.25rem 0 0.25rem; }

.lb-quote__contract-heading {
	font-size: 1.1rem;
	text-align: center;
	margin-bottom: 1rem;
}

.lb-quote__scroll-confirm {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	cursor: pointer;
	font-weight: 600;
}

.lb-quote__scroll-confirm input[type="checkbox"] {
	width: 1.1rem;
	height: 1.1rem;
	flex-shrink: 0;
	cursor: pointer;
}

.lb-quote__sig-wrapper {
	margin-bottom: 1.5rem;
}

.lb-quote__sig-label {
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.lb-quote__sig-canvas-wrap {
	position: relative;
	border: 2px solid #ccc;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	cursor: crosshair;
	margin-bottom: 0.5rem;
	touch-action: none;
}

.lb-quote__sig-canvas {
	display: block;
	width: 100%;
	height: 160px;
}

.lb-quote__sig-placeholder {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	color: #bbb;
	font-size: 0.9rem;
	pointer-events: none;
	margin: 0;
	user-select: none;
}

.lb-quote__sig-canvas-wrap:focus-within {
	border-color: #8abb2a;
}

.lb-quote__sig-clear {
	font-size: 0.85rem;
	padding: 0.4rem 0.9rem;
}

/* Step 7 — payment */
.lb-quote__payment-summary {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	width: 100%;
}

.lb-quote__payment-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.85rem 1.25rem;
	font-size: 0.9rem;
	border-bottom: 1px solid #f0f0f0;
	gap: 1rem;
}

.lb-quote__payment-summary-row:last-child {
	border-bottom: none;
}

.lb-quote__payment-summary-row--total {
	background: #f9f9f9;
	font-size: 1rem;
}

.lb-quote__payment-element-wrap {
	width: 100%;
}

#lb-payment-element {
	margin-bottom: 1.25rem;
}

#lb-pay-btn {
	width: 100%;
	padding: 1rem;
	font-size: 1.05rem;
}

/* Step 8 — further details */
.lb-quote__form textarea {
	padding: 0.65rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
	font-family: inherit;
	width: 100%;
	box-sizing: border-box;
	resize: vertical;
}

.lb-quote__form textarea:focus {
	border-color: #8abb2a;
	outline: none;
	box-shadow: 0 0 0 3px rgba( 138, 187, 42, 0.2 );
}

/* Step 9 — Yoti */
.lb-quote__yoti-loading {
	padding: 2rem 0;
}

.lb-quote__yoti-frame-wrap {
	margin-bottom: 1rem;
}

.lb-quote__yoti-iframe {
	width: 100%;
	height: 600px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
}

.lb-quote__yoti-hint {
	font-size: 0.8rem;
	color: #777;
	margin-top: 0.5rem;
}
.lb-quote__yoti-wait-hint {
	font-size: 0.9rem;
	color: #374151;
	background: #f0f7e6;
	border-left: 3px solid #8abb2a;
	padding: 0.75rem 1rem;
	border-radius: 0 6px 6px 0;
	margin-top: 1rem;
}
.lb-quote__yoti-wait-hint p {
	margin: 0 0 0.5rem;
}
.lb-quote__yoti-wait-hint p:last-child {
	margin-bottom: 0;
}

.lb-quote__dev-notice {
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-radius: 4px;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.lb-quote__alert {
	border-radius: 6px;
	padding: 1rem 1.25rem;
	font-size: 0.95rem;
}

.lb-quote__alert--error {
	background: #fdecea;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* Step 10 — confirmation */
.lb-quote__confirmation {
	max-width: 100%;
}

.lb-quote__confirmation-hero {
	text-align: center;
	padding: 1.5rem 0 2rem;
}

.lb-quote__confirmation-tick {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #8abb2a;
	color: #fff;
	font-size: 2.2rem;
	line-height: 72px;
	margin: 0 auto 1rem;
}

.lb-quote__confirmation-title {
	font-size: 1.6rem;
	margin: 0 0 0.5rem;
}

.lb-quote__confirmation-sub {
	color: #555;
	margin: 0;
}

.lb-quote__confirmation-summary {
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.5rem;
}

.lb-quote__confirmation-summary-title {
	margin: 0 0 1rem;
	font-size: 1rem;
}

.lb-quote__summary-list {
	margin: 0;
	padding: 0;
}

.lb-quote__summary-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.6rem 0;
	border-bottom: 1px solid #f0f0f0;
	gap: 1rem;
	font-size: 0.9rem;
}

.lb-quote__summary-row:last-child {
	border-bottom: none;
}

.lb-quote__summary-row dt {
	color: #666;
	font-weight: 400;
}

.lb-quote__summary-row dd {
	margin: 0;
	font-weight: 600;
	text-align: right;
}

.lb-quote__confirmation-next {
	margin-bottom: 2rem;
}

.lb-quote__confirmation-next h3 {
	margin-bottom: 0.75rem;
}

.lb-quote__next-steps {
	padding-left: 1.25rem;
	margin: 0;
	color: #444;
	line-height: 1.7;
}

.lb-quote__next-steps li {
	margin-bottom: 0.4rem;
}

.lb-quote__confirmation-actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

/* Confirmation — shared section title */
.lb-quote__confirmation-section-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.35rem;
}
.lb-quote__confirmation-section-sub {
	font-size: 0.9rem;
	color: #666;
	margin: 0 0 1.25rem;
}

/* Confirmation — unit image */
.lb-quote__confirmation-unit-img {
	text-align: center;
	margin-bottom: 1.5rem;
}
.lb-quote__confirmation-unit-img img {
	max-height: 180px;
	width: auto;
	max-width: 100%;
	mix-blend-mode: multiply;
	object-fit: contain;
}

/* Confirmation — popular products */
.lb-quote__confirmation-products {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}
.lb-quote__product-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
	gap: 1rem;
}
.lb-quote__product-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s, border-color 0.15s;
	background: #fff;
}
.lb-quote__product-card:hover {
	border-color: #8abb2a;
	box-shadow: 0 2px 10px rgba(0,0,0,0.08);
	text-decoration: none;
	color: inherit;
}
.lb-quote__product-img {
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f9fa;
}
.lb-quote__product-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lb-quote__product-img--placeholder {
	background: #f0f0f0;
}
.lb-quote__product-body {
	padding: 0.75rem;
}
.lb-quote__product-name {
	font-size: 0.875rem;
	font-weight: 600;
	margin: 0 0 0.25rem;
	line-height: 1.3;
}
.lb-quote__product-price {
	font-size: 0.875rem;
	color: #8abb2a;
	font-weight: 700;
	margin: 0;
}

/* Confirmation — FAQ section (reuses .lb-quote__faq-item styles from step 1) */
.lb-quote__confirmation-faqs {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e5e7eb;
}
.lb-quote__confirmation-faqs .lb-quote__faq-list {
	margin-top: 1rem;
}

/* =========================================================
   Step 2 — Unit cards
   ========================================================= */

.lb-quote__discount-banner {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	background: #f0f7e6;
	border: 1px solid #8abb2a;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	color: #2d5a00;
}
.lb-quote__discount-icon {
	font-size: 1.1rem;
	flex-shrink: 0;
}

.lb-quote__unit-cards {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.lb-quote__unit-card {
	display: grid;
	grid-template-columns: 300px 1fr;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.15s, box-shadow 0.15s;
	position: relative;
}
.lb-quote__unit-card.is-selected {
	border-color: #8abb2a;
	box-shadow: 0 0 0 1px #8abb2a;
}
.lb-quote__unit-card:hover {
	border-color: #8abb2a;
	box-shadow: 0 4px 16px rgba(138,187,42,0.12);
}

.lb-quote__show-more {
	display: block;
	width: 100%;
	margin-top: 0.75rem;
	padding: 0.7rem 1rem;
	background: #fff;
	border: 2px dashed #d1d5db;
	border-radius: 10px;
	font-size: 0.9rem;
	color: #6b7280;
	cursor: pointer;
	text-align: center;
	transition: border-color 0.15s, color 0.15s;
}
.lb-quote__show-more:hover {
	border-color: #8abb2a;
	color: #4a7a0f;
}
.lb-quote__show-more-count {
	font-size: 0.8rem;
	opacity: 0.75;
}
.lb-quote__unavail-wrap {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-top: 1rem;
}
.lb-quote__unit-card.is-unavailable {
	border-color: #e5e7eb;
}

.lb-quote__unit-visual {
	background: #f8f9fa;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-right: 1px solid #e5e7eb;
	padding: 5px;
	position: relative;
	cursor: zoom-in;
}
.lb-quote__unit-img {
	mix-blend-mode: multiply;
	width: 100%;
	height: auto;
	max-height: 200px;
	object-fit: contain;
	display: block;
}
.lb-quote__zoom-icon {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 28px;
	height: 28px;
	background: rgba(255,255,255,0.85);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #555;
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	transition: background 0.15s, color 0.15s;
	pointer-events: none;
}
.lb-quote__unit-visual:hover .lb-quote__zoom-icon {
	background: #8abb2a;
	color: #fff;
}
.lb-quote__zoom-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

/* ── Unit image zoom overlay ─────────────────────────────────────────── */
.lb-zoom-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.82);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 99999;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	cursor: zoom-out;
}
.lb-zoom-overlay.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.lb-zoom-overlay__img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 8px 40px rgba(0,0,0,0.5);
	mix-blend-mode: normal;
	background: #fff;
	padding: 12px;
}
.lb-zoom-overlay__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}
.lb-zoom-overlay__close:hover {
	background: rgba(255,255,255,0.3);
}
.lb-quote__unit-img-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	color: #9ca3af;
	text-align: center;
	line-height: 1.2;
	padding: 1rem;
}

.lb-quote__unit-info {
	padding: 1.1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.lb-quote__unit-header {
	display: flex;
	align-items: baseline;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.lb-quote__unit-name {
	margin: 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #111;
}
.lb-quote__unit-dims {
	font-size: 0.8rem;
	color: #6b7280;
	white-space: nowrap;
}

.lb-quote__unit-desc {
	margin: 0;
	font-size: 0.875rem;
	color: #555;
	line-height: 1.5;
}

/* Pricing */
.lb-quote__unit-pricing {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 0.75rem;
	margin-top: 0.25rem;
}
.lb-quote__price-was {
	font-size: 0.875rem;
	color: #9ca3af;
	text-decoration: line-through;
}
.lb-quote__price-now {
	font-size: 1.4rem;
	font-weight: 800;
	color: #111;
	line-height: 1;
}
.lb-quote__price-now small {
	font-size: 0.75rem;
	font-weight: 400;
	color: #6b7280;
	margin-left: 2px;
}
.lb-quote__discount-badge {
	background: #8abb2a;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
.lb-quote__discount-terms {
	font-size: 0.75rem;
	color: #6b7280;
	width: 100%;
}
.lb-quote__price-standard {
	font-size: 0.75rem;
	color: #9ca3af;
}

.lb-quote__unit-cta {
	margin-top: auto;
	padding-top: 0.5rem;
}
.lb-quote__unit-cta .lb-quote__btn {
	width: 100%;
}

.lb-quote__unavailable-msg {
	font-size: 0.85rem;
	color: #ef4444;
	font-style: italic;
	display: block;
	margin-bottom: 0.5rem;
}

.lb-quote__btn--sm {
	font-size: 0.8rem;
	padding: 0.4rem 0.85rem;
}

.lb-quote__notify-units {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.lb-quote__notify-unit-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	cursor: pointer;
}

.lb-quote__notify-unit-label input[type="checkbox"] {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
	accent-color: #8abb2a;
}

.lb-quote__fieldset-label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	margin-bottom: 0.25rem;
}

.lb-quote__fieldset-hint {
	font-size: 0.85rem;
	color: #6b7280;
	margin: 0 0 0.75rem;
}

/* Responsive — stack on small screens */
@media ( max-width: 600px ) {
	.lb-quote__unit-card {
		grid-template-columns: 1fr;
	}
	.lb-quote__unit-visual {
		min-height: 160px;
		border-right: none;
		border-bottom: 1px solid #e5e7eb;
	}
}

/* =========================================================
   Step 3 — Combined contact + intent layout
   ========================================================= */

.lb-quote__step3-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 2rem;
	align-items: start;
}

/* Action buttons */
.lb-quote__step3-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.lb-quote__step3-action {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	border-radius: 10px;
	border: 2px solid transparent;
	cursor: pointer;
	text-align: left;
	transition: all 0.15s;
	width: 100%;
	background: #fff;
}
.lb-quote__step3-action--primary {
	background: #8abb2a;
	border-color: #8abb2a;
	color: #fff;
}
.lb-quote__step3-action--primary:hover {
	background: #7aaa1e;
	border-color: #7aaa1e;
}
.lb-quote__step3-action--secondary {
	background: #fff;
	border-color: #d1d5db;
	color: #111;
}
.lb-quote__step3-action--secondary:hover {
	border-color: #8abb2a;
}
.lb-quote__step3-action:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.lb-quote__action-icon {
	font-size: 1.4rem;
	flex-shrink: 0;
	line-height: 1;
}
.lb-quote__action-body {
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.lb-quote__action-body strong {
	font-size: 0.975rem;
	display: block;
}
.lb-quote__action-body span {
	font-size: 0.8rem;
	opacity: 0.8;
}

/* Summary sidebar */
.lb-quote__step3-summary {
	position: sticky;
	top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.lb-quote__step3-accordion {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}
/* Find us content — match "Your selection" horizontal padding */
.lb-quote__step3-accordion--findus .lb-quote__location-info {
	padding: 0 1.25rem 1.25rem;
}
.lb-quote__step3-accordion--findus .lb-quote__location-info-block {
	padding-left: 0;
	padding-right: 0;
}
.lb-quote__step3-accordion-title {
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b7280;
	padding: 1rem 1.25rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	user-select: none;
}
.lb-quote__step3-accordion-title::-webkit-details-marker { display: none; }
.lb-quote__step3-accordion-title::after {
	content: '+';
	font-size: 1.1rem;
	font-weight: 300;
	color: #9ca3af;
}
.lb-quote__step3-accordion[open] > .lb-quote__step3-accordion-title::after {
	content: '−';
}
.lb-quote__step3-summary-inner {
	padding: 0 1.25rem 1.25rem;
}
.lb-quote__step3-summary-title {
	display: none;
}
.lb-quote__step3-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.5rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid #e5e7eb;
	font-size: 0.875rem;
}
.lb-quote__step3-summary-row--price {
	border-bottom: none;
	padding-top: 0.75rem;
}
.lb-quote__step3-summary-label {
	color: #6b7280;
	flex-shrink: 0;
}
.lb-quote__step3-summary-value {
	font-weight: 600;
	text-align: right;
}
.lb-quote__step3-summary-value small {
	font-weight: 400;
	font-size: 0.75rem;
	color: #6b7280;
}
.lb-quote__step3-summary-row--price .lb-quote__step3-summary-value {
	font-size: 1.1rem;
	color: #111;
}
.lb-quote__step3-change {
	display: inline-block;
	margin-top: 0.75rem;
	font-size: 0.8rem;
	color: #8abb2a;
	text-decoration: none;
}
.lb-quote__step3-change:hover {
	text-decoration: underline;
}

.lb-quote__step3-reassurance {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}
.lb-quote__reassurance-item {
	font-size: 0.8rem;
	color: #374151;
}

/* Responsive */
@media ( max-width: 700px ) {
	.lb-quote__step3-layout {
		grid-template-columns: 1fr;
	}
	.lb-quote__step3-summary {
		order: -1;
		position: static;
	}
	.lb-quote__step3-reassurance {
		display: none;
	}
}

/* Step 3 — location info below sidebar card */
.lb-quote__location-info {
	/* Styling handled by parent .lb-quote__step3-accordion */
}
.lb-quote__location-info-block {
	padding: 0.85rem 1.1rem;
}
.lb-quote__location-info-block + .lb-quote__location-info-block {
	border-top: 1px solid #e5e7eb;
}
.lb-quote__location-info-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #6b7280;
	margin-bottom: 0.35rem;
}
.lb-quote__location-info-value {
	font-size: 0.875rem;
	color: #111;
	line-height: 1.5;
}

/* Step 3 — promote "book" button by making it bigger and more prominent */
.lb-quote__step3-action--primary {
	padding: 1.15rem 1.25rem;
	box-shadow: 0 2px 8px rgba( 138, 187, 42, 0.35 );
}
.lb-quote__step3-action--primary .lb-quote__action-body strong {
	font-size: 1.05rem;
}

/* Step 3 sidebar — pricing with discount */
.lb-quote__summary-price-was {
	display: block;
	text-decoration: line-through;
	color: #9ca3af;
	font-size: 0.8rem;
	font-weight: 400;
}
.lb-quote__summary-disc-label {
	display: block;
	color: #8abb2a;
	font-size: 0.75rem;
	font-weight: 400;
}

/* Step 3 — virtual tour embed */
.lb-quote__location-info-block--tour {
	padding-bottom: 0;
}
.lb-quote__location-tour-wrap {
	position: relative;
}
.lb-quote__location-tour-embed {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	border-radius: 0;
}
.lb-quote__location-tour-embed iframe,
.lb-quote__location-tour-embed > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}
/* Play overlay — desktop only */
.lb-quote__tour-play-overlay {
	display: none;
}
@media (min-width: 901px) {
	.lb-quote__tour-play-overlay {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.25);
		border: none;
		cursor: pointer;
		padding: 0;
		transition: background 0.15s ease;
	}
	.lb-quote__tour-play-overlay:hover {
		background: rgba(0, 0, 0, 0.4);
	}
	.lb-quote__tour-play-overlay svg {
		color: #fff;
		filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
		width: 48px;
		height: 48px;
	}
}

/* Step 6 — payment summary */
.lb-quote__payment-summary {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	width: 100%;
	overflow: hidden;
}
.lb-quote__payment-summary-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.65rem 1.1rem;
	font-size: 0.9rem;
	border-bottom: 1px solid #e5e7eb;
}
.lb-quote__payment-summary-row:last-child {
	border-bottom: none;
}
.lb-quote__payment-summary-label {
	color: #6b7280;
	flex-shrink: 0;
}
.lb-quote__payment-summary-row > span:last-child,
.lb-quote__payment-summary-row > strong:last-child {
	text-align: right;
}
.lb-quote__payment-summary-row--total {
	background: #fff;
	padding-top: 0.85rem;
	padding-bottom: 0.85rem;
	font-size: 1rem;
}
.lb-quote__price-muted {
	color: #9ca3af;
	font-size: 0.85em;
	margin-right: 0.25rem;
}

/* -------------------------------------------------------------------------
   Step 3 — T&C checkbox
   ------------------------------------------------------------------------- */
.lb-quote__form-group--checkbox {
	margin-top: 0.25rem;
}
.lb-quote__checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	font-size: 0.9rem;
	cursor: pointer;
	line-height: 1.5;
}
.lb-quote__checkbox-label input[type="checkbox"] {
	margin-top: 0.2rem;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	cursor: pointer;
}
.lb-quote__btn--full {
	width: 100%;
}

/* -------------------------------------------------------------------------
   Step 4 — Add-ons
   ------------------------------------------------------------------------- */
.lb-quote__fieldset--cards {
	border: none;
	padding: 0;
	margin: 0;
}
.lb-quote__addon-picker .lb-quote__fieldset--cards {
	margin-bottom: 0;
}
.lb-quote__fieldset--cards .lb-quote__fieldset-legend {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	padding: 0;
	margin: 0 0 0.4rem;
	width: 100%;
	text-align: center;
	border-bottom: none;
}
.lb-quote__fieldset-intro {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0 0 1rem;
	text-align: center;
}
.lb-quote__addon-cards {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 180px, 1fr ) );
	gap: 0.75rem;
}
#lb-payment-plan-cards {
	grid-template-columns: repeat( 3, 1fr );
}
.lb-quote__addon-card {
	display: block;
	border: 2px solid #e5e7eb;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
	position: relative;
}
.lb-quote__addon-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}
.lb-quote__addon-card-inner {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	padding: 0.9rem 1rem;
}
.lb-quote__addon-card-title {
	font-weight: 600;
	font-size: 0.95rem;
}
.lb-quote__addon-card-desc {
	font-size: 0.8rem;
	color: #6b7280;
}
.lb-quote__addon-card-price {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.lb-quote__addon-price {
	font-weight: 600;
	color: #111;
}
.lb-quote__addon-price-sub {
	font-size: 0.8rem;
	color: #6b7280;
}
.lb-quote__addon-card.is-selected {
	border-color: #8abb2a;
	box-shadow: 0 0 0 1px #8abb2a;
}
.lb-quote__addon-card:hover:not(.is-selected) {
	border-color: #9ca3af;
}

/* Add-ons summary */
.lb-quote__addons-summary {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 1rem 1.1rem;
	margin-bottom: 1.5rem;
}
.lb-quote__addons-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 0.35rem 0;
	font-size: 0.9rem;
}
.lb-quote__addons-summary-row--total {
	padding-top: 0.6rem;
	margin-top: 0.25rem;
	border-top: 2px solid #d1d5db;
	font-size: 1rem;
}
.lb-quote__addons-summary-note {
	font-size: 0.8rem;
	color: #6b7280;
	margin: 0.5rem 0 0;
}

/* Step 4 full width */
.lb-quote__step-inner--wide {
	max-width: 100%;
}

/* Payment plan badge — "Most flexible" (monthly) and offer % (prepay) */
.lb-quote__plan-badge {
	display: inline-block;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 2px 10px;
	border-radius: 20px;
	white-space: nowrap;
	color: #fff;
}
.lb-quote__plan-badge--flexible {
	background: #8abb2a;
}
.lb-quote__plan-badge--offer {
	background: #8abb2a;
}

/* "Most Popular" badge on insurance cards */
.lb-quote__addon-badge {
	display: inline-block;
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	background: #8abb2a;
	color: #fff;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 2px 10px;
	border-radius: 20px;
	white-space: nowrap;
}
.lb-quote__addon-card {
	position: relative;
}

/* Form fills full width inside wide steps (e.g. add-ons) */
.lb-quote__step-inner--wide .lb-quote__form {
	max-width: 100%;
}

/* After-offer-expires notice */
.lb-quote__after-offer-notice {
	font-size: 0.85rem;
	color: #6b7280;
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 6px;
	padding: 0.75rem 1rem;
	margin: 1rem 0 1.5rem;
}
.lb-quote__addons-after-offer {
	color: #6b7280;
	font-style: italic;
}

/* Back navigation link */
.lb-quote__back-link {
	display: inline-block;
	margin-bottom: 1.25rem;
	font-size: 0.875rem;
	color: #6b7280;
	text-decoration: none;
}
.lb-quote__back-link:hover {
	color: #111827;
	text-decoration: underline;
}

/* Step 3 — split action buttons (Continue / Reserve) */
.lb-quote__form-actions-split {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}
.lb-quote__form-actions-split .lb-quote__btn {
	flex: 1 1 auto;
}

/* Reserve confirmation panel */
.lb-quote__reserve-confirmation {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
	padding: 1.5rem;
	margin-top: 1rem;
	text-align: center;
}
.lb-quote__reserve-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #16a34a;
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 0.75rem;
}
.lb-quote__reserve-confirmation h3 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}
.lb-quote__reserve-confirmation p {
	font-size: 0.9rem;
	color: #374151;
	margin: 0 0 1.25rem;
}

/* Step 3 — stacked intent buttons with descriptions */
.lb-quote__intent-btns {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.5rem;
}
.lb-quote__intent-btn {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	padding: 0.875rem 1.125rem;
	border-radius: 6px;
	border: 2px solid transparent;
	cursor: pointer;
	text-align: left;
	transition: background 0.15s, border-color 0.15s;
	background: none;
	font-family: inherit;
}
.lb-quote__intent-btn--primary {
	background: #16a34a;
	border-color: #16a34a;
	color: #fff;
}
.lb-quote__intent-btn--primary:hover {
	background: #15803d;
	border-color: #15803d;
}
.lb-quote__intent-btn--secondary {
	background: #fff;
	border-color: #d1d5db;
	color: #111827;
}
.lb-quote__intent-btn--secondary:hover {
	border-color: #9ca3af;
	background: #f9fafb;
}
.lb-quote__intent-btn-label {
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.3;
}
.lb-quote__intent-btn-desc {
	font-size: 0.8rem;
	margin-top: 0.2rem;
	line-height: 1.4;
	opacity: 0.85;
}
.lb-quote__intent-btn--secondary .lb-quote__intent-btn-desc {
	color: #6b7280;
	opacity: 1;
}

/* Outline button variant (used for site viewing CTA in sidebar) */
.lb-quote__btn--outline {
	background: transparent;
	border: 1.5px solid currentColor;
	color: inherit;
	opacity: 0.75;
}
.lb-quote__btn--outline:hover {
	opacity: 1;
	background: rgba(0,0,0,0.04);
}
.lb-quote__viewing-btn {
	margin-top: 0.75rem;
	font-size: 0.85rem;
}

/* Site viewing button bottom padding */
.lb-quote__viewing-btn {
	margin-bottom: 0.75rem;
}

/* Site viewing modal */
.lb-quote__modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.lb-quote__modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	cursor: pointer;
}
.lb-quote__modal-box {
	position: relative;
	background: #fff;
	border-radius: 12px;
	padding: 2rem;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
body.lb-modal-open {
	overflow: hidden;
}
/* Location page link in summary */
.lb-quote__location-page-link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px dotted currentColor;
}
.lb-quote__location-page-link:hover { color: #8abb2a; }


.lb-quote__location-page-btn {
	display: block;
	margin-top: 1rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: #4a7a0f;
	text-decoration: none;
}
.lb-quote__location-page-btn:hover { text-decoration: underline; }
.lb-quote__modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
}
.lb-quote__modal-close:hover {
	background: #f3f4f6;
	color: #111827;
}
.lb-quote__modal-title {
	margin: 0 0 0.35rem;
	font-size: 1.2rem;
	font-weight: 700;
}
.lb-quote__modal-intro {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	color: #6b7280;
}
.lb-quote__modal-confirm {
	text-align: center;
	padding: 1rem 0;
}
.lb-quote__modal-confirm h3 {
	margin: 0.75rem 0 0.5rem;
	font-size: 1.2rem;
	font-weight: 700;
}
.lb-quote__modal-confirm p {
	color: #6b7280;
	font-size: 0.875rem;
	margin: 0 0 1.25rem;
}
.lb-quote__modal-dismiss {
	background: none;
	border: none;
	color: #6b7280;
	font-size: 0.8rem;
	cursor: pointer;
	margin-top: 0.75rem;
	text-decoration: underline;
	display: block;
	width: 100%;
}
.lb-quote__modal-dismiss:hover {
	color: #374151;
}
.lb-quote__req {
	color: #dc2626;
}
/* Form rows inside modal */
#lb-viewing-form .lb-quote__form-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
@media (max-width: 480px) {
	.lb-quote__modal-box {
		padding: 1.5rem 1.25rem;
	}
	#lb-viewing-form .lb-quote__form-row--half {
		grid-template-columns: 1fr;
	}
}

/* Step 5 — plan value right-aligned */
.lb-quote__payment-summary-value--right {
	text-align: right;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

/* Step 4 summary — meta rows (location / unit) */
.lb-quote__addons-summary-row--meta {
	font-size: 0.8rem;
	color: #6b7280;
}
.lb-quote__addons-summary-row--divider {
	height: 0;
	border: none;
	border-top: 1px solid #e5e7eb;
	margin: 0.3rem 0;
	padding: 0;
}

/* Offer badge in summary */
.lb-quote__summary-offer-badge {
	margin-top: 0.5rem;
}
.lb-quote__offer-tag {
	display: inline-block;
	background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	letter-spacing: 0.01em;
}

/* FAQ styles — defined in the accordion section below */

/* Location card — nearby town match hint */
.lb-quote__location-nearby {
	font-size: 0.75rem;
	color: #6b7280;
	margin-top: 0.1rem;
}

/* ============================================================
   Step 2 — Size guide
   ============================================================ */
.lb-quote__size-guide {
	margin-top: 2.5rem;
	border-top: 1px solid #e5e7eb;
	padding-top: 2rem;
}
.lb-quote__size-guide-title {
	font-size: 1.1rem;
	font-weight: 700;
	margin: 0 0 0.4rem;
}
.lb-quote__size-guide-intro {
	font-size: 0.875rem;
	color: #6b7280;
	margin: 0 0 1.5rem;
}
.lb-quote__size-guide-grid {
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 200px, 1fr ) );
	gap: 1rem;
	margin-bottom: 2rem;
}
.lb-quote__size-card {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.lb-quote__size-card--large {
	grid-column: span 2;
}
.lb-quote__size-card-img--placeholder {
	background: #f3f4f6;
	aspect-ratio: 4 / 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	color: #9ca3af;
	font-size: 0.8rem;
	text-align: center;
	padding: 1rem;
}
.lb-quote__size-card-img--placeholder span {
	font-style: italic;
}
.lb-quote__size-card-img--placeholder small {
	font-size: 0.75rem;
	font-weight: 600;
	color: #6b7280;
}
.lb-quote__size-card-body {
	padding: 1rem;
	flex: 1;
}
.lb-quote__size-card-title {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	font-weight: 700;
}
.lb-quote__size-card-title span {
	font-weight: 400;
	font-size: 0.8rem;
	color: #6b7280;
	margin-left: 0.25rem;
}
.lb-quote__size-card-desc {
	font-size: 0.85rem;
	color: #374151;
	margin: 0 0 0.6rem;
}
.lb-quote__size-card-list {
	margin: 0;
	padding-left: 1.1rem;
	font-size: 0.8rem;
	color: #6b7280;
	line-height: 1.7;
}

/* Prohibited items */
.lb-quote__prohibited {
	background: #fff7ed;
	border: 1px solid #fed7aa;
	border-radius: 10px;
	padding: 1.25rem 1.5rem;
}
.lb-quote__prohibited-title {
	margin: 0 0 0.4rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #92400e;
}
.lb-quote__prohibited-intro {
	font-size: 0.85rem;
	color: #78350f;
	margin: 0 0 0.75rem;
}
.lb-quote__prohibited-list {
	list-style: none;
	padding: 0;
	margin: 0 0 0.75rem;
	display: grid;
	grid-template-columns: repeat( auto-fill, minmax( 220px, 1fr ) );
	gap: 0.3rem 1rem;
	font-size: 0.85rem;
	color: #92400e;
}
.lb-quote__prohibited-note {
	font-size: 0.8rem;
	color: #78350f;
	margin: 0;
}
@media ( max-width: 600px ) {
	.lb-quote__size-guide-grid { grid-template-columns: 1fr; }
	.lb-quote__size-card--large { grid-column: span 1; }
	.lb-quote__prohibited-list { grid-template-columns: 1fr; }
}

/* ============================================================
   Step 5 — Trust strip & pay button
   ============================================================ */
.lb-quote__trust-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	margin: 1.25rem 0 1rem;
	padding: 0.85rem 1rem;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
}
.lb-quote__trust-item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	color: #166534;
}
.lb-quote__trust-icon {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
	stroke: #16a34a;
}
.lb-quote__btn--pay {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	font-size: 1.05rem;
	padding: 0.9rem 1.5rem;
}
.lb-quote__btn--pay svg {
	width: 16px;
	height: 16px;
	stroke: currentColor;
}

/* ============================================================
   Step 6 — Mini progress hint
   ============================================================ */
.lb-quote__step-progress-hint {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	margin: 0.75rem 0 1.75rem;
	font-size: 0.78rem;
}
.lb-quote__step-progress-item {
	color: #9ca3af;
}
.lb-quote__step-progress-item--done {
	color: #16a34a;
	font-weight: 600;
}
.lb-quote__step-progress-item--active {
	color: #111827;
	font-weight: 700;
}
.lb-quote__step-progress-sep {
	color: #d1d5db;
}

/* ============================================================
   Step 7 — Yoti prereqs list
   ============================================================ */
.lb-quote__yoti-prereqs {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 0.85rem 1.1rem;
	margin-top: 1rem;
	font-size: 0.875rem;
}
.lb-quote__yoti-prereqs ul {
	margin: 0.4rem 0 0;
	padding-left: 1.25rem;
	line-height: 1.8;
}

/* ============================================================
   Step 5 — Payment layout with trust sidebar
   ============================================================ */
.lb-quote__payment-layout {
	display: grid;
	grid-template-columns: 1fr 220px;
	gap: 2rem;
	align-items: start;
}
.lb-quote__payment-main {
	min-width: 0;
}
.lb-quote__payment-trust {
	position: sticky;
	top: 1.5rem;
}
.lb-quote__trust-panel {
	background: #f9fafb;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 1.25rem;
}
.lb-quote__trust-list {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.lb-quote__trust-note {
	font-size: 0.75rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.5;
}
/* Override old inline trust-strip if it appears on mobile */
.lb-quote__trust-strip { display: none; }
@media ( max-width: 600px ) {
	#lb-payment-plan-cards {
		grid-template-columns: 1fr;
	}
}

@media ( max-width: 700px ) {
	.lb-quote__payment-layout {
		grid-template-columns: 1fr;
	}
	.lb-quote__payment-trust {
		position: static;
	}
	.lb-quote__trust-panel {
		padding: 1rem;
	}
	.lb-quote__trust-list {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 0.5rem 1rem;
	}
}

/* ============================================================
   Step 2 — selected location below header, centered
   ============================================================ */
.lb-quote__selected-location {
	text-align: center;
	font-size: 0.9rem;
	color: #4b5563;
	margin: 0 0 0.75rem;
	order: -1; /* when flex is used; handled positionally in PHP */
}

/* ============================================================
   Step 2 — size guide headings centered
   ============================================================ */
.lb-quote__size-guide-title,
.lb-quote__size-guide-intro {
	text-align: center;
}

/* ============================================================
   Step 4 — spacing and divider between add-on fieldsets
   ============================================================ */
.lb-quote__addon-section + .lb-quote__addon-section {
	margin-top: 0.75rem;
}

/* ============================================================
   Step 6 — full-width forms
   ============================================================ */

#lb-step-6 .lb-quote__form {
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

/* ============================================================
   Step 7 — centered prereqs box
   ============================================================ */
.lb-quote__yoti-prereqs {
	margin-left: auto;
	margin-right: auto;
	max-width: 480px;
}
.lb-quote__yoti-prereqs ul {
	list-style: none;
	padding: 0;
	margin: 0.5rem 0 0;
}

/* Step 3 — virtual tour modal */
.lb-quote__tour-modal .lb-quote__tour-modal-box {
	position: relative;
	width: 90vw;
	max-width: 860px;
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	z-index: 1001;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}
.lb-quote__tour-modal .lb-quote__modal-close {
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
	z-index: 10;
}
.lb-quote__tour-modal .lb-quote__modal-close:hover {
	background: rgba(0, 0, 0, 0.8);
}
.lb-quote__tour-modal-video {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
}
.lb-quote__tour-modal-video iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ── Location-specific reviews section (below booking shell) ── */
.lb-quote__reviews-section {
	background: #f7f9f3;
	padding: 3rem 1.5rem;
	margin-top: 2rem;
	text-align: center;
	width: 100vw;
	margin-left: calc(50% - 50vw);
}
.lb-quote__reviews-inner {
	max-width: 960px;
	margin: 0 auto;
}
.lb-quote__reviews-title {
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
}
.lb-quote__reviews-sub {
	color: #555;
	margin-bottom: 1.5rem;
}

/* ── Size guide disclosure ── */

.lb-quote__disclosure {
	border: 1px solid #e0e5d6;
	border-radius: 6px;
	overflow: hidden;
	margin-top: 0.75rem;
}

.lb-quote__disclosure-trigger {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.9rem 1.1rem;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	list-style: none;
	background: #f7f9f3;
	user-select: none;
	transition: background 0.15s;
}
.lb-quote__disclosure-trigger::-webkit-details-marker { display: none; }

.lb-quote__disclosure[open] .lb-quote__disclosure-trigger {
	background: #edf2e4;
	border-bottom: 1px solid #e0e5d6;
}

.lb-quote__disclosure-trigger:hover { background: #edf2e4; }

/* Rotating chevron for size guide */
.lb-quote__disclosure-chevron {
	margin-left: auto;
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	display: inline-block;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235a7a2a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
	transition: transform 0.2s;
}
.lb-quote__disclosure[open] .lb-quote__disclosure-chevron {
	transform: rotate(180deg);
}

.lb-quote__disclosure-body {
	padding: 1.25rem 1.25rem 1.5rem;
	font-size: 0.9rem;
	line-height: 1.65;
}

/* Size guide disclosure wrapper */
.lb-quote__size-guide-disclosure {
	margin-top: 2rem;
}

/* ── FAQ accordion — matches location page style ── */

.lb-quote__faq {
	margin-top: 2.5rem;
}
.lb-quote__faq-title {
	font-size: 1.15rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.lb-quote__faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.lb-quote__faq-item {
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}
.lb-quote__faq-q {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
	user-select: none;
}
.lb-quote__faq-q::-webkit-details-marker { display: none; }
.lb-quote__faq-q::after {
	content: '+';
	font-size: 1.3rem;
	font-weight: 300;
	flex-shrink: 0;
	color: #8abb2a;
}
.lb-quote__faq-item[open] .lb-quote__faq-q::after { content: '−'; }
.lb-quote__faq-a {
	padding: 0 1.25rem 1.25rem;
	font-size: 0.9rem;
	line-height: 1.65;
	color: #374151;
}
.lb-quote__faq-a p { margin: 0 0 0.6rem; }
.lb-quote__faq-a p:last-child { margin-bottom: 0; }

/* Prohibited items list inside FAQ */
.lb-quote__faq-prohibited {
	margin: 0.6rem 0 0.8rem 1.1rem;
	padding: 0;
	list-style: disc;
	line-height: 1.8;
}

/* Step 3 size guide — hide image placeholder column (images not shown in compact mode) */
#lb-step-3 .lb-quote__size-card-img { display: none; }

/* ── Step 4 overview box ── */
.lb-quote__overview-box {
	border: 1px solid #e0e5d6;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1.75rem;
}
.lb-quote__overview-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 0.65rem 1.1rem;
	font-size: 0.9rem;
	border-bottom: 1px solid #f0f4ea;
}
.lb-quote__overview-row:last-child { border-bottom: none; }
.lb-quote__overview-label { color: #666; }
.lb-quote__overview-value { font-weight: 600; text-align: right; }

/* ── Step 4 collapsed add-on rows ── */
.lb-quote__addon-section {
	border: 1px solid #e0e5d6;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 1rem;
}
.lb-quote__addon-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1.1rem;
	background: #f7f9f3;
	transition: background 0.15s;
}
.lb-quote__addon-row.is-open { background: #edf2e4; }
.lb-quote__addon-row-info {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}
.lb-quote__addon-row-label {
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #5a7a2a;
}
.lb-quote__addon-row-value {
	font-size: 0.92rem;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.lb-quote__addon-row-change {
	flex-shrink: 0;
	padding: 0.35rem 0.9rem;
	border: 1px solid #8abb2a;
	border-radius: 4px;
	background: #fff;
	color: #5a7a2a;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}
.lb-quote__addon-row-change:hover {
	background: #8abb2a;
	color: #fff;
}
.lb-quote__addon-picker {
	border-top: 1px solid #e0e5d6;
	padding: 1.25rem;
}
.lb-quote__addon-done-btn {
	display: block;
	margin-top: 1rem;
	padding: 0.5rem 1.5rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	color: #333;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
}
.lb-quote__addon-done-btn:hover { background: #f5f5f5; }
