/**
 * LUXELINE BOOKING EXPERIENCE — CLIENT ACCOUNT
 * CODE VERSION 1.0.1 — 2026-08-07
 * Built for Luxeline Chauffeurs Services — Ali Raza (BizJin)
 *
 * Scope:
 * - WooCommerce classic My Account shortcode and native endpoints only
 * - Native login, registration, notices, orders, addresses and passwords remain authoritative
 * - Square card fields remain inside Square's secure iframe
 * - Header, Explore Our Services section and footer remain untouched
 */

/*=========================================================================
  ACCOUNT PAGE FOUNDATION
=========================================================================*/

body.luxeline-client-account {
	--lux-account-bg: #171315;
	--lux-account-bg-soft: #24181e;
	--lux-account-plum: #6b2944;
	--lux-account-plum-light: #a1435a;
	--lux-account-plum-dark: #3b222d;
	--lux-account-ivory: #fbf8f3;
	--lux-account-ivory-deep: #f3ebe2;
	--lux-account-white: #ffffff;
	--lux-account-ink: #241f21;
	--lux-account-muted: #756d70;
	--lux-account-line: #ddcfc1;
	--lux-account-champagne: #dec57e;
	--lux-account-success: #315f4e;
	--lux-account-danger: #a53b4e;
	--lux-account-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
	--lux-account-radius: 24px;
	background: var(--lux-account-bg);
}

body.luxeline-client-account .entry-header,
body.luxeline-client-account .page-header,
body.luxeline-client-account h1.entry-title,
body.luxeline-client-account .woocommerce-products-header {
	display: none !important;
}

body.luxeline-client-account #content > .ast-container,
body.luxeline-client-account .site-content > .ast-container,
body.luxeline-client-account #primary,
body.luxeline-client-account .content-area,
body.luxeline-client-account #main,
body.luxeline-client-account .site-main,
body.luxeline-client-account .site-main > article,
body.luxeline-client-account article.page,
body.luxeline-client-account .entry-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.luxeline-client-account .entry-content > .woocommerce,
body.luxeline-client-account .entry-content > .woocommerce * {
	box-sizing: border-box;
}

body.luxeline-client-account .entry-content > .woocommerce {
	position: relative;
	isolation: isolate;
	display: grid;
	grid-template-columns: minmax(230px, 285px) minmax(0, 1fr);
	gap: 28px;
	width: 100vw !important;
	max-width: none !important;
	min-height: 560px;
	margin: 0 calc(50% - 50vw) !important;
	padding:
		158px
		max(24px, calc((100vw - 1180px) / 2))
		78px !important;
	overflow: hidden;
	color: var(--lux-account-white);
	background:
		radial-gradient(circle at 10% 0%, rgba(161, 67, 90, 0.3), transparent 31%),
		radial-gradient(circle at 92% 100%, rgba(107, 41, 68, 0.22), transparent 35%),
		linear-gradient(135deg, #21171c 0%, #161214 66%, #111011 100%);
}

body.luxeline-client-account .entry-content > .woocommerce::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	opacity: 0.33;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, black, transparent 80%);
}

body.luxeline-client-account .woocommerce::before,
body.luxeline-client-account .woocommerce::after {
	display: none !important;
}

/*=========================================================================
  PREMIUM ACCOUNT HERO
=========================================================================*/

.lux-account-hero {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 32px;
	background: var(--lux-account-ivory);
	box-shadow: var(--lux-account-shadow);
}

.lux-account-hero__main {
	padding: clamp(38px, 4vw, 58px);
	color: var(--lux-account-ink);
}

.lux-account-eyebrow {
	display: flex;
	align-items: center;
	gap: 11px;
	margin: 0 0 17px;
	color: var(--lux-account-plum);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.22em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lux-account-eyebrow > span {
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--lux-account-champagne);
	box-shadow: 0 0 0 5px rgba(222, 197, 126, 0.16);
}

.lux-account-hero__main h1 {
	max-width: 780px;
	margin: 0 !important;
	color: var(--lux-account-ink) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(40px, 4vw, 62px) !important;
	font-weight: 400 !important;
	letter-spacing: -0.045em;
	line-height: 0.99 !important;
}

.lux-account-hero__main h1 > span {
	display: block;
	color: var(--lux-account-plum);
}

.lux-account-hero__main > p {
	max-width: 750px;
	margin: 24px 0 0 !important;
	color: var(--lux-account-muted) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: clamp(15px, 1.25vw, 18px);
	font-weight: 450;
	line-height: 1.72;
}

.lux-account-hero__summary {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: clamp(34px, 3.2vw, 48px);
	overflow: hidden;
	color: var(--lux-account-white);
	background:
		radial-gradient(circle at 100% 0%, rgba(161, 67, 90, 0.34), transparent 42%),
		linear-gradient(145deg, #321f28, #21171c 62%, #181315);
}

.lux-account-hero__summary::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -100px;
	width: 250px;
	height: 250px;
	border: 1px solid rgba(222, 197, 126, 0.16);
	border-radius: 50%;
	box-shadow:
		0 0 0 34px rgba(222, 197, 126, 0.04),
		0 0 0 68px rgba(222, 197, 126, 0.025);
	pointer-events: none;
}

.lux-account-status {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 9px;
	margin: 0 0 23px;
	padding: 8px 12px;
	border: 1px solid rgba(222, 197, 126, 0.3);
	border-radius: 999px;
	color: var(--lux-account-champagne);
	background: rgba(255, 255, 255, 0.035);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.lux-account-status > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--lux-account-champagne);
	box-shadow: 0 0 0 4px rgba(222, 197, 126, 0.12);
}

.lux-account-hero__summary h2 {
	position: relative;
	z-index: 1;
	margin: 0 !important;
	color: var(--lux-account-white) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(28px, 2.5vw, 39px) !important;
	font-weight: 400 !important;
	letter-spacing: -0.035em;
	line-height: 1.05 !important;
}

.lux-account-hero__summary dl {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0;
	margin: 27px 0 0;
}

.lux-account-hero__summary dl > div {
	display: grid;
	grid-template-columns: minmax(88px, 0.72fr) minmax(0, 1.28fr);
	gap: 16px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.lux-account-hero__summary dt,
.lux-account-hero__summary dd {
	margin: 0;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	line-height: 1.5;
}

.lux-account-hero__summary dt {
	color: rgba(255, 255, 255, 0.58);
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lux-account-hero__summary dd {
	min-width: 0;
	overflow-wrap: anywhere;
	color: var(--lux-account-white);
	font-size: 13.5px;
	font-weight: 700;
	text-align: right;
}

.lux-account-hero__summary dd .woocommerce-Price-amount {
	color: var(--lux-account-champagne);
	font-size: 16px;
}

.lux-account-hero__benefits {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 14px;
	margin: 27px 0 0;
	padding: 0;
	list-style: none;
}

.lux-account-hero__benefits li {
	position: relative;
	padding-left: 28px;
	color: rgba(255, 255, 255, 0.78);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.55;
}

.lux-account-hero__benefits li::before {
	content: "✓";
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	color: #26191f;
	background: var(--lux-account-champagne);
	font-size: 10px;
	font-weight: 900;
}

/*=========================================================================
  NAVIGATION
=========================================================================*/

body.luxeline-client-account .woocommerce-MyAccount-navigation {
	float: none !important;
	align-self: start;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	border: 1px solid rgba(222, 197, 126, 0.18);
	border-radius: var(--lux-account-radius);
	background:
		radial-gradient(circle at 0% 0%, rgba(161, 67, 90, 0.17), transparent 42%),
		linear-gradient(155deg, #281b21, #171315 68%);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

body.luxeline-client-account .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 0;
	margin: 0 !important;
	padding: 13px !important;
	list-style: none !important;
}

body.luxeline-client-account .woocommerce-MyAccount-navigation li {
	position: relative;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
}

body.luxeline-client-account .woocommerce-MyAccount-navigation li + li {
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.luxeline-client-account .woocommerce-MyAccount-navigation a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 56px;
	padding: 14px 16px 14px 39px !important;
	border: 0 !important;
	border-radius: 13px;
	color: rgba(255, 255, 255, 0.76) !important;
	background: transparent !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	text-decoration: none !important;
	transition:
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

body.luxeline-client-account .woocommerce-MyAccount-navigation a::before {
	content: "";
	position: absolute;
	left: 18px;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(222, 197, 126, 0.56);
	border-radius: 50%;
	background: transparent;
}

body.luxeline-client-account .woocommerce-MyAccount-navigation li.is-active a {
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-ivory) !important;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.17);
}

body.luxeline-client-account .woocommerce-MyAccount-navigation li.is-active a::before {
	border-color: var(--lux-account-plum);
	background: var(--lux-account-plum);
	box-shadow: 0 0 0 4px rgba(107, 41, 68, 0.1);
}

body.luxeline-client-account .woocommerce-MyAccount-navigation a:hover,
body.luxeline-client-account .woocommerce-MyAccount-navigation a:focus-visible {
	color: var(--lux-account-white) !important;
	background: rgba(255, 255, 255, 0.055) !important;
	transform: translateX(2px);
}

body.luxeline-client-account .woocommerce-MyAccount-navigation li.is-active a:hover,
body.luxeline-client-account .woocommerce-MyAccount-navigation li.is-active a:focus-visible {
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-ivory) !important;
}

/*=========================================================================
  CONTENT CARD
=========================================================================*/

body.luxeline-client-account .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
	min-width: 0;
	margin: 0 !important;
	padding: clamp(25px, 3vw, 40px) !important;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--lux-account-radius);
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-ivory) !important;
	box-shadow: var(--lux-account-shadow);
}

body.luxeline-client-account .woocommerce-MyAccount-content,
body.luxeline-client-account .woocommerce-MyAccount-content p,
body.luxeline-client-account .woocommerce-MyAccount-content li,
body.luxeline-client-account .woocommerce-MyAccount-content address {
	color: var(--lux-account-muted) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
}

body.luxeline-client-account .woocommerce-MyAccount-content a:not(.button) {
	color: var(--lux-account-plum) !important;
	font-weight: 700;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

body.luxeline-client-account .woocommerce-MyAccount-content h2,
body.luxeline-client-account .woocommerce-MyAccount-content h3,
body.luxeline-client-account .woocommerce-MyAccount-content h4,
body.luxeline-client-account .woocommerce-MyAccount-content legend {
	color: var(--lux-account-ink) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-weight: 400 !important;
	letter-spacing: -0.035em;
}

body.luxeline-client-account .woocommerce-MyAccount-content h2 {
	margin: 0 0 24px !important;
	font-size: clamp(31px, 3.1vw, 44px) !important;
	line-height: 1.05 !important;
}

body.luxeline-client-account .woocommerce-MyAccount-content h3,
body.luxeline-client-account .woocommerce-MyAccount-content legend {
	font-size: clamp(24px, 2.3vw, 32px) !important;
	line-height: 1.1 !important;
}

/* Native dashboard paragraphs are replaced by the structured overview below. */
body.lux-account-endpoint-dashboard .woocommerce-MyAccount-content > p {
	display: none !important;
}

/*=========================================================================
  DASHBOARD OVERVIEW
=========================================================================*/

.lux-account-dashboard {
	display: grid;
	gap: 27px;
}

.lux-account-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
	gap: 28px;
	align-items: end;
	padding-bottom: 23px;
	border-bottom: 1px solid var(--lux-account-line);
}

.lux-account-section-heading span,
.lux-account-card-label {
	display: block;
	color: var(--lux-account-plum);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 10.5px;
	font-weight: 850;
	letter-spacing: 0.17em;
	line-height: 1.35;
	text-transform: uppercase;
}

.lux-account-section-heading h2 {
	margin: 7px 0 0 !important;
	font-size: clamp(30px, 3vw, 42px) !important;
}

.lux-account-section-heading > p {
	margin: 0 !important;
	font-size: 13.5px;
	line-height: 1.65;
}

.lux-account-overview-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
	gap: 18px;
}

.lux-account-latest-booking,
.lux-account-profile-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	padding: 27px;
	border-radius: 20px;
}

.lux-account-latest-booking {
	border: 1px solid var(--lux-account-line);
	background: var(--lux-account-white);
	box-shadow: 0 12px 30px rgba(59, 34, 45, 0.06);
}

.lux-account-profile-card {
	overflow: hidden;
	color: var(--lux-account-white);
	background:
		radial-gradient(circle at 100% 0%, rgba(161, 67, 90, 0.35), transparent 42%),
		linear-gradient(145deg, #321f28, #20161b 70%);
}

.lux-account-profile-card::after {
	content: "";
	position: absolute;
	right: -52px;
	bottom: -66px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(222, 197, 126, 0.16);
	border-radius: 50%;
	box-shadow: 0 0 0 28px rgba(222, 197, 126, 0.035);
}

.lux-account-profile-card .lux-account-card-label {
	position: relative;
	z-index: 1;
	color: var(--lux-account-champagne);
}

.lux-account-latest-booking h3,
.lux-account-profile-card h3 {
	position: relative;
	z-index: 1;
	margin: 13px 0 0 !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(26px, 2.4vw, 34px) !important;
	font-weight: 400 !important;
	letter-spacing: -0.035em;
	line-height: 1.08 !important;
}

.lux-account-latest-booking h3 {
	color: var(--lux-account-ink) !important;
}

body.luxeline-client-account
	.woocommerce-MyAccount-content
	.lux-account-profile-card h3 {
	color: var(--lux-account-white) !important;
}

.lux-account-profile-card p {
	position: relative;
	z-index: 1;
	margin: 17px 0 0 !important;
	color: rgba(255, 255, 255, 0.72) !important;
	font-size: 13px;
	line-height: 1.65;
}

.lux-account-booking-topline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.lux-account-booking-status {
	flex: 0 0 auto;
	padding: 7px 10px;
	border: 1px solid rgba(107, 41, 68, 0.18);
	border-radius: 999px;
	color: var(--lux-account-plum);
	background: rgba(107, 41, 68, 0.06);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.lux-account-latest-booking dl {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 23px 0 0;
	border-top: 1px solid var(--lux-account-line);
	border-bottom: 1px solid var(--lux-account-line);
}

.lux-account-latest-booking dl > div {
	padding: 16px 0;
}

.lux-account-latest-booking dl > div + div {
	padding-left: 20px;
	border-left: 1px solid var(--lux-account-line);
}

.lux-account-latest-booking dt,
.lux-account-latest-booking dd {
	margin: 0;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.lux-account-latest-booking dt {
	color: var(--lux-account-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lux-account-latest-booking dd {
	margin-top: 6px;
	color: var(--lux-account-ink);
	font-size: 14px;
	font-weight: 750;
}

.lux-account-primary-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;
	width: fit-content;
	min-height: 48px;
	margin-top: 22px;
	padding: 12px 18px;
	border: 1px solid var(--lux-account-plum);
	border-radius: 12px;
	color: var(--lux-account-white) !important;
	background: var(--lux-account-plum);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-decoration: none !important;
	text-transform: uppercase;
	transition:
		transform 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease;
}

.lux-account-primary-link:hover,
.lux-account-primary-link:focus-visible {
	color: #24191e !important;
	border-color: var(--lux-account-champagne);
	background: var(--lux-account-champagne);
	transform: translateY(-1px);
}

.lux-account-assurance {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	width: fit-content;
	margin-top: auto;
	padding-top: 23px;
	color: var(--lux-account-champagne);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lux-account-assurance::before {
	content: "✓";
	display: grid;
	place-items: center;
	width: 19px;
	height: 19px;
	border-radius: 50%;
	color: #26191f;
	background: var(--lux-account-champagne);
	font-size: 10px;
	font-weight: 900;
}

.lux-account-quick-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
}

.lux-account-quick-links > a {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 160px;
	padding: 21px;
	border: 1px solid var(--lux-account-line);
	border-radius: 18px;
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-white);
	text-decoration: none !important;
	box-shadow: 0 10px 25px rgba(59, 34, 45, 0.045);
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.lux-account-quick-links > a:hover,
.lux-account-quick-links > a:focus-visible {
	border-color: rgba(107, 41, 68, 0.34);
	box-shadow: 0 16px 35px rgba(59, 34, 45, 0.09);
	transform: translateY(-2px);
}

.lux-account-quick-links span {
	color: var(--lux-account-plum);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
}

.lux-account-quick-links strong {
	margin-top: auto;
	color: var(--lux-account-ink);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.lux-account-quick-links small {
	margin-top: 7px;
	color: var(--lux-account-muted);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11.5px;
	font-weight: 500;
	line-height: 1.5;
}

/*=========================================================================
  NOTICES
=========================================================================*/

body.luxeline-client-account .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
	width: 100%;
}

body.luxeline-client-account .woocommerce-error,
body.luxeline-client-account .woocommerce-info,
body.luxeline-client-account .woocommerce-message {
	position: relative;
	display: grid !important;
	grid-template-columns: 34px minmax(0, 1fr) auto;
	align-items: center;
	gap: 15px;
	width: 100%;
	min-height: 72px;
	margin: 0 0 22px !important;
	padding: 16px 18px !important;
	border: 1px solid var(--lux-account-line) !important;
	border-top: 1px solid var(--lux-account-line) !important;
	border-radius: 16px !important;
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-white) !important;
	box-shadow: 0 10px 28px rgba(59, 34, 45, 0.07) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 13px !important;
	line-height: 1.55;
	list-style: none !important;
}

body.luxeline-client-account .woocommerce-error::before,
body.luxeline-client-account .woocommerce-info::before,
body.luxeline-client-account .woocommerce-message::before {
	position: static !important;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	margin: 0 !important;
	border-radius: 50%;
	color: var(--lux-account-white) !important;
	background: var(--lux-account-plum) !important;
	font-size: 13px;
	font-weight: 900;
}

body.luxeline-client-account .woocommerce-error {
	border-color: rgba(165, 59, 78, 0.26) !important;
}

body.luxeline-client-account .woocommerce-error::before {
	background: var(--lux-account-danger) !important;
}

body.luxeline-client-account .woocommerce-message::before {
	background: var(--lux-account-success) !important;
}

body.luxeline-client-account .woocommerce-info p,
body.luxeline-client-account .woocommerce-message p,
body.luxeline-client-account .woocommerce-error li {
	margin: 0 !important;
	color: var(--lux-account-ink) !important;
}

body.luxeline-client-account .woocommerce-info .button,
body.luxeline-client-account .woocommerce-message .button,
body.luxeline-client-account .woocommerce-error .button {
	grid-column: 3;
	grid-row: 1;
	margin: 0 !important;
}

/*=========================================================================
  FORMS
=========================================================================*/

body.luxeline-client-account form {
	color: var(--lux-account-ink);
}

body.luxeline-client-account .form-row,
body.luxeline-client-account .woocommerce-form-row {
	float: none !important;
	width: 100% !important;
	margin: 0 0 18px !important;
	padding: 0 !important;
}

body.luxeline-client-account label,
body.luxeline-client-account .woocommerce-form-row label {
	display: block;
	margin: 0 0 8px !important;
	color: var(--lux-account-ink) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 12.5px;
	font-weight: 800;
	line-height: 1.4;
}

body.luxeline-client-account .required {
	color: var(--lux-account-plum-light) !important;
}

body.luxeline-client-account input.input-text,
body.luxeline-client-account input[type="text"],
body.luxeline-client-account input[type="email"],
body.luxeline-client-account input[type="password"],
body.luxeline-client-account input[type="tel"],
body.luxeline-client-account input[type="number"],
body.luxeline-client-account textarea,
body.luxeline-client-account select,
body.luxeline-client-account .select2-container .select2-selection--single {
	width: 100% !important;
	min-height: 54px !important;
	margin: 0 !important;
	padding: 13px 15px !important;
	border: 1px solid var(--lux-account-line) !important;
	border-radius: 12px !important;
	outline: 0 !important;
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-white) !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 1.45 !important;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.luxeline-client-account textarea {
	min-height: 130px !important;
	resize: vertical;
}

body.luxeline-client-account input:focus,
body.luxeline-client-account textarea:focus,
body.luxeline-client-account select:focus,
body.luxeline-client-account .select2-container--focus .select2-selection--single,
body.luxeline-client-account .select2-container--open .select2-selection--single {
	border-color: var(--lux-account-plum) !important;
	box-shadow: 0 0 0 3px rgba(107, 41, 68, 0.1) !important;
}

body.luxeline-client-account .select2-container {
	width: 100% !important;
}

body.luxeline-client-account .select2-selection__rendered {
	padding: 0 38px 0 0 !important;
	color: var(--lux-account-ink) !important;
	line-height: 27px !important;
}

body.luxeline-client-account .select2-selection__arrow {
	top: 12px !important;
	right: 11px !important;
}

body.luxeline-client-account .woocommerce-password-input {
	display: block;
	width: 100%;
}

body.luxeline-client-account .show-password-input {
	top: 50% !important;
	right: 15px !important;
	transform: translateY(-50%);
}

body.luxeline-client-account .woocommerce-form__label-for-checkbox {
	display: inline-flex !important;
	align-items: center;
	gap: 9px;
	margin: 0 !important;
}

body.luxeline-client-account input[type="checkbox"],
body.luxeline-client-account input[type="radio"] {
	accent-color: var(--lux-account-plum);
}

body.luxeline-client-account em,
body.luxeline-client-account .description {
	color: var(--lux-account-muted) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11.5px;
	line-height: 1.55;
}

body.luxeline-client-account fieldset {
	margin: 29px 0 0 !important;
	padding: 26px 0 0 !important;
	border: 0 !important;
	border-top: 1px solid var(--lux-account-line) !important;
}

body.luxeline-client-account fieldset legend {
	width: 100%;
	margin: 0 0 23px !important;
	padding: 0 !important;
}

body.luxeline-client-account .woocommerce-address-fields__field-wrapper,
body.luxeline-client-account .woocommerce-EditAccountForm {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 18px;
}

body.luxeline-client-account .woocommerce-address-fields__field-wrapper .form-row-wide,
body.luxeline-client-account .woocommerce-address-fields__field-wrapper .address-field,
body.luxeline-client-account .woocommerce-EditAccountForm .form-row-wide,
body.luxeline-client-account .woocommerce-EditAccountForm fieldset,
body.luxeline-client-account .woocommerce-EditAccountForm > p:last-child {
	grid-column: 1 / -1;
}

body.luxeline-client-account .woocommerce-address-fields > p:last-child {
	margin: 7px 0 0 !important;
}

/*=========================================================================
  BUTTONS
=========================================================================*/

body.luxeline-client-account .button,
body.luxeline-client-account button.button,
body.luxeline-client-account input.button,
body.luxeline-client-account a.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	margin: 0 !important;
	padding: 13px 20px !important;
	border: 1px solid var(--lux-account-plum) !important;
	border-radius: 12px !important;
	color: var(--lux-account-white) !important;
	background: var(--lux-account-plum) !important;
	box-shadow: none !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif !important;
	font-size: 11px !important;
	font-weight: 850 !important;
	letter-spacing: 0.1em;
	line-height: 1.2 !important;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition:
		background-color 180ms ease,
		border-color 180ms ease,
		color 180ms ease,
		transform 180ms ease;
}

body.luxeline-client-account .button:hover,
body.luxeline-client-account .button:focus-visible,
body.luxeline-client-account button.button:hover,
body.luxeline-client-account button.button:focus-visible,
body.luxeline-client-account input.button:hover,
body.luxeline-client-account input.button:focus-visible,
body.luxeline-client-account a.button:hover,
body.luxeline-client-account a.button:focus-visible {
	color: #24191e !important;
	border-color: var(--lux-account-champagne) !important;
	background: var(--lux-account-champagne) !important;
	transform: translateY(-1px);
}

body.luxeline-client-account .button:focus-visible,
body.luxeline-client-account button:focus-visible,
body.luxeline-client-account input:focus-visible,
body.luxeline-client-account a:focus-visible {
	outline: 2px solid var(--lux-account-champagne) !important;
	outline-offset: 3px;
}

/*=========================================================================
  LOGIN, REGISTRATION AND PASSWORD RECOVERY
=========================================================================*/

body.luxeline-client-account--logged-out .entry-content > .woocommerce {
	grid-template-columns: minmax(0, 1fr);
}

body.luxeline-client-account--logged-out .lux-account-hero,
body.luxeline-client-account--logged-out .woocommerce-notices-wrapper,
body.luxeline-client-account--logged-out #customer_login,
body.luxeline-client-account--logged-out .woocommerce-ResetPassword {
	grid-column: 1;
}

body.luxeline-client-account #customer_login {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	width: 100%;
	margin: 0 !important;
}

body.luxeline-client-account #customer_login::before,
body.luxeline-client-account #customer_login::after {
	display: none !important;
}

body.luxeline-client-account #customer_login > .col-1,
body.luxeline-client-account #customer_login > .col-2 {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.luxeline-client-account #customer_login h2 {
	margin: 0 0 18px !important;
	color: var(--lux-account-white) !important;
	font-family: Georgia, "Times New Roman", serif !important;
	font-size: clamp(34px, 3.4vw, 50px) !important;
	font-weight: 400 !important;
	letter-spacing: -0.04em;
	line-height: 1 !important;
}

body.luxeline-client-account form.woocommerce-form-login,
body.luxeline-client-account form.woocommerce-form-register,
body.luxeline-client-account form.woocommerce-ResetPassword {
	margin: 0 !important;
	padding: clamp(25px, 3vw, 38px) !important;
	border: 1px solid rgba(255, 255, 255, 0.14) !important;
	border-radius: var(--lux-account-radius) !important;
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-ivory) !important;
	box-shadow: var(--lux-account-shadow);
}

body.luxeline-client-account form.woocommerce-form-login p,
body.luxeline-client-account form.woocommerce-form-register p,
body.luxeline-client-account form.woocommerce-ResetPassword p {
	color: var(--lux-account-muted) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.7;
}

body.luxeline-client-account .woocommerce-LostPassword {
	margin-top: 18px !important;
}

body.luxeline-client-account .woocommerce-LostPassword a {
	color: var(--lux-account-plum) !important;
	font-weight: 750;
}

body.luxeline-client-account form.woocommerce-ResetPassword {
	justify-self: center;
	width: min(760px, 100%);
}

/*=========================================================================
  ORDERS AND PAYMENT TABLES
=========================================================================*/

body.luxeline-client-account table.shop_table {
	width: 100% !important;
	margin: 0 !important;
	border: 0 !important;
	border-collapse: separate !important;
	border-spacing: 0 10px !important;
	background: transparent !important;
	box-shadow: none !important;
	table-layout: auto;
}

body.luxeline-client-account table.shop_table thead th {
	padding: 14px 15px !important;
	border: 0 !important;
	color: rgba(255, 255, 255, 0.72) !important;
	background: #261a20 !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 10px !important;
	font-weight: 850 !important;
	letter-spacing: 0.12em;
	line-height: 1.35;
	text-transform: uppercase;
}

body.luxeline-client-account table.shop_table thead th:first-child {
	border-radius: 13px 0 0 13px;
}

body.luxeline-client-account table.shop_table thead th:last-child {
	border-radius: 0 13px 13px 0;
}

body.luxeline-client-account table.shop_table tbody tr,
body.luxeline-client-account table.shop_table tfoot tr {
	background: var(--lux-account-white);
	box-shadow: 0 8px 24px rgba(59, 34, 45, 0.045);
}

body.luxeline-client-account table.shop_table td,
body.luxeline-client-account table.shop_table tbody th,
body.luxeline-client-account table.shop_table tfoot th {
	padding: 17px 15px !important;
	border: 0 !important;
	border-top: 1px solid var(--lux-account-line) !important;
	border-bottom: 1px solid var(--lux-account-line) !important;
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-white) !important;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 13px !important;
	font-weight: 600;
	line-height: 1.55;
	vertical-align: middle;
}

body.luxeline-client-account table.shop_table tr > *:first-child {
	border-left: 1px solid var(--lux-account-line) !important;
	border-radius: 13px 0 0 13px;
}

body.luxeline-client-account table.shop_table tr > *:last-child {
	border-right: 1px solid var(--lux-account-line) !important;
	border-radius: 0 13px 13px 0;
}

body.luxeline-client-account table.shop_table .woocommerce-Price-amount {
	color: var(--lux-account-plum);
	font-weight: 800;
}

body.luxeline-client-account .woocommerce-orders-table__cell-order-number a {
	font-weight: 850 !important;
}

body.luxeline-client-account .woocommerce-orders-table__cell-order-status {
	font-weight: 800 !important;
}

body.luxeline-client-account .woocommerce-orders-table__cell-order-actions {
	white-space: nowrap;
}

body.luxeline-client-account .woocommerce-orders-table__cell-order-actions .button {
	min-height: 42px;
	padding: 10px 14px !important;
}

body.luxeline-client-account .woocommerce-pagination {
	margin-top: 24px;
}

/* Detailed booking table. */
body.lux-account-endpoint-view-order .woocommerce-order-details {
	margin-top: 24px;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details {
	border-spacing: 0 !important;
	table-layout: fixed;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details tr > * {
	border-radius: 0 !important;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details thead th:first-child {
	border-radius: 13px 0 0 0 !important;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details thead th:last-child {
	border-radius: 0 13px 0 0 !important;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details tbody td,
body.lux-account-endpoint-view-order table.woocommerce-table--order-details tfoot th,
body.lux-account-endpoint-view-order table.woocommerce-table--order-details tfoot td {
	border-top: 0 !important;
	border-radius: 0 !important;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details .product-name {
	width: 76%;
}

body.lux-account-endpoint-view-order table.woocommerce-table--order-details .product-total {
	width: 24%;
	text-align: right;
}

body.lux-account-endpoint-view-order .wc-item-meta {
	display: grid;
	gap: 5px;
	margin: 17px 0 0 !important;
	padding: 15px 0 0 !important;
	border-top: 1px solid var(--lux-account-line);
	list-style: none !important;
}

body.lux-account-endpoint-view-order .wc-item-meta li {
	margin: 0 !important;
	font-size: 12px;
	line-height: 1.5;
}

body.lux-account-endpoint-view-order .wc-item-meta strong {
	color: var(--lux-account-ink);
}

/*=========================================================================
  ADDRESSES
=========================================================================*/

body.luxeline-client-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin: 23px 0 0 !important;
}

body.luxeline-client-account .woocommerce-Addresses::before,
body.luxeline-client-account .woocommerce-Addresses::after {
	display: none !important;
}

body.luxeline-client-account .woocommerce-Address {
	float: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 25px !important;
	border: 1px solid var(--lux-account-line);
	border-radius: 20px;
	background: var(--lux-account-white);
	box-shadow: 0 10px 28px rgba(59, 34, 45, 0.05);
}

body.luxeline-client-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 18px;
	padding-bottom: 17px;
	border-bottom: 1px solid var(--lux-account-line);
}

body.luxeline-client-account .woocommerce-Address-title::before,
body.luxeline-client-account .woocommerce-Address-title::after {
	display: none !important;
}

body.luxeline-client-account .woocommerce-Address-title h2,
body.luxeline-client-account .woocommerce-Address-title h3 {
	float: none !important;
	margin: 0 !important;
	font-size: 28px !important;
}

body.luxeline-client-account .woocommerce-Address-title .edit {
	float: none !important;
	flex: 0 0 auto;
}

body.luxeline-client-account .woocommerce-Address address {
	margin: 0 !important;
	font-style: normal;
	font-size: 13.5px;
	line-height: 1.8;
}

/*=========================================================================
  SAVED AND NEW PAYMENT METHODS
=========================================================================*/

body.luxeline-client-account .woocommerce-MyAccount-paymentMethods {
	margin-bottom: 23px !important;
}

body.luxeline-client-account .woocommerce-PaymentMethods {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

body.luxeline-client-account .woocommerce-PaymentMethods > li {
	margin: 0 0 16px !important;
	padding: 20px !important;
	border: 1px solid var(--lux-account-line);
	border-radius: 18px;
	background: var(--lux-account-white);
}

body.luxeline-client-account .woocommerce-PaymentMethods label {
	display: flex !important;
	align-items: center;
	flex-wrap: wrap;
	gap: 11px;
	margin: 0 !important;
	font-size: 14px;
}

body.luxeline-client-account .woocommerce-PaymentMethods img,
body.luxeline-client-account [class*="payment_method_square"] img {
	display: inline-block !important;
	width: auto !important;
	max-width: 58px !important;
	height: auto !important;
	max-height: 30px !important;
	margin: 0 5px 0 0 !important;
	object-fit: contain;
	vertical-align: middle;
}

body.luxeline-client-account .payment_box {
	position: relative;
	margin: 17px 0 0 !important;
	padding: 20px !important;
	border: 1px solid var(--lux-account-line) !important;
	border-radius: 16px !important;
	color: var(--lux-account-ink) !important;
	background: var(--lux-account-ivory-deep) !important;
	box-shadow: none !important;
}

body.luxeline-client-account .payment_box::before {
	display: none !important;
}

body.luxeline-client-account .payment_box p {
	color: var(--lux-account-muted) !important;
	font-size: 12.5px;
	line-height: 1.6;
}

/* Square outer structure only. The secure card inputs remain inside Square's iframe. */
body.luxeline-client-account #wc-square-credit-card-container {
	width: 100% !important;
	margin: 18px 0 0 !important;
	padding: 0 !important;
}

body.luxeline-client-account #wc-square-credit-card-container .sq-card-wrapper {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.luxeline-client-account #wc-square-credit-card-container .sq-card-iframe-container {
	width: 100% !important;
	min-height: 50px !important;
	margin: 0 !important;
	overflow: hidden !important;
	border: 1px solid var(--lux-account-line) !important;
	border-radius: 12px !important;
	background: var(--lux-account-white) !important;
	box-shadow: 0 0 0 0 rgba(107, 41, 68, 0) !important;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.luxeline-client-account #wc-square-credit-card-container .sq-card-iframe-container:focus-within {
	border-color: var(--lux-account-plum) !important;
	box-shadow: 0 0 0 3px rgba(107, 41, 68, 0.1) !important;
}

body.luxeline-client-account #wc-square-credit-card-container iframe.sq-card-component {
	display: block !important;
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	background: transparent !important;
}

body.luxeline-client-account #wc-square-credit-card-container .sq-card-message {
	display: block;
	margin-top: 9px;
	color: var(--lux-account-danger);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11.5px;
	font-weight: 650;
	line-height: 1.5;
}

body.luxeline-client-account #add_payment_method .form-row:last-child {
	margin: 25px 0 0 !important;
	padding-top: 24px !important;
	border-top: 1px solid var(--lux-account-line);
}

/*=========================================================================
  PASSWORD STRENGTH
=========================================================================*/

body.luxeline-client-account .woocommerce-password-strength {
	margin-top: 9px;
	padding: 9px 11px;
	border-radius: 9px;
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	font-size: 11px;
	font-weight: 750;
	line-height: 1.4;
}

body.luxeline-client-account .woocommerce-password-strength.bad,
body.luxeline-client-account .woocommerce-password-strength.short {
	color: #7b2636;
	background: #f8dde2;
}

body.luxeline-client-account .woocommerce-password-strength.good {
	color: #6e5919;
	background: #f7edc9;
}

body.luxeline-client-account .woocommerce-password-strength.strong {
	color: #285442;
	background: #dceee7;
}

/*=========================================================================
  TABLET
=========================================================================*/

@media (max-width: 980px) {

	body.luxeline-client-account .entry-content > .woocommerce {
		grid-template-columns: minmax(205px, 245px) minmax(0, 1fr);
		gap: 20px;
		padding-top: 138px !important;
	}

	.lux-account-hero {
		grid-template-columns: 1fr;
	}

	.lux-account-overview-grid,
	.lux-account-section-heading {
		grid-template-columns: 1fr;
	}

	.lux-account-quick-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	body.luxeline-client-account .woocommerce-address-fields__field-wrapper,
	body.luxeline-client-account .woocommerce-EditAccountForm {
		grid-template-columns: 1fr;
	}

	body.luxeline-client-account .woocommerce-address-fields__field-wrapper > *,
	body.luxeline-client-account .woocommerce-EditAccountForm > * {
		grid-column: 1 !important;
	}
}

/*=========================================================================
  MOBILE / SMALL TABLET
=========================================================================*/

@media (max-width: 767px) {

	body.luxeline-client-account .entry-content > .woocommerce {
		grid-template-columns: minmax(0, 1fr);
		gap: 17px;
		padding: 118px 10px 42px !important;
	}

	.lux-account-hero {
		border-radius: 24px;
	}

	.lux-account-hero__main {
		padding: 29px 20px 27px;
	}

	.lux-account-eyebrow {
		margin-bottom: 14px;
		font-size: 10px;
		letter-spacing: 0.18em;
	}

	.lux-account-hero__main h1 {
		font-size: clamp(34px, 9.8vw, 44px) !important;
		line-height: 1.01 !important;
	}

	.lux-account-hero__main > p {
		margin-top: 19px !important;
		font-size: 14px;
		line-height: 1.65;
	}

	.lux-account-hero__summary {
		padding: 27px 20px 25px;
	}

	.lux-account-hero__summary h2 {
		font-size: 32px !important;
	}

	.lux-account-hero__summary dl {
		margin-top: 21px;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation {
		grid-column: 1;
		border-radius: 18px;
		overflow: visible;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		gap: 7px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 9px !important;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation ul::-webkit-scrollbar {
		display: none;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation li {
		flex: 0 0 auto;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation li + li {
		border-top: 0 !important;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation a {
		min-height: 45px;
		padding: 11px 14px 11px 33px !important;
		white-space: nowrap;
		font-size: 11.5px;
	}

	body.luxeline-client-account .woocommerce-MyAccount-navigation a::before {
		left: 14px;
		width: 7px;
		height: 7px;
	}

	body.luxeline-client-account .woocommerce-MyAccount-content {
		grid-column: 1;
		padding: 22px 17px 24px !important;
		border-radius: 20px;
	}

	body.luxeline-client-account .woocommerce-MyAccount-content h2 {
		font-size: 32px !important;
	}

	.lux-account-dashboard {
		gap: 21px;
	}

	.lux-account-section-heading {
		gap: 15px;
	}

	.lux-account-section-heading h2 {
		font-size: 31px !important;
	}

	.lux-account-overview-grid,
	.lux-account-quick-links,
	body.luxeline-client-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}

	.lux-account-latest-booking,
	.lux-account-profile-card {
		padding: 22px;
	}

	.lux-account-booking-topline {
		align-items: flex-start;
		flex-direction: column;
	}

	.lux-account-latest-booking dl {
		grid-template-columns: 1fr;
	}

	.lux-account-latest-booking dl > div + div {
		padding-left: 0;
		border-top: 1px solid var(--lux-account-line);
		border-left: 0;
	}

	.lux-account-quick-links > a {
		min-height: 132px;
	}

	body.luxeline-client-account #customer_login {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	body.luxeline-client-account #customer_login h2 {
		font-size: 39px !important;
	}

	body.luxeline-client-account form.woocommerce-form-login,
	body.luxeline-client-account form.woocommerce-form-register,
	body.luxeline-client-account form.woocommerce-ResetPassword {
		padding: 23px 18px !important;
		border-radius: 20px !important;
	}

	body.luxeline-client-account .woocommerce-error,
	body.luxeline-client-account .woocommerce-info,
	body.luxeline-client-account .woocommerce-message {
		grid-template-columns: 30px minmax(0, 1fr);
		gap: 12px;
		padding: 14px !important;
	}

	body.luxeline-client-account .woocommerce-info .button,
	body.luxeline-client-account .woocommerce-message .button,
	body.luxeline-client-account .woocommerce-error .button {
		grid-column: 1 / -1;
		grid-row: auto;
		width: 100%;
		margin-top: 4px !important;
	}

	body.luxeline-client-account table.shop_table_responsive thead {
		display: none !important;
	}

	body.luxeline-client-account table.shop_table_responsive,
	body.luxeline-client-account table.shop_table_responsive tbody {
		display: block !important;
	}

	body.luxeline-client-account table.shop_table_responsive tbody tr {
		display: block !important;
		margin: 0 0 13px !important;
		padding: 7px 15px !important;
		border: 1px solid var(--lux-account-line) !important;
		border-radius: 16px !important;
		background: var(--lux-account-white) !important;
		box-shadow: 0 8px 22px rgba(59, 34, 45, 0.05);
	}

	body.luxeline-client-account table.shop_table_responsive tbody tr > td {
		display: grid !important;
		grid-template-columns: minmax(100px, 0.72fr) minmax(0, 1.28fr);
		gap: 14px;
		align-items: center;
		width: 100% !important;
		padding: 12px 0 !important;
		border: 0 !important;
		border-bottom: 1px solid var(--lux-account-line) !important;
		border-radius: 0 !important;
		text-align: right !important;
	}

	body.luxeline-client-account table.shop_table_responsive tbody tr > td:last-child {
		border-bottom: 0 !important;
	}

	body.luxeline-client-account table.shop_table_responsive tbody td::before {
		content: attr(data-title);
		color: var(--lux-account-muted);
		font-size: 9.5px;
		font-weight: 850;
		letter-spacing: 0.1em;
		text-align: left;
		text-transform: uppercase;
	}

	body.luxeline-client-account table.shop_table_responsive .button {
		width: 100%;
	}

	/* Preserve the booking-detail product table as a readable two-column table. */
	body.lux-account-endpoint-view-order table.woocommerce-table--order-details,
	body.lux-account-endpoint-view-order table.woocommerce-table--order-details tbody,
	body.lux-account-endpoint-view-order table.woocommerce-table--order-details tfoot {
		display: table !important;
		width: 100% !important;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details thead {
		display: table-header-group !important;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details tbody {
		display: table-row-group !important;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details tfoot {
		display: table-footer-group !important;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details tr {
		display: table-row !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details th,
	body.lux-account-endpoint-view-order table.woocommerce-table--order-details td {
		display: table-cell !important;
		padding: 14px 11px !important;
		font-size: 11.5px !important;
		text-align: left !important;
		vertical-align: top;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details .product-name {
		width: 72%;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details .product-total {
		width: 28%;
		text-align: right !important;
	}

	body.lux-account-endpoint-view-order table.woocommerce-table--order-details td::before {
		display: none !important;
	}

	body.luxeline-client-account .woocommerce-Address {
		padding: 22px !important;
	}

	body.luxeline-client-account .woocommerce-Address-title {
		align-items: flex-start;
		flex-direction: column;
	}

	body.luxeline-client-account .woocommerce-Address-title .edit {
		width: 100%;
	}

	body.luxeline-client-account .button,
	body.luxeline-client-account button.button,
	body.luxeline-client-account input.button,
	body.luxeline-client-account a.button {
		min-height: 48px;
	}

	body.luxeline-client-account .woocommerce-address-fields > p:last-child .button,
	body.luxeline-client-account .woocommerce-EditAccountForm > p:last-child .button,
	body.luxeline-client-account #add_payment_method .button {
		width: 100%;
	}

	body.luxeline-client-account .payment_box {
		padding: 17px !important;
	}
}

@media (max-width: 390px) {

	body.luxeline-client-account .entry-content > .woocommerce {
		padding-right: 7px !important;
		padding-left: 7px !important;
	}

	.lux-account-hero__main,
	.lux-account-hero__summary,
	body.luxeline-client-account .woocommerce-MyAccount-content {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}

	.lux-account-hero__main h1 {
		font-size: 33px !important;
	}

	.lux-account-hero__summary dl > div {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	body.luxeline-client-account table.shop_table_responsive tbody tr > td {
		grid-template-columns: 90px minmax(0, 1fr);
		gap: 10px;
	}
}

/* Respect reduced-motion preferences. */
@media (prefers-reduced-motion: reduce) {

	body.luxeline-client-account *,
	body.luxeline-client-account *::before,
	body.luxeline-client-account *::after {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}


/*=========================================================================
  FINAL MASTER BUTTON COLOUR LOCK
  Matches the locked Luxeline "Explore All Services" brand gradient.
  Geometry, typography, sizing and existing hover/focus behaviour untouched.
=========================================================================*/

body.luxeline-client-account .button,
body.luxeline-client-account button.button,
body.luxeline-client-account input.button,
body.luxeline-client-account a.button {
    border-color: rgba(74, 46, 53, 0.18) !important;
    background: linear-gradient(135deg, #a1435a 0%, #4a2e35 100%) !important;
    background-image: linear-gradient(135deg, #a1435a 0%, #4a2e35 100%) !important;
}
/* Normal state */
body.luxeline-client-account
	.woocommerce-MyAccount-content
	a.lux-account-primary-link {
	color: #ffffff !important;
}

/* Hover / keyboard focus / tap */
body.luxeline-client-account
	.woocommerce-MyAccount-content
	a.lux-account-primary-link:hover,
body.luxeline-client-account
	.woocommerce-MyAccount-content
	a.lux-account-primary-link:focus-visible,
body.luxeline-client-account
	.woocommerce-MyAccount-content
	a.lux-account-primary-link:active {
	color: #23191d !important;
	background: #dec57e !important;
}