/**
 * LUXELINE BOOKING EXPERIENCE — STEP 3: SECURE CHECKOUT
 * CODE VERSION 1.0.0 — 2026-08-07
 * Built for Luxeline Chauffeurs Services — Ali Raza (BizJin)
 *
 * Scope:
 * - WooCommerce classic checkout only
 * - CHBS booking form 10007: visual third-step extension only
 * - No pricing, payment, validation, cart or order business logic
 */

/*==========================================================================
  DESIGN TOKENS
==========================================================================*/

body.lux-secure-checkout {
	--lux-checkout-bg: #171315;
	--lux-checkout-bg-soft: #22181d;
	--lux-checkout-plum: #6b2944;
	--lux-checkout-plum-light: #a1435a;
	--lux-checkout-plum-dark: #3b222d;
	--lux-checkout-ivory: #fbf8f3;
	--lux-checkout-ivory-deep: #f4ede4;
	--lux-checkout-white: #ffffff;
	--lux-checkout-ink: #241f21;
	--lux-checkout-muted: #786f72;
	--lux-checkout-line: #ddd0c2;
	--lux-checkout-line-dark: rgba(255, 255, 255, 0.14);
	--lux-checkout-champagne: #e1c582;
	--lux-checkout-radius: 24px;
	--lux-checkout-field-radius: 13px;
	--lux-checkout-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
	background:
		radial-gradient(circle at 12% 4%, rgba(107, 41, 68, 0.34), transparent 30%),
		linear-gradient(135deg, #21171c, #151214 62%) !important;
}

body.lux-secure-checkout,
body.lux-secure-checkout button,
body.lux-secure-checkout input,
body.lux-secure-checkout select,
body.lux-secure-checkout textarea {
	font-family: Inter, "Segoe UI", Arial, sans-serif;
}

/* Hide only the WordPress page-title shell. The site header remains untouched. */
body.lux-secure-checkout .entry-header,
body.lux-secure-checkout .page-header,
body.lux-secure-checkout h1.entry-title,
body.lux-secure-checkout .woocommerce-products-header {
	display: none !important;
}

/*==========================================================================
  CHBS PAGE 1 + PAGE 2 — ADD THE NON-CLICKABLE THIRD STEP
==========================================================================*/

.lux-chbs-booking-experience
	.chbs-booking-form-id-10007
	.chbs-main-navigation-default[data-step-count="3"]
	> ul {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.lux-chbs-booking-experience
	.chbs-booking-form-id-10007
	.chbs-main-navigation-default[data-step-count="3"]
	> ul
	> li {
	width: auto !important;
	min-width: 0 !important;
}

.lux-chbs-booking-experience
	.chbs-booking-form-id-10007
	.chbs-main-navigation-default
	> ul
	> li[data-lux-checkout-step="true"]
	> a {
	cursor: default !important;
	pointer-events: none !important;
}

/*==========================================================================
  RESTORED 1–2–3 PROGRESS — SECURE CHECKOUT PAGE
==========================================================================*/

.lux-checkout-progress-wrap {
	width: 100%;
	padding: clamp(24px, 2.4vw, 34px) 4vw clamp(28px, 3vw, 40px);
	color: #fff;
}

.lux-checkout-progress {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	width: min(1440px, 100%);
	margin: 0 auto;
	padding: 0;
	list-style: none;
}

.lux-checkout-progress::before {
	position: absolute;
	top: 29px;
	left: 16.666%;
	right: 16.666%;
	height: 1px;
	background: rgba(255, 255, 255, 0.36);
	content: "";
}

.lux-checkout-progress__step {
	position: relative;
	z-index: 1;
	min-width: 0;
	text-align: center;
}

.lux-checkout-progress__number {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 50%;
	background: #f5f5f5;
	color: #687480;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.lux-checkout-progress__step.is-complete .lux-checkout-progress__number {
	color: var(--lux-checkout-plum);
	font-size: 25px;
	font-weight: 600;
}

.lux-checkout-progress__step.is-current .lux-checkout-progress__number {
	border-color: rgba(225, 197, 130, 0.7);
	background: linear-gradient(
		145deg,
		var(--lux-checkout-plum-light),
		var(--lux-checkout-plum-dark)
	);
	box-shadow: 0 0 0 1px rgba(225, 197, 130, 0.42);
	color: #fff;
}

.lux-checkout-progress__label {
	display: block;
	margin-top: 14px;
	padding: 0 8px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	font-weight: 520;
	line-height: 1.35;
}

.lux-checkout-progress__step.is-current .lux-checkout-progress__label {
	color: #fff;
	font-weight: 600;
}

/*==========================================================================
  MAIN CHECKOUT SHELL
==========================================================================*/

body.lux-secure-checkout .woocommerce {
	width: min(1560px, 94vw) !important;
	max-width: none !important;
	margin: 0 auto clamp(46px, 5vw, 72px) !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 28px !important;
	background: var(--lux-checkout-ivory) !important;
	box-shadow: var(--lux-checkout-shadow) !important;
	color: var(--lux-checkout-ink) !important;
}

body.lux-secure-checkout .woocommerce::before,
body.lux-secure-checkout .woocommerce::after {
	content: none !important;
	display: none !important;
}

/*==========================================================================
  CHECKOUT INTRO + COMPACT LOGIN / COUPON UTILITIES
==========================================================================*/

.lux-checkout-top {
	padding: clamp(26px, 3vw, 38px) clamp(22px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
	border-bottom: 1px solid var(--lux-checkout-line);
	background: linear-gradient(180deg, #fff, var(--lux-checkout-ivory-deep));
}

.lux-checkout-title-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 36px;
}

.lux-checkout-eyebrow {
	color: var(--lux-checkout-plum);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.lux-checkout-title-row h1,
.lux-checkout-card__heading,
.lux-checkout-summary-heading h2,
.lux-checkout-payment-heading h3,
body.lux-secure-checkout .woocommerce-additional-fields > h3 {
	font-family: Georgia, "Times New Roman", serif !important;
	font-weight: 400 !important;
	letter-spacing: -0.025em !important;
}

.lux-checkout-title-row h1 {
	margin: 7px 0 0 !important;
	color: var(--lux-checkout-ink) !important;
	font-size: clamp(34px, 3.1vw, 44px) !important;
	line-height: 1.05 !important;
}

.lux-checkout-title-copy {
	max-width: 590px;
	margin: 0;
	color: #6d6366;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
	text-align: right;
}

.lux-checkout-utilities {
	display: grid;
	grid-template-columns: repeat(var(--lux-utility-count, 2), minmax(0, 1fr));
	gap: 14px;
	margin-top: 28px;
}

.lux-checkout-utility {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--lux-checkout-line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.76);
}

body.lux-secure-checkout .lux-checkout-utility .woocommerce-info {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 16px !important;
	min-height: 58px !important;
	margin: 0 !important;
	padding: 16px 46px 16px 18px !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--lux-checkout-ink) !important;
	font-size: 14px !important;
	font-weight: 560 !important;
	line-height: 1.4 !important;
}

body.lux-secure-checkout .lux-checkout-utility .woocommerce-info::before {
	content: none !important;
	display: none !important;
}

body.lux-secure-checkout .lux-checkout-utility .woocommerce-info::after {
	position: absolute;
	top: 50%;
	right: 18px;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid var(--lux-checkout-plum);
	border-bottom: 1.5px solid var(--lux-checkout-plum);
	content: "";
	transform: translateY(-65%) rotate(45deg);
	transition: transform 180ms ease;
}

body.lux-secure-checkout .lux-checkout-utility.is-open .woocommerce-info::after {
	transform: translateY(-25%) rotate(225deg);
}

body.lux-secure-checkout .lux-checkout-utility .woocommerce-info a {
	flex: 0 0 auto;
	color: var(--lux-checkout-plum) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.11em !important;
	text-decoration: none !important;
	text-transform: uppercase !important;
}

body.lux-secure-checkout .lux-checkout-utility form.login,
body.lux-secure-checkout .lux-checkout-utility form.checkout_coupon {
	margin: 0 !important;
	padding: 0 18px 18px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.lux-secure-checkout .lux-checkout-utility form.login p,
body.lux-secure-checkout .lux-checkout-utility form.checkout_coupon p {
	float: none !important;
	width: 100% !important;
	margin: 0 0 10px !important;
}

body.lux-secure-checkout .lux-checkout-utility form.login p:last-child,
body.lux-secure-checkout .lux-checkout-utility form.checkout_coupon p:last-child {
	margin-bottom: 0 !important;
}

body.lux-secure-checkout .lux-checkout-utility input.input-text {
	height: 46px !important;
	padding: 0 14px !important;
	border: 1px solid var(--lux-checkout-line) !important;
	border-radius: 12px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--lux-checkout-ink) !important;
}

body.lux-secure-checkout .lux-checkout-utility button.button {
	min-height: 44px !important;
	padding: 0 18px !important;
	border: 1px solid var(--lux-checkout-plum) !important;
	border-radius: 12px !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--lux-checkout-plum) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.07em !important;
	text-transform: uppercase !important;
}

/*==========================================================================
  REAL SQUARE DIGITAL WALLETS — INSIDE THE NATIVE CHECKOUT FORM
==========================================================================*/

.lux-checkout-wallets {
	grid-column: 1 / -1;
	margin: 0 !important;
	padding: 26px clamp(22px, 3vw, 38px) 28px !important;
	border-bottom: 1px solid var(--lux-checkout-line);
	background: linear-gradient(180deg, var(--lux-checkout-ivory-deep), var(--lux-checkout-ivory));
}

.lux-checkout-wallets[hidden] {
	display: none !important;
}

.lux-checkout-wallets__box {
	padding: 24px;
	border: 1px solid rgba(107, 41, 68, 0.38);
	border-radius: 19px;
	background:
		radial-gradient(circle at 78% 12%, rgba(161, 67, 90, 0.14), transparent 30%),
		linear-gradient(145deg, #21191d, #151214);
	color: #fff;
}

.lux-checkout-wallets__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.lux-checkout-wallets__head h2 {
	margin: 5px 0 0 !important;
	color: #fff !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: 27px !important;
	font-weight: 400 !important;
	line-height: 1.15 !important;
	letter-spacing: -0.02em !important;
}

.lux-checkout-wallets__head p {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	line-height: 1.5;
	text-align: right;
}

.lux-checkout-wallets__mount {
	display: grid;
	grid-template-columns: repeat(var(--lux-wallet-count, 1), minmax(0, 1fr));
	align-items: center;
	gap: 14px;
}

.lux-checkout-wallets__mount > * {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
}

/* Do not counterfeit or rebuild wallet controls; only give native wrappers room. */
.lux-checkout-wallets__mount button,
.lux-checkout-wallets__mount iframe,
.lux-checkout-wallets__mount [role="button"] {
	max-width: 100% !important;
}

.lux-checkout-wallets__or {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 22px;
	color: #796e71;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.lux-checkout-wallets__or::before,
.lux-checkout-wallets__or::after {
	flex: 1;
	height: 1px;
	background: var(--lux-checkout-line);
	content: "";
}

/*==========================================================================
  DESKTOP CHECKOUT GRID
==========================================================================*/

body.lux-secure-checkout form.checkout.woocommerce-checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1.55fr) minmax(430px, 0.9fr) !important;
	align-items: start !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	background: var(--lux-checkout-ivory) !important;
}

body.lux-secure-checkout #customer_details {
	grid-column: 1 !important;
	width: 100% !important;
	margin: 0 !important;
	padding: clamp(24px, 2.5vw, 36px) clamp(22px, 2.8vw, 38px) clamp(30px, 3vw, 44px) !important;
}

body.lux-secure-checkout #customer_details::before,
body.lux-secure-checkout #customer_details::after {
	content: none !important;
	display: none !important;
}

body.lux-secure-checkout #customer_details > .col-1,
body.lux-secure-checkout #customer_details > .col-2 {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.lux-secure-checkout #order_review_heading {
	display: none !important;
}

body.lux-secure-checkout #order_review {
	position: sticky !important;
	top: 132px !important;
	grid-column: 2 !important;
	align-self: start !important;
	width: 100% !important;
	min-width: 0 !important;
	min-height: 100% !important;
	margin: 0 !important;
	padding: clamp(24px, 2.4vw, 34px) !important;
	border: 0 !important;
	border-left: 1px solid rgba(107, 41, 68, 0.34) !important;
	border-radius: 0 !important;
	background:
		radial-gradient(circle at 80% 8%, rgba(161, 67, 90, 0.13), transparent 28%),
		linear-gradient(160deg, #22191d, #151214) !important;
	box-shadow: none !important;
	color: #fff !important;
}

/*==========================================================================
  CONTACT, BILLING AND ADDITIONAL CARDS
==========================================================================*/

body.lux-secure-checkout .woocommerce-billing-fields > h3 {
	display: none !important;
}

.lux-checkout-card,
body.lux-secure-checkout .woocommerce-additional-fields {
	width: 100%;
	margin: 0 0 18px !important;
	padding: clamp(22px, 2vw, 28px) !important;
	border: 1px solid var(--lux-checkout-line) !important;
	border-radius: 20px !important;
	background: #fff !important;
	box-shadow: 0 8px 22px rgba(59, 34, 45, 0.055) !important;
}

body.lux-secure-checkout .woocommerce-additional-fields {
	margin-bottom: 0 !important;
}

.lux-checkout-card__heading,
body.lux-secure-checkout .woocommerce-additional-fields > h3 {
	margin: 0 !important;
	color: var(--lux-checkout-ink) !important;
	font-size: clamp(25px, 2.2vw, 30px) !important;
	line-height: 1.15 !important;
}

.lux-checkout-card__note,
body.lux-secure-checkout .woocommerce-additional-fields::before {
	display: block;
	margin: 7px 0 20px;
	color: #766c6f;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.55;
}

body.lux-secure-checkout .woocommerce-additional-fields::before {
	content: "Share only what will help us prepare the journey properly.";
}

.lux-checkout-card__fields,
body.lux-secure-checkout .woocommerce-additional-fields__field-wrapper {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 15px !important;
	width: 100% !important;
}

body.lux-secure-checkout .form-row {
	float: none !important;
	clear: none !important;
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.lux-secure-checkout .form-row.form-row-wide,
body.lux-secure-checkout .woocommerce-additional-fields .form-row {
	grid-column: 1 / -1 !important;
}

body.lux-secure-checkout .form-row label {
	display: block !important;
	margin: 0 0 7px !important;
	color: #746a6d !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	letter-spacing: 0.075em !important;
	text-transform: uppercase !important;
}

body.lux-secure-checkout .form-row label .optional {
	color: #8b8284 !important;
	font-size: 10px !important;
	font-weight: 450 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

body.lux-secure-checkout .form-row .required {
	color: var(--lux-checkout-plum-light) !important;
}

body.lux-secure-checkout .form-row input.input-text,
body.lux-secure-checkout .form-row textarea,
body.lux-secure-checkout .form-row select,
body.lux-secure-checkout .select2-container .select2-selection--single {
	width: 100% !important;
	border: 1px solid var(--lux-checkout-line) !important;
	border-radius: var(--lux-checkout-field-radius) !important;
	background: linear-gradient(180deg, #fff, #fcfaf7) !important;
	box-shadow: none !important;
	color: var(--lux-checkout-ink) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	transition: border-color 160ms ease, box-shadow 160ms ease !important;
}

body.lux-secure-checkout .form-row input.input-text,
body.lux-secure-checkout .form-row select,
body.lux-secure-checkout .select2-container .select2-selection--single {
	height: 50px !important;
	min-height: 50px !important;
	padding: 0 14px !important;
	line-height: 48px !important;
}

body.lux-secure-checkout .form-row textarea {
	min-height: 112px !important;
	padding: 13px 14px !important;
	line-height: 1.55 !important;
	resize: vertical !important;
}

body.lux-secure-checkout .select2-container .select2-selection--single .select2-selection__rendered {
	padding: 0 42px 0 0 !important;
	color: var(--lux-checkout-ink) !important;
	line-height: 48px !important;
}

body.lux-secure-checkout .select2-container .select2-selection--single .select2-selection__arrow {
	top: 0 !important;
	right: 10px !important;
	height: 48px !important;
}

body.lux-secure-checkout .form-row input.input-text:focus,
body.lux-secure-checkout .form-row textarea:focus,
body.lux-secure-checkout .form-row select:focus,
body.lux-secure-checkout .select2-container--focus .select2-selection--single {
	border-color: var(--lux-checkout-plum) !important;
	box-shadow: 0 0 0 3px rgba(107, 41, 68, 0.09) !important;
	outline: none !important;
}

body.lux-secure-checkout .woocommerce-invalid input.input-text,
body.lux-secure-checkout .woocommerce-invalid select,
body.lux-secure-checkout .woocommerce-invalid .select2-selection {
	border-color: #b3314a !important;
	box-shadow: 0 0 0 3px rgba(179, 49, 74, 0.09) !important;
}

/*==========================================================================
  JOURNEY SUMMARY
==========================================================================*/

.lux-checkout-summary-shell {
	overflow: hidden;
	border: 1px solid rgba(225, 197, 130, 0.42);
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.025);
}

.lux-checkout-summary-heading {
	padding: 22px 22px 18px;
	border-bottom: 1px solid var(--lux-checkout-line-dark);
}

.lux-checkout-summary-heading .lux-checkout-eyebrow {
	color: var(--lux-checkout-champagne);
}

.lux-checkout-summary-heading h2 {
	margin: 6px 0 0 !important;
	color: #fff !important;
	font-size: clamp(25px, 2.1vw, 30px) !important;
	line-height: 1.12 !important;
}

.lux-mobile-summary-toggle {
	display: none;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table {
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	border-collapse: collapse !important;
	color: #fff !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table th,
body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table td {
	padding: 16px 20px !important;
	border: 0 !important;
	border-bottom: 1px solid var(--lux-checkout-line-dark) !important;
	background: transparent !important;
	color: rgba(255, 255, 255, 0.78) !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.55 !important;
	vertical-align: top !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table thead th {
	color: #fff !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.09em !important;
	text-transform: uppercase !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .product-name {
	width: 72% !important;
	padding-right: 18px !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .product-total {
	width: 28% !important;
	white-space: nowrap !important;
	text-align: right !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .product-quantity {
	color: rgba(255, 255, 255, 0.55) !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table tfoot th {
	color: rgba(255, 255, 255, 0.72) !important;
	font-weight: 520 !important;
}

body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .order-total th,
body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .order-total td {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
	border-bottom: 0 !important;
	color: #fff !important;
	font-size: 21px !important;
	font-weight: 700 !important;
}

/*==========================================================================
  SQUARE PAYMENT + CARD LOGOS + TERMS + SUBMIT BUTTON
==========================================================================*/

.lux-checkout-payment-heading {
	margin-top: 18px;
	padding: 22px 22px 0;
	border: 1px solid rgba(225, 197, 130, 0.35);
	border-bottom: 0;
	border-radius: 20px 20px 0 0;
	background: linear-gradient(180deg, #fff, #f9f4ed);
	color: var(--lux-checkout-ink);
}

.lux-checkout-payment-heading h3 {
	margin: 0 !important;
	color: var(--lux-checkout-ink) !important;
	font-size: clamp(23px, 2vw, 27px) !important;
	line-height: 1.15 !important;
}

.lux-checkout-payment-heading p {
	margin: 6px 0 0;
	color: #766c6f;
	font-size: 12px;
	line-height: 1.5;
}

body.lux-secure-checkout #payment {
	margin: 0 !important;
	padding: 0 22px 22px !important;
	border: 1px solid rgba(225, 197, 130, 0.35) !important;
	border-top: 0 !important;
	border-radius: 0 0 20px 20px !important;
	background: linear-gradient(180deg, #f9f4ed, var(--lux-checkout-ivory-deep)) !important;
	box-shadow: none !important;
	color: var(--lux-checkout-ink) !important;
}

body.lux-secure-checkout #payment ul.payment_methods {
	margin: 0 !important;
	padding: 18px 0 0 !important;
	border: 0 !important;
}

body.lux-secure-checkout #payment ul.payment_methods > li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

body.lux-secure-checkout #payment ul.payment_methods > li > input[type="radio"] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

body.lux-secure-checkout #payment ul.payment_methods > li > label {
	display: flex !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 7px !important;
	margin: 0 0 14px !important;
	color: var(--lux-checkout-ink) !important;
	font-size: 14px !important;
	font-weight: 560 !important;
	line-height: 1.35 !important;
}

/* Current Square output stacks these images vertically; force one clean row. */
body.lux-secure-checkout #payment .payment_method_square_credit_card > label img,
body.lux-secure-checkout #payment .payment_method_square_credit_card img,
body.lux-secure-checkout #payment [class*="square"] label img,
body.lux-secure-checkout #payment [class*="Square"] label img {
	float: none !important;
	display: inline-block !important;
	width: auto !important;
	max-width: 62px !important;
	height: 27px !important;
	max-height: 27px !important;
	margin: 0 !important;
	padding: 0 !important;
	object-fit: contain !important;
	vertical-align: middle !important;
}

body.lux-secure-checkout #payment div.payment_box {
	position: relative !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 17px !important;
	border: 1px solid #cabfb4 !important;
	border-radius: 15px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: #61575a !important;
}

body.lux-secure-checkout #payment div.payment_box::before {
	display: none !important;
	content: none !important;
}

body.lux-secure-checkout #payment div.payment_box p {
	color: #6f6669 !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
}

body.lux-secure-checkout #payment iframe {
	max-width: 100% !important;
}

body.lux-secure-checkout #payment .form-row,
body.lux-secure-checkout #payment .wc-square-credit-card-hosted-field,
body.lux-secure-checkout #payment [class*="card-container"] {
	max-width: 100% !important;
}

body.lux-secure-checkout #payment .woocommerce-SavedPaymentMethods-saveNew,
body.lux-secure-checkout #payment .wc-square-credit-card-payment-method__save-payment-method {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	margin: 15px 0 0 !important;
	color: #4f4749 !important;
	font-size: 13px !important;
	font-weight: 620 !important;
}

body.lux-secure-checkout #payment input[type="checkbox"],
body.lux-secure-checkout #payment input[type="radio"] {
	accent-color: var(--lux-checkout-plum) !important;
}

.lux-checkout-authorisation {
	margin: 16px 0 0;
	padding: 14px;
	border: 1px solid rgba(107, 41, 68, 0.2);
	border-radius: 13px;
	background: rgba(107, 41, 68, 0.06);
	color: #61575a;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.58;
}

.lux-checkout-authorisation strong {
	color: var(--lux-checkout-plum-dark);
	font-weight: 700;
}

body.lux-secure-checkout #payment .place-order {
	margin: 0 !important;
	padding: 18px 0 0 !important;
	border: 0 !important;
}

body.lux-secure-checkout #payment .woocommerce-privacy-policy-text,
body.lux-secure-checkout #payment .woocommerce-terms-and-conditions-wrapper {
	color: #61575a !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	line-height: 1.65 !important;
}

body.lux-secure-checkout #payment .woocommerce-privacy-policy-text a,
body.lux-secure-checkout #payment .woocommerce-terms-and-conditions-wrapper a {
	color: var(--lux-checkout-plum) !important;
	text-decoration: underline !important;
	text-underline-offset: 2px !important;
}

body.lux-secure-checkout #payment .woocommerce-form__label-for-checkbox {
	display: flex !important;
	align-items: flex-start !important;
	gap: 10px !important;
	margin-top: 15px !important;
	color: var(--lux-checkout-ink) !important;
	font-size: 13px !important;
	font-weight: 650 !important;
	line-height: 1.5 !important;
}

body.lux-secure-checkout #payment .woocommerce-form__label-for-checkbox input {
	flex: 0 0 auto !important;
	width: 18px !important;
	height: 18px !important;
	margin: 2px 0 0 !important;
}

body.lux-secure-checkout #place_order {
	float: none !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 60px !important;
	margin: 18px 0 0 !important;
	padding: 14px 24px !important;
	border: 1px solid rgba(255, 255, 255, 0.24) !important;
	border-radius: 15px !important;
	background: linear-gradient(
		90deg,
		var(--lux-checkout-plum-light),
		var(--lux-checkout-plum-dark)
	) !important;
	box-shadow: 0 14px 30px rgba(59, 34, 45, 0.25) !important;
	color: #fff !important;
	font-size: 12px !important;
	font-weight: 650 !important;
	line-height: 1.3 !important;
	letter-spacing: 0.09em !important;
	text-align: center !important;
	text-transform: uppercase !important;
	transition: transform 160ms ease, filter 160ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
	body.lux-secure-checkout #place_order:hover {
		filter: brightness(1.06) !important;
		transform: translateY(-1px) !important;
	}
}

/*==========================================================================
  NATIVE CHECKOUT NOTICES
==========================================================================*/

body.lux-secure-checkout .woocommerce-NoticeGroup,
body.lux-secure-checkout .woocommerce-error,
body.lux-secure-checkout .woocommerce-message,
body.lux-secure-checkout .woocommerce > .woocommerce-info {
	margin: 20px clamp(22px, 3vw, 40px) 0 !important;
	border: 1px solid var(--lux-checkout-line) !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: none !important;
	color: var(--lux-checkout-ink) !important;
}

/*==========================================================================
  TABLET
==========================================================================*/

@media (max-width: 1180px) {
	.lux-checkout-title-row {
		align-items: flex-start;
	}

	.lux-checkout-title-copy {
		text-align: left;
	}

	body.lux-secure-checkout form.checkout.woocommerce-checkout {
		grid-template-columns: 1fr !important;
	}

	body.lux-secure-checkout #customer_details,
	body.lux-secure-checkout #order_review {
		grid-column: 1 !important;
	}

	body.lux-secure-checkout #order_review {
		position: static !important;
		top: auto !important;
		min-height: 0 !important;
		border-left: 0 !important;
		border-top: 1px solid rgba(107, 41, 68, 0.34) !important;
	}
}

/*==========================================================================
  MOBILE
==========================================================================*/

@media (max-width: 767px) {
	.lux-chbs-booking-experience
		.chbs-booking-form-id-10007
		.chbs-main-navigation-default[data-step-count="3"]
		> ul
		> li
		> a {
		padding-inline: 3px !important;
	}

	.lux-chbs-booking-experience
		.chbs-booking-form-id-10007
		.chbs-main-navigation-default[data-step-count="3"]
		> ul
		> li
		> a
		> span:last-child {
		font-size: 9px !important;
		line-height: 1.25 !important;
	}

	.lux-checkout-progress-wrap {
		padding: 22px 10px 28px;
	}

	.lux-checkout-progress::before {
		top: 23px;
	}

	.lux-checkout-progress__number {
		width: 46px;
		height: 46px;
		font-size: 17px;
	}

	.lux-checkout-progress__step.is-complete .lux-checkout-progress__number {
		font-size: 21px;
	}

	.lux-checkout-progress__label {
		margin-top: 11px;
		padding: 0 3px;
		font-size: 9.5px;
		line-height: 1.3;
	}

	body.lux-secure-checkout .woocommerce {
		width: calc(100% - 24px) !important;
		border-radius: 22px !important;
	}

	.lux-checkout-top {
		padding: 21px 18px 20px;
	}

	.lux-checkout-title-row {
		display: block;
	}

	.lux-checkout-title-row h1 {
		font-size: clamp(31px, 9vw, 38px) !important;
	}

	.lux-checkout-title-copy {
		margin-top: 12px;
		font-size: 13px;
		line-height: 1.55;
	}

	.lux-checkout-utilities {
		grid-template-columns: 1fr !important;
		gap: 11px;
		margin-top: 22px;
	}

	body.lux-secure-checkout .lux-checkout-utility .woocommerce-info {
		min-height: 56px !important;
		padding: 15px 42px 15px 15px !important;
		font-size: 13px !important;
	}

	.lux-checkout-wallets {
		padding: 20px 18px 22px !important;
	}

	.lux-checkout-wallets__box {
		padding: 19px;
	}

	.lux-checkout-wallets__head {
		display: block;
	}

	.lux-checkout-wallets__head h2 {
		font-size: 24px !important;
	}

	.lux-checkout-wallets__head p {
		margin-top: 9px;
		text-align: left;
	}

	.lux-checkout-wallets__mount {
		grid-template-columns: 1fr !important;
	}

	body.lux-secure-checkout #customer_details,
	body.lux-secure-checkout #order_review {
		padding: 20px 18px 24px !important;
	}

	.lux-checkout-card,
	body.lux-secure-checkout .woocommerce-additional-fields {
		padding: 20px !important;
		border-radius: 17px !important;
	}

	.lux-checkout-card__heading,
	body.lux-secure-checkout .woocommerce-additional-fields > h3 {
		font-size: 25px !important;
	}

	.lux-checkout-card__fields,
	body.lux-secure-checkout .woocommerce-additional-fields__field-wrapper {
		grid-template-columns: 1fr !important;
		gap: 14px !important;
	}

	body.lux-secure-checkout .form-row,
	body.lux-secure-checkout .form-row.form-row-wide {
		grid-column: 1 !important;
	}

	.lux-checkout-summary-shell {
		border-radius: 17px;
	}

	.lux-checkout-summary-heading {
		display: none;
	}

	.lux-mobile-summary-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		width: 100%;
		min-height: 62px;
		padding: 15px 18px;
		border: 0;
		border-bottom: 1px solid var(--lux-checkout-line-dark);
		background: transparent;
		color: #fff;
		font-size: 12px;
		font-weight: 650;
		letter-spacing: 0.06em;
		text-align: left;
		text-transform: uppercase;
	}

	.lux-mobile-summary-toggle__right {
		display: inline-flex;
		align-items: center;
		gap: 12px;
		white-space: nowrap;
	}

	.lux-mobile-summary-toggle__total {
		color: var(--lux-checkout-champagne);
		font-size: 15px;
		font-weight: 700;
		letter-spacing: 0;
		text-transform: none;
	}

	.lux-mobile-summary-toggle__arrow {
		width: 9px;
		height: 9px;
		border-right: 1.5px solid currentColor;
		border-bottom: 1.5px solid currentColor;
		transform: rotate(45deg) translateY(-2px);
		transition: transform 180ms ease;
	}

	body.lux-secure-checkout #order_review.lux-summary-open .lux-mobile-summary-toggle__arrow {
		transform: rotate(225deg) translate(-1px, -1px);
	}

	body.lux-secure-checkout #order_review:not(.lux-summary-open)
		table.shop_table.woocommerce-checkout-review-order-table {
		display: none !important;
	}

	body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table th,
	body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table td {
		padding: 14px 14px !important;
		font-size: 12.5px !important;
	}

	body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .product-name {
		width: 70% !important;
	}

	body.lux-secure-checkout table.shop_table.woocommerce-checkout-review-order-table .product-total {
		width: 30% !important;
	}

	.lux-checkout-payment-heading {
		padding: 20px 18px 0;
		border-radius: 17px 17px 0 0;
	}

	body.lux-secure-checkout #payment {
		padding: 0 18px 20px !important;
		border-radius: 0 0 17px 17px !important;
	}

	body.lux-secure-checkout #payment div.payment_box {
		padding: 14px !important;
	}

	body.lux-secure-checkout #place_order {
		min-height: 58px !important;
		font-size: 11.5px !important;
	}
}

@media (max-width: 390px) {
	.lux-checkout-progress__label {
		font-size: 8.7px;
	}

	body.lux-secure-checkout .woocommerce {
		width: calc(100% - 18px) !important;
	}

	.lux-checkout-top,
	body.lux-secure-checkout #customer_details,
	body.lux-secure-checkout #order_review {
		padding-right: 14px !important;
		padding-left: 14px !important;
	}

	.lux-checkout-card,
	body.lux-secure-checkout .woocommerce-additional-fields {
		padding: 17px !important;
	}
}

/*==========================================================================
  ACCESSIBILITY + REDUCED MOTION
==========================================================================*/

body.lux-secure-checkout a:focus-visible,
body.lux-secure-checkout button:focus-visible,
body.lux-secure-checkout input:focus-visible,
body.lux-secure-checkout select:focus-visible,
body.lux-secure-checkout textarea:focus-visible {
	outline: 2px solid var(--lux-checkout-champagne) !important;
	outline-offset: 3px !important;
}

@media (prefers-reduced-motion: reduce) {
	body.lux-secure-checkout *,
	body.lux-secure-checkout *::before,
	body.lux-secure-checkout *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
/* ==========================================================================
   CHECKOUT VALIDATION NOTICE POSITION
   ========================================================================== */

body.lux-secure-checkout
form.checkout.woocommerce-checkout
> .woocommerce-NoticeGroup-checkout {
	grid-column: 1 / -1 !important;
	width: auto !important;
	margin: 22px clamp(22px, 3vw, 38px) 0 !important;
	z-index: 2;
}

@media (max-width: 767px) {
	body.lux-secure-checkout
	form.checkout.woocommerce-checkout
	> .woocommerce-NoticeGroup-checkout {
		margin: 16px 8px 0 !important;
	}
}