/*
 * Booking and quote flow interface.
 */

.bp-flow-shell {
	--flow-border: rgba(27, 34, 30, 0.16);
	--flow-error: #a72f2f;
	background: var(--wp--preset--color--soft-background);
	border-radius: clamp(1.25rem, 3vw, 2.5rem);
	box-sizing: border-box;
	color: var(--wp--preset--color--deep-charcoal);
	margin-inline: auto;
	max-width: 1240px;
	padding: clamp(1rem, 3vw, 2.5rem);
	width: 100%;
}

.bp-flow-shell,
.bp-flow-shell * {
	box-sizing: border-box;
}

.bp-honeypot {
	height: 1px;
	left: -10000px;
	overflow: hidden;
	position: absolute;
	top: auto;
	width: 1px;
}

.bp-flow-layout {
	align-items: start;
	display: grid;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	grid-template-columns: minmax(230px, 0.32fr) minmax(0, 1fr);
}

.bp-flow-progress {
	background: var(--wp--preset--color--deep-charcoal);
	border-radius: var(--wp--preset--border-radius--large);
	color: var(--wp--preset--color--white);
	padding: clamp(1.25rem, 3vw, 2rem);
	position: sticky;
	top: 100px;
}

.bp-flow-progress__count {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.78rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bp-flow-progress__track {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 999px;
	height: 5px;
	margin: 1rem 0 1.5rem;
	overflow: hidden;
}

.bp-flow-progress__bar {
	background: var(--wp--preset--color--brand-gold);
	display: block;
	height: 100%;
	transition: width 220ms ease;
	width: 0;
}

.bp-flow-stepper {
	display: grid;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bp-flow-stepper li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bp-flow-stepper button {
	align-items: center;
	background: transparent;
	border: 0;
	color: rgba(255, 255, 255, 0.66);
	cursor: pointer;
	display: grid;
	font: inherit;
	font-size: 0.86rem;
	gap: 0.75rem;
	grid-template-columns: 30px minmax(0, 1fr);
	min-height: 52px;
	padding: 0.75rem 0;
	text-align: left;
	width: 100%;
}

.bp-flow-stepper button:disabled {
	cursor: default;
	opacity: 0.55;
}

.bp-flow-stepper__number {
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	display: inline-flex;
	font-size: 0.72rem;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.bp-flow-stepper button.is-current {
	color: var(--wp--preset--color--white);
	font-weight: 750;
}

.bp-flow-stepper button.is-current .bp-flow-stepper__number {
	background: var(--wp--preset--color--brand-gold);
	border-color: var(--wp--preset--color--brand-gold);
	color: var(--wp--preset--color--deep-charcoal);
}

.bp-flow-stepper button.is-complete .bp-flow-stepper__number::after {
	content: "\2713";
	font-weight: 800;
}

.bp-flow-stepper button.is-complete .bp-flow-stepper__number {
	font-size: 0;
}

.bp-flow-main {
	background: var(--wp--preset--color--white);
	border: 1px solid var(--flow-border);
	border-radius: var(--wp--preset--border-radius--large);
	max-width: 100%;
	min-width: 0;
	padding: clamp(1.25rem, 4vw, 3.5rem);
	width: 100%;
}

.bp-flow-status {
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
}

.bp-flow-errors {
	background: #fff1f1;
	border: 2px solid var(--flow-error);
	border-radius: var(--wp--preset--border-radius--medium);
	color: #771d1d;
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	scroll-margin-top: 7rem;
}

.bp-flow-errors:focus {
	outline: 3px solid rgba(167, 47, 47, 0.28);
	outline-offset: 3px;
}

.bp-flow-errors p {
	font-weight: 800;
	margin-top: 0;
}

.bp-flow-errors ul {
	margin-bottom: 0;
}

.bp-flow-step {
	max-width: 100%;
	min-width: 0;
}

.bp-flow-step fieldset {
	min-width: 0;
}

.bp-flow-shell.is-enhanced .bp-flow-step[hidden],
.bp-flow-shell [hidden] {
	display: none !important;
}

.bp-flow-step__eyebrow {
	color: var(--wp--preset--color--deep-gold);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bp-flow-step h2 {
	font-size: clamp(2.2rem, 4.5vw, 4.5rem);
	letter-spacing: -0.055em;
	line-height: 0.98;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
	max-width: 12ch;
}

.bp-flow-step__intro {
	color: var(--wp--preset--color--muted-text);
	font-size: var(--wp--preset--font-size--body-large);
	max-width: 720px;
}

.bp-choice-grid,
.bp-addon-grid {
	border: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(2rem, 4vw, 3rem);
	min-inline-size: 0;
	padding: 0;
	width: 100%;
}

.bp-choice-card,
.bp-addon-card {
	border: 1px solid var(--flow-border);
	border-radius: var(--wp--preset--border-radius--large);
	display: grid;
	min-height: 190px;
	min-width: 0;
	padding: 1.25rem;
	position: relative;
	transition:
		border-color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
}

@media (min-width: 1100px) {
	.bp-flow-step[data-step="service"] .bp-choice-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bp-flow-step[data-step="service"] .bp-choice-card {
		min-height: 180px;
	}
}

@media (hover: hover) and (pointer: fine) {
	.bp-choice-card:hover,
	.bp-addon-card:hover {
		border-color: rgba(157, 110, 24, 0.58);
		box-shadow: 0 12px 28px rgba(27, 34, 30, 0.08);
		transform: translateY(-2px);
	}
}

.bp-choice-card:has(input:checked),
.bp-addon-card:has(input:checked),
.bp-choice-card.is-selected,
.bp-addon-card.is-selected {
	border-color: var(--wp--preset--color--deep-gold);
	box-shadow: 0 0 0 2px rgba(201, 151, 50, 0.22);
}

.bp-choice-card input,
.bp-addon-card input[type="checkbox"] {
	accent-color: var(--wp--preset--color--deep-gold);
	height: 22px;
	margin: 0;
	width: 22px;
}

.bp-choice-card > label {
	cursor: pointer;
	display: grid;
	gap: 0.65rem;
	min-height: 124px;
}

.bp-choice-card__top,
.bp-addon-card__top {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.bp-choice-card__icon {
	align-items: center;
	background: var(--wp--preset--color--pale-sage);
	border-radius: 50%;
	color: var(--wp--preset--color--deep-sage);
	display: inline-flex;
	font-weight: 800;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.bp-choice-card h3,
.bp-addon-card h3 {
	font-size: 1.2rem;
	margin-bottom: 0.4rem;
}

.bp-choice-card p,
.bp-addon-card p {
	font-size: 0.92rem;
	margin-top: 0;
}

.bp-choice-card__link {
	align-items: center;
	display: inline-flex;
	min-height: 44px;
	margin-top: auto;
}

.bp-addon-card__price {
	color: var(--wp--preset--color--deep-gold);
	font-size: 0.75rem !important;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.bp-addon-card__quantity {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	margin-top: auto;
}

.bp-addon-card__quantity input {
	min-height: 44px;
	width: 82px;
}

.bp-form-grid {
	display: grid;
	gap: 1.15rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: clamp(2rem, 4vw, 3rem);
}

.bp-flow-service-area {
	background: var(--wp--preset--color--pale-sage);
	border: 1px solid rgba(40, 86, 66, 0.2);
	border-radius: var(--wp--preset--border-radius--large);
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: clamp(1rem, 3vw, 1.5rem);
}

.bp-flow-service-area h3 {
	font-size: 1.25rem;
	margin: 0 0 0.4rem;
}

.bp-flow-service-area > p {
	color: var(--wp--preset--color--muted-text);
	margin: 0;
}

.bp-flow-service-area .bp-form-grid {
	margin-top: 1rem;
}

.bp-service-area-feedback {
	background: var(--wp--preset--color--white);
	border-left: 4px solid var(--wp--preset--color--deep-sage);
	border-radius: var(--wp--preset--border-radius--medium);
	margin-top: 1rem;
	padding: 0.9rem 1rem;
}

.bp-service-area-feedback:focus {
	outline: 3px solid rgba(40, 86, 66, 0.2);
	outline-offset: 3px;
}

.bp-service-area-feedback strong,
.bp-service-area-feedback p {
	display: block;
	margin: 0;
}

.bp-service-area-feedback p {
	font-size: 0.9rem;
	margin-top: 0.25rem;
}

.bp-service-area-feedback .bp-service-area-feedback__minimum {
	border-top: 1px solid currentColor;
	font-weight: 650;
	margin-top: 0.65rem;
	padding-top: 0.65rem;
}

.bp-service-area-feedback.is-unavailable {
	background: #fff1f1;
	border-left-color: var(--flow-error);
	color: #771d1d;
}

.bp-service-area-feedback.is-limited,
.bp-service-area-feedback.is-manual_review,
.bp-service-area-feedback.is-custom_quote,
.bp-service-area-feedback.is-not_recognized,
.bp-service-area-feedback.is-review {
	background: rgba(201, 151, 50, 0.12);
	border-left-color: var(--wp--preset--color--deep-gold);
	color: #6d4a0c;
}

.bp-field {
	display: grid;
	gap: 0.45rem;
	min-width: 0;
}

.bp-field--full {
	grid-column: 1 / -1;
}

.bp-field label,
.bp-field legend {
	font-size: 0.9rem;
	font-weight: 750;
}

.bp-field input:not([type="checkbox"], [type="radio"]),
.bp-field select,
.bp-field textarea {
	background: var(--wp--preset--color--soft-background);
	border: 1px solid var(--flow-border);
	border-radius: var(--wp--preset--border-radius--small);
	font: inherit;
	min-height: 50px;
	padding: 0.8rem 0.9rem;
	width: 100%;
}

.bp-field input:not([type="checkbox"], [type="radio"]):focus-visible,
.bp-field select:focus-visible,
.bp-field textarea:focus-visible {
	border-color: var(--wp--preset--color--deep-gold);
	box-shadow: 0 0 0 3px rgba(201, 151, 50, 0.2);
	outline: 0;
}

.bp-field textarea {
	min-height: 130px;
	resize: vertical;
}

.bp-field [aria-invalid="true"] {
	border-color: var(--flow-error) !important;
	box-shadow: 0 0 0 2px rgba(167, 47, 47, 0.16);
}

.bp-field-error {
	color: var(--flow-error);
	font-size: 0.82rem;
	font-weight: 650;
}

.bp-radio-grid {
	border: 0;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
}

.bp-radio-grid legend {
	grid-column: 1 / -1;
	margin-bottom: 0.2rem;
}

.bp-field-hint {
	color: var(--wp--preset--color--muted-text, #6c675f);
	font-size: 0.86rem;
	font-weight: 500;
	grid-column: 1 / -1;
	line-height: 1.5;
}

.bp-radio-option,
.bp-check-option {
	align-items: flex-start;
	border: 1px solid var(--flow-border);
	border-radius: var(--wp--preset--border-radius--medium);
	cursor: pointer;
	display: flex;
	gap: 0.7rem;
	min-height: 50px;
	padding: 0.85rem;
}

.bp-radio-option:has(input:checked),
.bp-check-option:has(input:checked) {
	border-color: var(--wp--preset--color--deep-gold);
	box-shadow: inset 4px 0 0 var(--wp--preset--color--brand-gold);
}

.bp-radio-option input,
.bp-check-option input {
	accent-color: var(--wp--preset--color--deep-gold);
	flex: 0 0 auto;
	height: 20px;
	margin-top: 0.1rem;
	width: 20px;
}

.bp-flow-note,
.bp-estimate-notice,
.bp-security-note {
	border-radius: var(--wp--preset--border-radius--medium);
	font-size: 0.9rem;
	margin-top: 1.5rem;
	padding: 1rem 1.1rem;
}

.bp-flow-note {
	background: var(--wp--preset--color--pale-sage);
	border-left: 4px solid var(--wp--preset--color--deep-sage);
}

.bp-estimate-notice {
	background: rgba(201, 151, 50, 0.12);
	border: 1px solid rgba(157, 110, 24, 0.3);
	color: #6d4a0c;
}

.bp-estimate-notice__icon,
.bp-security-note__icon {
	font-weight: 900;
	margin-right: 0.35rem;
}

.bp-flow-actions {
	align-items: center;
	border-top: 1px solid var(--flow-border);
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
	margin-top: clamp(2rem, 4vw, 3.5rem);
	padding-top: 1.5rem;
}

.bp-flow-actions button,
.bp-flow-actions a {
	align-items: center;
	border-radius: var(--wp--preset--border-radius--pill);
	display: inline-flex;
	font: inherit;
	font-weight: 750;
	justify-content: center;
	min-height: 46px;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
}

.bp-flow-actions__primary {
	background: var(--wp--preset--color--brand-gold);
	border: 1px solid var(--wp--preset--color--brand-gold);
	color: var(--wp--preset--color--deep-charcoal);
}

.bp-flow-actions__secondary {
	background: transparent;
	border: 1px solid var(--flow-border);
	color: var(--wp--preset--color--deep-charcoal);
}

.bp-flow-actions button[aria-busy="true"] {
	cursor: wait;
	opacity: 0.72;
}

.bp-summary-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 2rem;
}

.bp-summary-card {
	background: var(--wp--preset--color--soft-background);
	border: 1px solid var(--flow-border);
	border-radius: var(--wp--preset--border-radius--medium);
	min-width: 0;
	padding: 1.1rem;
}

.bp-summary-card__heading {
	align-items: center;
	display: flex;
	gap: 0.75rem;
	justify-content: space-between;
}

.bp-summary-card h3 {
	font-size: 1rem;
	margin: 0;
}

.bp-summary-card button {
	background: transparent;
	border: 0;
	color: var(--wp--preset--color--deep-gold);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 750;
	min-height: 44px;
	padding: 0.5rem;
	text-decoration: underline;
}

.bp-summary-card p {
	overflow-wrap: anywhere;
}

.bp-total-card {
	background: var(--wp--preset--color--deep-charcoal);
	border-radius: var(--wp--preset--border-radius--large);
	color: var(--wp--preset--color--white);
	margin-top: 1rem;
	padding: clamp(1.25rem, 3vw, 2rem);
}

.bp-total-card__row {
	align-items: baseline;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.bp-total-card__amount {
	color: var(--wp--preset--color--soft-gold);
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	font-weight: 800;
	text-align: right;
}

.bp-price-breakdown {
	display: grid;
	gap: 0.45rem;
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

.bp-price-breakdown:empty {
	display: none;
}

.bp-price-breakdown li {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.bp-payment-options {
	border: 0;
	display: grid;
	gap: 0.75rem;
	margin-top: 2rem;
	padding: 0;
}

.bp-payment-options > legend {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.bp-payment-methods {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bp-payment-method {
	background: #fff;
	border-radius: 16px;
	min-height: 148px;
	padding: 1.1rem;
}

.bp-payment-method:has(input:checked) {
	background: rgba(201, 151, 50, 0.07);
	box-shadow: inset 4px 0 0 var(--wp--preset--color--brand-gold), 0 8px 24px rgba(22, 40, 32, 0.06);
}

.bp-payment-method__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.bp-payment-method__heading {
	align-items: center;
	display: flex;
	font-size: 1rem;
	font-weight: 800;
	gap: 0.45rem;
}

.bp-payment-method__copy {
	color: var(--wp--preset--color--muted-text, #6c675f);
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.45;
}

.bp-card-brands {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.38rem;
	margin-top: auto;
	padding-top: 0.7rem;
}

.bp-card-brand {
	align-items: center;
	background: #fff;
	border: 1px solid #d7dbe0;
	border-radius: 5px;
	box-sizing: border-box;
	display: inline-flex;
	height: 25px;
	justify-content: center;
	min-width: 39px;
	padding: 0 0.3rem;
}

.bp-card-brand--visa {
	color: #1434cb;
	font-size: 0.73rem;
	font-style: italic;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.bp-card-brand--mastercard {
	min-width: 39px;
	position: relative;
}

.bp-card-brand--mastercard i {
	background: #eb001b;
	border-radius: 50%;
	height: 15px;
	position: absolute;
	transform: translateX(-4px);
	width: 15px;
}

.bp-card-brand--mastercard i + i {
	background: #f79e1b;
	transform: translateX(4px);
}

.bp-card-brand--amex {
	background: #2b83c6;
	border-color: #2b83c6;
	color: #fff;
	font-size: 0.62rem;
	font-weight: 900;
}

.bp-card-brand--discover {
	color: #202124;
	font-size: 0.53rem;
	font-weight: 850;
	letter-spacing: -0.03em;
}

.bp-cash-app-mark {
	align-items: center;
	background: #00c244;
	border-radius: 7px;
	color: #fff;
	display: inline-flex;
	font-size: 0.9rem;
	height: 24px;
	justify-content: center;
	width: 24px;
}

.bp-payment-consent {
	margin-top: 1.5rem;
}

.bp-cash-app-card {
	align-items: center;
	background: linear-gradient(135deg, #f0fff4, #ffffff);
	border: 1px solid rgba(0, 176, 80, 0.35);
	border-radius: var(--wp--preset--border-radius--large);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: 1.5rem;
	padding: clamp(1.25rem, 4vw, 2rem);
}

.bp-cash-app-card[hidden] {
	display: none;
}

.bp-cash-app-card__label {
	color: #087a3b;
	font-size: 0.76rem !important;
	font-weight: 800;
	letter-spacing: 0.06em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.bp-cash-app-card h3,
.bp-cash-app-card p {
	margin-bottom: 0;
	margin-top: 0;
}

.bp-cash-app-card__button {
	align-items: center;
	background: #00b050;
	border-radius: var(--wp--preset--border-radius--pill);
	color: #fff;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 46px;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
}

.bp-cash-app-card__button:hover,
.bp-cash-app-card__button:focus-visible {
	background: #087a3b;
	color: #fff;
}

.bp-cash-app-card__note {
	border-top: 1px solid rgba(0, 176, 80, 0.2);
	font-size: 0.88rem !important;
	grid-column: 1 / -1;
	padding-top: 0.9rem;
}

.bp-cash-app-card--confirmation {
	margin-left: auto;
	margin-right: auto;
	max-width: 760px;
	text-align: left;
}

.bp-cash-app-card--prepayment {
	grid-template-columns: minmax(0, 1fr);
}

.bp-payment-element {
	min-height: 52px;
	margin: 1rem 0;
	padding: 1rem;
	border: 1px solid rgba(22, 40, 32, 0.18);
	border-radius: 12px;
	background: #fff;
}

.bp-payment-element:empty {
	display: none;
}

.bp-payment-element:focus-within {
	border-color: #b58a2a;
	box-shadow: 0 0 0 3px rgba(181, 138, 42, 0.2);
}

.bp-provider-placeholder {
	background: #fff;
	border: 1px solid rgba(22, 40, 32, 0.16);
	border-radius: var(--wp--preset--border-radius--large);
	box-shadow: 0 12px 35px rgba(22, 40, 32, 0.07);
	margin-top: 1.5rem;
	padding: clamp(1.25rem, 4vw, 2.5rem);
}

.bp-provider-placeholder__status {
	color: var(--wp--preset--color--muted-text, #6c675f);
	margin: 0.5rem 0 0;
}

.bp-provider-placeholder__heading,
.bp-payment-due {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.bp-provider-placeholder__heading h3,
.bp-provider-placeholder__eyebrow,
.bp-payment-due {
	margin: 0;
}

.bp-provider-placeholder__eyebrow {
	color: var(--wp--preset--color--deep-gold, #9d6e18);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.bp-powered-by-stripe {
	color: #635bff;
	font-size: 0.78rem;
	font-weight: 800;
	white-space: nowrap;
}

.bp-payment-due {
	border-top: 1px solid var(--flow-border);
	padding-top: 1rem;
}

.bp-payment-due strong {
	font-size: 1.15rem;
}

.bp-security-note {
	background: #edf6f0;
	border: 1px solid rgba(41, 73, 56, 0.24);
	color: #254632;
}

.bp-confirmation {
	text-align: center;
}

.bp-confirmation__icon {
	align-items: center;
	background: var(--wp--preset--color--pale-sage);
	border-radius: 50%;
	color: var(--wp--preset--color--deep-sage);
	display: inline-flex;
	font-size: 2rem;
	font-weight: 900;
	height: 80px;
	justify-content: center;
	width: 80px;
}

.bp-confirmation h2 {
	margin-inline: auto;
	max-width: 15ch;
}

.bp-confirmation__warning {
	background: #fff7e5;
	border: 1px solid rgba(157, 110, 24, 0.32);
	border-radius: var(--wp--preset--border-radius--medium);
	margin: 1.5rem auto;
	max-width: 700px;
	padding: 1rem;
}

.bp-confirmation-grid {
	display: grid;
	gap: 0;
	margin: 2rem auto 0;
	max-width: 760px;
	text-align: left;
}

.bp-confirmation-row {
	border-top: 1px solid var(--flow-border);
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(140px, 0.4fr) minmax(0, 1fr);
	padding: 1rem 0;
}

.bp-confirmation-row dt {
	font-weight: 800;
}

.bp-confirmation-row dd {
	margin: 0;
	overflow-wrap: anywhere;
}

.bp-confirmation-row--payment {
	background: #f7faf8;
	border: 1px solid rgba(41, 73, 56, 0.18);
	border-radius: 12px;
	margin-top: 0.5rem;
	padding: 1rem;
}

[data-confirm="payment-status"] {
	font-weight: 700;
}

[data-confirm="payment-status"][data-payment-state="paid"],
[data-confirm="payment-status"][data-payment-state="partially_paid"] {
	color: #137333;
}

[data-confirm="payment-status"][data-payment-state="failed"],
[data-confirm="payment-status"][data-payment-state="cancelled"] {
	color: #a12622;
}

[data-confirm="payment-status"][data-payment-state="processing"],
[data-confirm="payment-status"][data-payment-state="pending"] {
	color: #6d4a0c;
}

@media (prefers-contrast: more) {
	.bp-choice-card:has(input:checked),
	.bp-addon-card:has(input:checked),
	.bp-radio-option:has(input:checked),
	.bp-check-option:has(input:checked) {
		border: 3px solid currentColor;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bp-flow-progress__bar,
	.bp-choice-card,
	.bp-addon-card {
		transition: none;
	}
}

@media (max-width: 900px) {
	.bp-flow-layout {
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-flow-progress {
		position: static;
	}

	.bp-flow-stepper {
		display: flex;
		gap: 0.5rem;
		overflow-x: auto;
		padding-bottom: 0.5rem;
		scrollbar-width: thin;
		scrollbar-color: rgba(216, 164, 52, 0.75) rgba(255, 255, 255, 0.1);
	}

	.bp-flow-stepper::-webkit-scrollbar {
		height: 6px;
	}

	.bp-flow-stepper::-webkit-scrollbar-thumb {
		background: rgba(216, 164, 52, 0.75);
		border-radius: 999px;
	}

	.bp-flow-stepper::-webkit-scrollbar-track {
		background: rgba(255, 255, 255, 0.1);
		border-radius: 999px;
	}

	.bp-flow-stepper li {
		border: 0 !important;
		flex: 0 0 min(190px, 55vw);
	}

	.bp-flow-stepper button {
		background: rgba(255, 255, 255, 0.06);
		border-radius: var(--wp--preset--border-radius--medium);
		padding: 0.65rem;
	}
}

@media (max-width: 600px) {
	.bp-flow-shell {
		border-radius: 0;
		margin-inline: calc(-1 * var(--brightpath-site-gutter, 20px));
		width: calc(100% + 2 * var(--brightpath-site-gutter, 20px));
	}

	.bp-flow-main {
		padding: 1rem;
	}

	.bp-flow-progress {
		padding: 1rem;
	}

	.bp-flow-progress__track {
		margin: 0.65rem 0 0.8rem;
	}

	.bp-flow-stepper {
		display: grid;
		gap: 0.2rem;
		grid-auto-columns: minmax(0, 1fr);
		grid-auto-flow: column;
		overflow: visible;
		padding-bottom: 0;
	}

	.bp-flow-stepper li {
		flex: none;
		min-width: 0;
	}

	.bp-flow-stepper button {
		background: transparent;
		display: flex;
		justify-content: center;
		min-height: 32px;
		padding: 0.1rem;
	}

	.bp-flow-stepper button > span:last-child {
		clip: rect(1px, 1px, 1px, 1px);
		clip-path: inset(50%);
		height: 1px;
		overflow: hidden;
		position: absolute;
		width: 1px;
	}

	.bp-flow-step h2 {
		font-size: clamp(2rem, 10vw, 2.65rem);
		max-width: none;
	}

	.bp-flow-step__intro {
		font-size: 1rem;
		line-height: 1.55;
	}

	.bp-addon-grid,
	.bp-form-grid,
	.bp-radio-grid,
	.bp-summary-grid,
	.bp-payment-methods {
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-payment-method {
		min-height: 128px;
	}

	.bp-provider-placeholder__heading,
	.bp-payment-due {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.35rem;
	}

	.bp-flow-step[data-step="service"] .bp-choice-grid {
		gap: 0.65rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 1.5rem;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card {
		border-radius: var(--wp--preset--border-radius--medium);
		min-height: 0;
		padding: 0.85rem;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card > label {
		gap: 0.5rem;
		min-height: 0;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card__icon {
		height: 36px;
		width: 36px;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card small {
		display: none;
		font-size: 0.76rem;
		line-height: 1.35;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card:has(input:checked) small {
		display: -webkit-box;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card__link {
		font-size: 0.82rem;
		min-height: 36px;
	}

	.bp-addon-card {
		min-height: 0;
		padding: 1rem;
	}

	.bp-choice-grid,
	.bp-addon-grid {
		margin-top: 1.5rem;
	}

	.bp-flow-service-area {
		margin-top: 1.25rem;
	}

	.bp-field--full {
		grid-column: auto;
	}

	.bp-flow-actions {
		align-items: stretch;
		flex-direction: column-reverse;
		margin-top: 1.5rem;
	}

	.bp-flow-actions button,
	.bp-flow-actions a {
		width: 100%;
	}

	.bp-total-card__row,
	.bp-confirmation-row {
		align-items: start;
		flex-direction: column;
		grid-template-columns: 1fr;
	}

	.bp-total-card__row {
		display: flex;
	}

	.bp-total-card__amount {
		text-align: left;
	}

	.bp-cash-app-card {
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-cash-app-card__button {
		width: 100%;
	}
}

@media (max-width: 360px) {
	.bp-flow-step[data-step="service"] .bp-choice-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-flow-step[data-step="service"] .bp-choice-card small {
		-webkit-line-clamp: 3;
	}
}
.brightpath-booking-interface {
	background:
		radial-gradient(circle at 92% 4%, rgba(201, 151, 50, 0.12), transparent 26rem),
		var(--wp--preset--color--soft-background, #f7f4ed);
	padding-top: clamp(2rem, 4vw, 3.75rem) !important;
}

.bp-booking-intro {
	align-items: end;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
	max-width: 1240px;
	width: min(calc(100% - 2rem), 1240px);
}

.bp-booking-intro__kicker {
	color: var(--wp--preset--color--deep-gold, #9d6e18);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.bp-booking-intro h1 {
	font-size: clamp(2.5rem, 5vw, 5rem);
	letter-spacing: -0.055em;
	line-height: 0.95;
	margin: 0 0 0.8rem;
}

.bp-booking-intro p:not(.bp-booking-intro__kicker) {
	color: var(--wp--preset--color--muted-text, #6c675f);
	margin: 0;
	max-width: 680px;
}

.bp-booking-intro > a {
	align-items: center;
	border-bottom: 1px solid currentColor;
	display: inline-flex;
	font-weight: 750;
	min-height: 44px;
	white-space: nowrap;
}

@media (max-width: 700px) {
	.bp-booking-intro {
		align-items: flex-start;
		flex-direction: column;
		gap: 0.75rem;
	}
}

/* Streamlined shared booking and quote journey. */
.brightpath-quote-page > .brightpath-company-section,
.brightpath-booking-interface {
	background:
		radial-gradient(circle at 92% 4%, rgba(201, 151, 50, 0.12), transparent 26rem),
		var(--wp--preset--color--soft-background, #f7f4ed);
	padding-block: clamp(1.5rem, 4vw, 3.75rem) !important;
}

.bp-flow-shell {
	max-width: 1320px;
}

.bp-flow-layout {
	grid-template-columns: minmax(205px, 0.28fr) minmax(0, 1fr) minmax(220px, 0.3fr);
	gap: clamp(1rem, 2vw, 1.75rem);
}

.bp-flow-main {
	padding: clamp(1.25rem, 3vw, 2.6rem);
}

.bp-flow-step h2 {
	font-size: clamp(2.1rem, 3.4vw, 3.5rem);
	max-width: 15ch;
}

.bp-flow-progress__current-label {
	color: var(--wp--preset--color--white);
	display: block;
	font-size: 0.95rem;
	letter-spacing: 0;
	margin-top: 0.35rem;
	text-transform: none;
}

.bp-segmented-choice {
	border: 0;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 1.5rem 0;
	padding: 0;
}

.bp-segmented-choice--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bp-service-select {
	background: var(--wp--preset--color--soft-background, #f7f3ea);
	border: 1px solid var(--flow-border);
	border-radius: 14px;
	margin-bottom: 1.5rem;
	padding: 1rem;
}

.bp-segmented-choice legend {
	font-weight: 800;
	margin-bottom: 0.7rem;
}

.bp-segmented-choice label {
	cursor: pointer;
	position: relative;
}

.bp-segmented-choice label > input {
	left: 1rem;
	position: absolute;
	top: 1.25rem;
}

.bp-segmented-choice label > span {
	background: #fff;
	border: 1px solid var(--flow-border);
	border-radius: 14px;
	display: grid;
	gap: 0.2rem;
	min-height: 76px;
	padding: 1rem 1rem 1rem 2.8rem;
}

.bp-segmented-choice label > input:checked + span {
	background: rgba(201, 151, 50, 0.09);
	border-color: var(--wp--preset--color--brand-gold);
	box-shadow: 0 0 0 2px rgba(201, 151, 50, 0.13);
}

.bp-segmented-choice small,
.bp-condition-card small,
.bp-live-estimate small,
.bp-availability-option small {
	color: var(--wp--preset--color--muted-text, #6c675f);
	display: block;
	font-size: 0.78rem;
	font-weight: 500;
	line-height: 1.35;
}

.bp-commercial-callout {
	background: linear-gradient(135deg, rgba(22, 40, 32, 0.98), rgba(35, 67, 53, 0.96));
	border-radius: 16px;
	color: #fff;
	margin: 1rem 0 1.5rem;
	padding: 1.3rem;
}

.bp-commercial-callout strong {
	font-size: 1.15rem;
}

.bp-commercial-callout p {
	color: rgba(255, 255, 255, 0.78);
	margin: 0.35rem 0 0;
}

.bp-flow-service-area {
	align-items: end;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(0, 1fr) minmax(150px, 0.45fr);
}

.bp-flow-service-area h3,
.bp-flow-service-area p {
	margin-bottom: 0.25rem;
	margin-top: 0;
}

.bp-flow-service-area .bp-service-area-feedback {
	grid-column: 1 / -1;
}

.bp-form-grid {
	gap: 1rem;
}

.bp-radio-grid--compact {
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

[data-residential-property].bp-radio-grid--compact {
	grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

.bp-condition-grid {
	border: 0;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: 0;
}

.bp-condition-grid legend {
	font-weight: 800;
	margin-bottom: 0.7rem;
}

.bp-condition-card {
	cursor: pointer;
	position: relative;
}

.bp-condition-card input {
	left: 0.9rem;
	position: absolute;
	top: 1rem;
}

.bp-condition-card > span {
	border: 1px solid var(--flow-border);
	border-radius: 12px;
	display: grid;
	gap: 0.3rem;
	height: 100%;
	padding: 0.9rem 0.9rem 0.9rem 2.6rem;
}

.bp-condition-card input:checked + span {
	background: rgba(201, 151, 50, 0.08);
	border-color: var(--wp--preset--color--brand-gold);
}

.bp-optional-details {
	border: 1px solid var(--flow-border);
	border-radius: 12px;
	margin-top: 0.25rem;
	padding: 0;
}

.bp-optional-details summary {
	cursor: pointer;
	display: flex;
	font-weight: 750;
	justify-content: space-between;
	padding: 1rem;
}

.bp-optional-details summary span,
.bp-optional-label {
	color: var(--wp--preset--color--muted-text, #6c675f);
	font-size: 0.78rem;
	font-weight: 600;
}

.bp-optional-details[open] > .bp-form-grid {
	border-top: 1px solid var(--flow-border);
	padding: 1rem;
}

.bp-inline-estimate {
	align-items: center;
	background: #f3efe5;
	border: 1px solid rgba(157, 110, 24, 0.25);
	border-radius: 14px;
	display: none;
	gap: 0.4rem;
	margin-top: 1.25rem;
	padding: 1rem;
}

.bp-inline-estimate strong {
	color: var(--wp--preset--color--deep-gold, #9d6e18);
	font-size: 1.5rem;
	margin-left: auto;
}

.bp-inline-estimate small {
	flex-basis: 100%;
}

.bp-next-action {
	border-top: 1px solid var(--flow-border);
	margin-top: 1.5rem;
	padding-top: 1.25rem;
}

.bp-next-action h3,
.bp-next-action p {
	margin-bottom: 0.35rem;
	margin-top: 0;
}

.bp-addon-card--select {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.bp-addon-card--select select {
	margin-top: auto;
	width: 100%;
}

.bp-live-estimate {
	background: #fff;
	border: 1px solid rgba(157, 110, 24, 0.24);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(22, 40, 32, 0.08);
	padding: 1.25rem;
	position: sticky;
	top: 100px;
}

.bp-live-estimate__eyebrow {
	color: var(--wp--preset--color--deep-gold, #9d6e18);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	margin: 0 0 0.35rem;
	text-transform: uppercase;
}

.bp-live-estimate > strong {
	display: block;
	font-size: clamp(1.7rem, 2.4vw, 2.4rem);
	line-height: 1.05;
	margin-bottom: 0.9rem;
}

.bp-live-estimate > p:not(.bp-live-estimate__eyebrow) {
	border-top: 1px solid var(--flow-border);
	font-size: 0.86rem;
	margin: 0;
	padding: 0.7rem 0;
}

.bp-live-estimate .bp-price-breakdown {
	font-size: 0.78rem;
	margin: 0.25rem 0 0.8rem;
}

.bp-availability {
	border: 1px solid var(--flow-border);
	border-radius: 16px;
	margin-top: 1.25rem;
	padding: 1.15rem;
}

.bp-availability__header {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.bp-availability__header h3,
.bp-availability > p {
	margin: 0;
}

.bp-availability > p {
	color: var(--wp--preset--color--muted-text, #6c675f);
	font-size: 0.9rem;
	margin-top: 0.3rem;
}

.bp-live-badge {
	align-items: center;
	background: #e8f7ed;
	border-radius: 999px;
	color: #176b38;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	gap: 0.4rem;
	padding: 0.35rem 0.6rem;
}

.bp-live-badge i {
	background: #2ea85f;
	border-radius: 50%;
	height: 7px;
	width: 7px;
}

.bp-availability__options {
	display: grid;
	gap: 0.65rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 1rem;
}

.bp-availability-option {
	align-items: start;
	border: 1px solid var(--flow-border);
	border-radius: 12px;
	cursor: pointer;
	display: flex;
	gap: 0.65rem;
	padding: 0.8rem;
}

.bp-availability-option:has(input:checked) {
	background: rgba(201, 151, 50, 0.08);
	border-color: var(--wp--preset--color--brand-gold);
}

.bp-availability-option.is-unavailable,
.bp-availability-option.is-requires_manual_review {
	background: #f3f1ec;
	cursor: not-allowed;
	opacity: 0.62;
}

.bp-total-card--compact {
	padding: 1rem 1.2rem;
}

.bp-flow-shell.is-flow-complete .bp-flow-progress,
.bp-flow-shell.is-flow-complete .bp-live-estimate {
	display: none !important;
}

.bp-flow-shell.is-flow-complete .bp-flow-layout {
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
}

@media (max-width: 1120px) {
	.bp-flow-layout {
		grid-template-columns: minmax(205px, 0.28fr) minmax(0, 1fr);
	}

	.bp-live-estimate {
		display: none !important;
	}

	.bp-inline-estimate {
		display: flex;
		flex-wrap: wrap;
	}
}

@media (max-width: 900px) {
	.bp-flow-layout {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 600px) {
	.brightpath-quote-page > .brightpath-company-section,
	.brightpath-booking-interface {
		padding-top: 0.65rem !important;
	}

	.bp-booking-intro {
		gap: 0.35rem;
		margin-bottom: 0.65rem;
		width: min(calc(100% - 1.25rem), 1240px);
	}

	.bp-booking-intro__kicker {
		font-size: 0.66rem;
		margin: 0 0 0.25rem;
	}

	.bp-booking-intro h1 {
		font-size: clamp(1.9rem, 9vw, 2.65rem);
		line-height: 0.98;
		margin-bottom: 0.4rem;
	}

	.bp-booking-intro p:not(.bp-booking-intro__kicker) {
		font-size: 0.9rem;
		line-height: 1.4;
	}

	.bp-booking-intro > a {
		font-size: 0.85rem;
		min-height: 36px;
	}

	.bp-flow-shell {
		padding: 0.4rem 0.625rem 0.75rem;
	}

	.bp-flow-progress {
		border-radius: 14px;
		padding: 0.65rem 0.8rem;
	}

	.bp-flow-progress__current-label {
		display: inline;
		margin-left: 0.25rem;
		margin-top: 0;
	}

	.bp-flow-stepper {
		display: none;
	}

	.bp-flow-progress__track {
		margin-bottom: 0;
	}

	.bp-flow-main {
		border-radius: 16px;
		padding: 1.1rem;
	}

	.bp-flow-step h2 {
		font-size: clamp(1.9rem, 9vw, 2.55rem);
		line-height: 1.02;
		scroll-margin-top: 7rem;
	}

	.bp-segmented-choice,
	.bp-condition-grid,
	.bp-availability__options {
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-flow-service-area {
		align-items: stretch;
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-radio-grid--compact {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-flow-step[data-step="service"] .bp-choice-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.bp-flow-step[data-step="service"] .bp-choice-card small {
		display: block;
	}

	.bp-flow-actions {
		background: transparent;
		border-top: 1px solid var(--flow-border);
		margin-inline: 0;
		padding-top: 1rem;
		position: static;
	}

	.bp-flow-actions--choice {
		flex-direction: column-reverse;
	}

	.bp-inline-estimate {
		align-items: start;
	}

	.bp-inline-estimate strong {
		font-size: 1.3rem;
	}

	.bp-segmented-choice,
	.bp-flow-step[data-step="service"] .bp-choice-grid,
	.bp-addon-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bp-flow-step[data-step="service"] .bp-choice-card small,
	.bp-addon-card:not(.bp-addon-card--select) > span:nth-child(2) {
		display: none;
	}

	.bp-flow-step[data-step="service"] .bp-choice-card:has(input:checked) small,
	.bp-addon-card:not(.bp-addon-card--select):has(input:checked) > span:nth-child(2) {
		display: block;
	}

	.bp-addon-card {
		font-size: 0.9rem;
		padding: 0.85rem;
	}

	.bp-addon-card__quantity {
		align-items: stretch;
		flex-direction: column;
		gap: 0.35rem;
	}

	.bp-addon-card__quantity input {
		width: 100%;
	}
}

@media (max-width: 360px) {
	.bp-addon-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
