/* ==========================================================================
   First Mate XT - customer account area
   Maps the WooCommerce My Account markup onto the First Mate XT tokens.
   Every value comes from the Bricks global variables (--xt-*), so re-skinning
   the site re-skins this file with it. Nothing here is hard-coded.
   Scope: .woocommerce-account only. No other page is touched.
   ========================================================================== */

/* --- Shell ---------------------------------------------------------------- */

.woocommerce-account .woocommerce {
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-base);
	line-height: var(--xt-lh-body);
	color: var(--xt-text);
}

/* Nav beside content. :has() keeps the logged-out login form full width. */
.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
	display: grid;
	grid-template-columns: minmax(200px, 240px) 1fr;
	gap: var(--xt-sp-xl);
	align-items: start;
}

.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3 {
	font-family: Anton, sans-serif;
	font-weight: 400;
	line-height: var(--xt-lh-tight);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--xt-text);
	margin: 0 0 var(--xt-sp-md);
}

.woocommerce-account .woocommerce h2 { font-size: var(--xt-fs-xl); }
.woocommerce-account .woocommerce h3 { font-size: var(--xt-fs-lg); }

/* --- Navigation ----------------------------------------------------------- */

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--xt-sp-xxs);
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: var(--xt-sp-sm) var(--xt-sp-md);
	background: var(--xt-surface-2);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
	font-family: Barlow, sans-serif;
	font-weight: 600;
	font-size: var(--xt-fs-sm);
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--xt-text);
	text-decoration: none;
	transition: border-color .15s ease, color .15s ease, background-color .15s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	border-color: var(--xt-muted);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	background: var(--xt-surface);
	border-color: var(--xt-red);
	color: var(--xt-red);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
	margin-top: var(--xt-sp-sm);
	background: transparent;
	border-style: dashed;
	color: var(--xt-muted);
}

/* --- Tables (orders, downloads, order details, claims) -------------------- */

.woocommerce-account .woocommerce table.shop_table,
.woocommerce-account .woocommerce table.woocommerce-orders-table,
.woocommerce-account .woocommerce table.woocommerce-MyAccount-downloads {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: var(--xt-surface);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
	overflow: hidden;
	margin: 0 0 var(--xt-sp-lg);
}

/* WooCommerce marks the order-number cell as a th inside tbody, so the body
   rule covers td and th together and the header rule re-specifies thead. */
.woocommerce-account .woocommerce table.shop_table td,
.woocommerce-account .woocommerce table.shop_table th,
.woocommerce-account .woocommerce table.woocommerce-orders-table td,
.woocommerce-account .woocommerce table.woocommerce-orders-table th {
	padding: var(--xt-sp-md);
	background: transparent;
	border-bottom: 1px solid var(--xt-line);
	font-family: Barlow, sans-serif;
	font-weight: 400;
	font-size: var(--xt-fs-sm);
	color: var(--xt-text);
	text-align: left;
	vertical-align: middle;
}

.woocommerce-account .woocommerce table.shop_table thead th,
.woocommerce-account .woocommerce table.woocommerce-orders-table thead th {
	padding: var(--xt-sp-sm) var(--xt-sp-md);
	background: var(--xt-surface-2);
	border-bottom: var(--xt-bw) solid var(--xt-line);
	font-family: "JetBrains Mono", monospace;
	font-size: var(--xt-fs-xs);
	letter-spacing: var(--xt-ls-wide);
	text-transform: uppercase;
	color: var(--xt-muted);
}

.woocommerce-account .woocommerce table.shop_table tbody tr:last-child td,
.woocommerce-account .woocommerce table.shop_table tbody tr:last-child th {
	border-bottom: 0;
}

/* Figures and identifiers are specifications: mono, tabular. */
.woocommerce-account .woocommerce-orders-table__cell-order-number a,
.woocommerce-account .woocommerce-orders-table__cell-order-date,
.woocommerce-account .woocommerce-orders-table__cell-order-total,
.woocommerce-account .woocommerce-table--order-details .amount,
.woocommerce-account .woocommerce-table--order-details tfoot th,
.woocommerce-account .woocommerce-table--order-details tfoot td {
	font-family: "JetBrains Mono", monospace;
	font-variant-numeric: tabular-nums;
}

.woocommerce-account .woocommerce-orders-table__cell-order-number a {
	color: var(--xt-text);
	text-decoration: none;
	font-weight: 700;
}

.woocommerce-account .woocommerce-orders-table__cell-order-number a:hover {
	color: var(--xt-red);
}

/* --- Order status --------------------------------------------------------- */
/* The dot marks real state, so it earns its place. Text stays full-contrast
   ink rather than tinted, which keeps yellow off a white ground. */

.woocommerce-account .woocommerce-orders-table__cell-order-status {
	font-family: "JetBrains Mono", monospace;
	font-size: var(--xt-fs-xs);
	letter-spacing: var(--xt-ls-wide);
	text-transform: uppercase;
	color: var(--xt-text);
	white-space: nowrap;
}

.woocommerce-account .woocommerce-orders-table__cell-order-status::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin-right: var(--xt-sp-xs);
	border-radius: 2px;
	background: var(--xt-muted);
	vertical-align: 1px;
}

.woocommerce-account .woocommerce-orders-table__row--status-completed .woocommerce-orders-table__cell-order-status::before { background: var(--xt-text); }
.woocommerce-account .woocommerce-orders-table__row--status-processing .woocommerce-orders-table__cell-order-status::before { background: var(--xt-yellow); }
.woocommerce-account .woocommerce-orders-table__row--status-on-hold .woocommerce-orders-table__cell-order-status::before { background: var(--xt-muted); }
.woocommerce-account .woocommerce-orders-table__row--status-cancelled .woocommerce-orders-table__cell-order-status::before,
.woocommerce-account .woocommerce-orders-table__row--status-failed .woocommerce-orders-table__cell-order-status::before,
.woocommerce-account .woocommerce-orders-table__row--status-refunded .woocommerce-orders-table__cell-order-status::before { background: var(--xt-red); }

/* Status on the single order view. */
.woocommerce-account mark.order-status,
.woocommerce-account mark.order-number,
.woocommerce-account mark.order-date {
	background: var(--xt-surface-2);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
	padding: 2px var(--xt-sp-xs);
	font-family: "JetBrains Mono", monospace;
	font-size: var(--xt-fs-xs);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--xt-text);
}

/* --- Buttons -------------------------------------------------------------- */

.woocommerce-account .woocommerce a.button,
.woocommerce-account .woocommerce button.button,
.woocommerce-account .woocommerce input[type="submit"],
.woocommerce-account .woocommerce button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: var(--xt-h-control);
	padding: 0 var(--xt-sp-lg);
	background-color: var(--xt-red);
	color: #ffffff;
	border: 0;
	border-bottom: var(--xt-bw-thick) solid var(--xt-red-dark);
	border-radius: var(--xt-r-sm);
	font-family: Anton, sans-serif;
	font-weight: 400;
	font-size: var(--xt-fs-base);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .15s ease;
}

.woocommerce-account .woocommerce a.button:hover,
.woocommerce-account .woocommerce button.button:hover,
.woocommerce-account .woocommerce input[type="submit"]:hover,
.woocommerce-account .woocommerce button[type="submit"]:hover {
	background-color: var(--xt-red-dark);
	color: #ffffff;
}

/* Row-level actions stay quiet so the page is not a wall of red. */
.woocommerce-account .woocommerce-orders-table__cell-order-actions a.button,
.woocommerce-account .woocommerce-MyAccount-downloads td a.button {
	min-height: 40px;
	padding: 0 var(--xt-sp-md);
	background: transparent;
	color: var(--xt-text);
	border: var(--xt-bw) solid var(--xt-line);
	font-family: Barlow, sans-serif;
	font-weight: 600;
	font-size: var(--xt-fs-sm);
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions a.button:hover,
.woocommerce-account .woocommerce-MyAccount-downloads td a.button:hover {
	background: transparent;
	border-color: var(--xt-red);
	color: var(--xt-red);
}

.woocommerce-account .woocommerce-orders-table__cell-order-actions a.button + a.button {
	margin-left: var(--xt-sp-xs);
}

/* --- Forms ---------------------------------------------------------------- */

.woocommerce-account .woocommerce form .form-row label,
.woocommerce-account .woocommerce form label {
	display: block;
	margin: 0 0 var(--xt-sp-xs);
	font-family: "JetBrains Mono", monospace;
	font-size: var(--xt-fs-xs);
	letter-spacing: var(--xt-ls-wide);
	text-transform: uppercase;
	color: var(--xt-muted);
}

.woocommerce-account .woocommerce form label abbr.required {
	color: var(--xt-red);
	border: 0;
	text-decoration: none;
}

.woocommerce-account .woocommerce input[type="text"],
.woocommerce-account .woocommerce input[type="email"],
.woocommerce-account .woocommerce input[type="tel"],
.woocommerce-account .woocommerce input[type="password"],
.woocommerce-account .woocommerce select,
.woocommerce-account .woocommerce textarea,
.woocommerce-account .woocommerce .select2-container .select2-selection {
	width: 100%;
	min-height: var(--xt-h-control);
	padding: 0 var(--xt-sp-sm);
	background: var(--xt-surface);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-base);
	color: var(--xt-text);
}

.woocommerce-account .woocommerce textarea {
	padding: var(--xt-sp-sm);
	min-height: 120px;
	line-height: var(--xt-lh-body);
}

.woocommerce-account .woocommerce input:focus,
.woocommerce-account .woocommerce select:focus,
.woocommerce-account .woocommerce textarea:focus {
	border-color: var(--xt-red);
	outline: none;
}

.woocommerce-account .woocommerce input:focus-visible,
.woocommerce-account .woocommerce select:focus-visible,
.woocommerce-account .woocommerce textarea:focus-visible,
.woocommerce-account .woocommerce a.button:focus-visible,
.woocommerce-account .woocommerce button:focus-visible {
	outline: var(--xt-bw) solid var(--xt-red);
	outline-offset: 2px;
}

.woocommerce-account .woocommerce fieldset {
	margin: var(--xt-sp-xl) 0 0;
	padding: var(--xt-sp-lg) 0 0;
	border: 0;
	border-top: var(--xt-bw) solid var(--xt-line);
}

.woocommerce-account .woocommerce fieldset legend {
	padding: 0;
	font-family: Anton, sans-serif;
	font-size: var(--xt-fs-md);
	text-transform: uppercase;
	color: var(--xt-text);
}

.woocommerce-account .woocommerce form.woocommerce-EditAccountForm .form-row,
.woocommerce-account .woocommerce form.woocommerce-address-fields .form-row {
	margin: 0 0 var(--xt-sp-md);
}

.woocommerce-account .woocommerce span.description,
.woocommerce-account .woocommerce em {
	display: block;
	margin-top: var(--xt-sp-xs);
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-xs);
	font-style: normal;
	color: var(--xt-muted);
}

/* --- Addresses ------------------------------------------------------------ */

.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--xt-sp-xl);
	margin-top: var(--xt-sp-lg);
}

.woocommerce-account .woocommerce-Address-title {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: var(--xt-sp-md);
	padding-bottom: var(--xt-sp-xs);
	border-bottom: var(--xt-bw) solid var(--xt-line);
}

.woocommerce-account .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-Address-title h3 {
	margin: 0;
	font-size: var(--xt-fs-md);
}

.woocommerce-account .woocommerce-Address-title a {
	font-family: "JetBrains Mono", monospace;
	font-size: var(--xt-fs-xs);
	letter-spacing: var(--xt-ls-wide);
	text-transform: uppercase;
	color: var(--xt-red);
	text-decoration: none;
	white-space: nowrap;
}

.woocommerce-account .woocommerce-Address address {
	margin-top: var(--xt-sp-md);
	font-family: Barlow, sans-serif;
	font-style: normal;
	line-height: var(--xt-lh-body);
	color: var(--xt-text);
}

.woocommerce-account .woocommerce-customer-details .woocommerce-column__title {
	font-size: var(--xt-fs-md);
}

/* --- Notices -------------------------------------------------------------- */

.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--xt-sp-md);
	margin: 0 0 var(--xt-sp-lg);
	padding: var(--xt-sp-md) var(--xt-sp-lg);
	background: var(--xt-surface);
	border: var(--xt-bw) solid var(--xt-line);
	border-left-width: var(--xt-bw-thick);
	border-radius: var(--xt-r-sm);
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-sm);
	color: var(--xt-text);
	list-style: none;
}

.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before {
	display: none;
}

.woocommerce-account .woocommerce-message { border-left-color: var(--xt-text); }
.woocommerce-account .woocommerce-info { border-left-color: var(--xt-yellow); }
.woocommerce-account .woocommerce-error { border-left-color: var(--xt-red); }

.woocommerce-account .woocommerce-message .button,
.woocommerce-account .woocommerce-info .button {
	margin-left: auto;
}

/* --- Pagination ----------------------------------------------------------- */

.woocommerce-account .woocommerce-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	gap: var(--xt-sp-xxs);
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-pagination li { border: 0; margin: 0; }

.woocommerce-account .woocommerce-pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 var(--xt-sp-xs);
	background: var(--xt-surface);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
	font-family: "JetBrains Mono", monospace;
	font-size: var(--xt-fs-sm);
	color: var(--xt-text);
	text-decoration: none;
}

.woocommerce-account .woocommerce-pagination .page-numbers.current {
	border-color: var(--xt-red);
	color: var(--xt-red);
}

/* --- Login / register ----------------------------------------------------- */

/* Two columns, side by side, equal height. */
.woocommerce-account #customer_login.u-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--xt-sp-xl);
	align-items: stretch;
}

.woocommerce-account #customer_login > .u-column1,
.woocommerce-account #customer_login > .u-column2 {
	display: flex;
	flex-direction: column;
	width: auto;
	float: none;
	margin: 0;
	padding: 0;
}

.woocommerce-account #customer_login > div > h2 {
	margin: 0 0 var(--xt-sp-md);
	font-family: Anton, sans-serif;
	font-weight: 400;
	font-size: var(--xt-fs-2xl);
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--xt-text);
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	max-width: none;
	padding: var(--xt-sp-xl);
	background: var(--xt-surface);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
}

/* Submit pinned to the bottom so both cards align. */
.woocommerce-account .woocommerce-form-login .form-row:has(button),
.woocommerce-account .woocommerce-form-register .woocommerce-form-row:has(button) {
	margin-top: auto;
	margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-login button.woocommerce-form-login__submit,
.woocommerce-account .woocommerce-form-register button.woocommerce-form-register__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	height: var(--xt-h-control);
	min-height: var(--xt-h-control);
	margin-top: var(--xt-sp-md);
	padding: 0 var(--xt-sp-lg);
	background-color: var(--xt-red);
	color: #ffffff;
	border: 0;
	border-bottom: var(--xt-bw-thick) solid var(--xt-red-dark);
	border-radius: var(--xt-r-sm);
	font-family: Anton, sans-serif;
	font-weight: 400;
	font-size: var(--xt-fs-base);
	letter-spacing: 0.01em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.woocommerce-account .woocommerce-form-login button.woocommerce-form-login__submit:hover,
.woocommerce-account .woocommerce-form-register button.woocommerce-form-register__submit:hover {
	background-color: var(--xt-red-dark);
}

/* Remember me on one row, lost password beneath. */
.woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--xt-sp-sm);
	margin-bottom: 0;
}

.woocommerce-account .woocommerce-form-login .lost_password {
	margin: var(--xt-sp-xs) 0 0;
}

.woocommerce-account .woocommerce-form-login .lost_password a {
	color: var(--xt-red);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Register helper copy. */
.woocommerce-account .woocommerce-form-register > p:not([class]) {
	margin: 0;
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-sm);
	color: var(--xt-muted);
}

.woocommerce-account .woocommerce-form-login__rememberme,
.woocommerce-account .woocommerce-form-login .lost_password a {
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-sm);
	color: var(--xt-muted);
	text-transform: none;
	letter-spacing: 0;
}

.woocommerce-account .woocommerce-form-login input[type="checkbox"] {
	width: auto;
	min-height: 0;
	margin-right: var(--xt-sp-xs);
}

/* --- Responsive ----------------------------------------------------------- */

@media (max-width: 900px) {
	.woocommerce-account #customer_login.u-columns {
		grid-template-columns: 1fr;
		gap: var(--xt-sp-lg);
	}

	.woocommerce-account .woocommerce:has(.woocommerce-MyAccount-navigation) {
		grid-template-columns: 1fr;
		gap: var(--xt-sp-lg);
	}

	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
		margin-top: 0;
	}

	.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
		gap: var(--xt-sp-lg);
	}
}

@media (max-width: 640px) {
	.woocommerce-account .woocommerce table.shop_table thead,
	.woocommerce-account .woocommerce table.woocommerce-orders-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.woocommerce-account .woocommerce table.shop_table tbody tr {
		display: block;
		padding: var(--xt-sp-md);
		border-bottom: var(--xt-bw) solid var(--xt-line);
	}

	.woocommerce-account .woocommerce table.shop_table tbody tr:last-child {
		border-bottom: 0;
	}

	.woocommerce-account .woocommerce table.shop_table tbody td,
	.woocommerce-account .woocommerce table.shop_table tbody th {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: var(--xt-sp-md);
		padding: var(--xt-sp-xs) 0;
		border: 0;
		text-align: right;
	}

	.woocommerce-account .woocommerce table.shop_table tbody td::before,
	.woocommerce-account .woocommerce table.shop_table tbody th::before {
		content: attr(data-title);
		flex: 0 0 auto;
		font-family: "JetBrains Mono", monospace;
		font-size: var(--xt-fs-xs);
		letter-spacing: var(--xt-ls-wide);
		text-transform: uppercase;
		color: var(--xt-muted);
		text-align: left;
	}

	/* The label replaces the state dot at this width. */
	.woocommerce-account .woocommerce-orders-table__cell-order-status::before {
		width: auto;
		height: auto;
		margin-right: 0;
		background: none;
		border-radius: 0;
		vertical-align: baseline;
	}

	.woocommerce-account .woocommerce-orders-table__cell-order-actions {
		justify-content: flex-end;
		padding-top: var(--xt-sp-sm);
	}

	.woocommerce-account .woocommerce-orders-table__cell-order-actions::before {
		display: none;
	}

	.woocommerce-account .woocommerce-form-login,
	.woocommerce-account .woocommerce-form-register {
		padding: var(--xt-sp-lg);
	}
}


/* --- Support band --------------------------------------------------------- */

.woocommerce-account .xt-help-band {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--xt-sp-lg);
	margin-top: var(--xt-sp-3xl);
	padding-top: var(--xt-sp-2xl);
	border-top: var(--xt-bw) solid var(--xt-line);
	align-items: stretch;
}

.woocommerce-account .xt-help-promo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: var(--xt-sp-sm);
	padding: var(--xt-sp-xl);
	background: var(--xt-red);
	border-radius: var(--xt-r-sm);
	border-bottom: var(--xt-bw-thick) solid var(--xt-red-dark);
}

.woocommerce-account .xt-help-title {
	margin: 0;
	font-family: Anton, sans-serif;
	font-weight: 400;
	font-size: var(--xt-fs-2xl);
	line-height: 1.05;
	text-transform: uppercase;
	color: #ffffff;
}

.woocommerce-account .xt-help-copy {
	margin: 0;
	font-family: Barlow, sans-serif;
	font-size: var(--xt-fs-base);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
}

.woocommerce-account .xt-help-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: var(--xt-sp-sm);
	padding: var(--xt-sp-xl);
	background: var(--xt-surface);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
}

.woocommerce-account .xt-help-email {
	font-family: Anton, sans-serif;
	font-size: var(--xt-fs-xl);
	letter-spacing: 0.01em;
	color: var(--xt-text);
	text-decoration: none;
	word-break: break-word;
}

.woocommerce-account .xt-help-email:hover {
	color: var(--xt-red);
}

.woocommerce-account .xt-help-social {
	font-family: 'JetBrains Mono', monospace;
	font-size: var(--xt-fs-sm);
	letter-spacing: var(--xt-ls-wide);
	text-transform: uppercase;
	color: var(--xt-muted);
}

.woocommerce-account .xt-help-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: var(--xt-h-control);
	margin-top: var(--xt-sp-xs);
	padding: 0 var(--xt-sp-lg);
	background: var(--xt-surface);
	color: var(--xt-text);
	border: var(--xt-bw) solid var(--xt-line);
	border-radius: var(--xt-r-sm);
	font-family: Barlow, sans-serif;
	font-weight: 700;
	font-size: var(--xt-fs-sm);
	letter-spacing: var(--xt-ls-wide);
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.15s ease, border-color 0.15s ease;
}

.woocommerce-account .xt-help-cta:hover {
	color: var(--xt-red);
	border-color: var(--xt-red);
}

@media (max-width: 900px) {
	.woocommerce-account .xt-help-band {
		grid-template-columns: 1fr;
		gap: var(--xt-sp-md);
	}
}
