/**
 * A4N Next — AccountShell v9.
 * Presentation only: WooCommerce and LootDojo remain owners of account data.
 */

.a4n-account-v9 {
	--account-action: #b51224;
	--account-action-hover: #8e0c19;
	--account-link: var(--a4n-brand-dark, #ad101e);
	--account-focus: var(--a4n-focus, #155eef);
	--account-gold: #f3ad32;
	--account-ink: var(--a4n-ink, #101522);
	--account-muted: var(--a4n-muted, #596171);
	--account-line: color-mix(in srgb, var(--account-ink) 13%, transparent);
	--account-surface: var(--a4n-surface, #ffffff);
	--account-surface-soft: var(--a4n-subtle, #f7f4ef);
	--account-shadow: 0 1.5rem 4rem rgba(13, 18, 29, 0.1);
	--woocommerce: var(--account-action);
	--wc-primary: var(--account-action);
	--wc-primary-text: #ffffff;
	--wc-secondary: var(--account-surface-soft);
	--wc-secondary-text: var(--account-ink);
	background: var(--account-surface-soft);
}

:root[data-theme="dark"] .a4n-account-v9,
.dark-mode .a4n-account-v9,
.a4n-theme-dark .a4n-account-v9 {
	--account-action: #d51c31;
	--account-action-hover: #b31125;
	--account-focus: #8fb7ff;
	--account-gold: #ffc45b;
	--account-ink: var(--a4n-ink, #f5f7fb);
	--account-muted: var(--a4n-muted, #b6bfcc);
	--account-line: rgba(255, 255, 255, 0.13);
	--account-surface: var(--a4n-surface, #151b25);
	--account-surface-soft: var(--a4n-subtle, #0c121c);
	--account-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.3);
	--wc-content-bg: var(--account-surface);
	--wc-subtext: var(--account-muted);
}

main.account-page-v9 {
	min-height: 60vh;
	overflow: clip;
	background: var(--account-surface-soft);
	color: var(--account-ink);
}

.account-hero-v9 {
	position: relative;
	isolation: isolate;
	display: grid;
	min-height: clamp(15rem, 27vw, 20rem);
	align-items: end;
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(circle at 78% 25%, rgba(243, 173, 50, 0.2), transparent 24rem),
		radial-gradient(circle at 18% 108%, rgba(213, 28, 49, 0.34), transparent 29rem),
		linear-gradient(120deg, #070b13 0%, #0c1421 55%, #17130e 100%);
}

.account-hero-v9::before {
	position: absolute;
	z-index: -2;
	inset: 0;
	content: "";
	opacity: 0.28;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 4rem 4rem;
	mask-image: linear-gradient(90deg, transparent 5%, #000 70%);
}

.account-hero-v9::after {
	position: absolute;
	z-index: -1;
	inset: auto -12% -70% 34%;
	width: 72%;
	aspect-ratio: 2 / 1;
	content: "";
	border: 2px dashed rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	transform: rotate(-7deg);
}

.account-hero-v9__inner {
	position: relative;
	width: min(100% - 2rem, 75rem);
	margin-inline: auto;
	padding-block: clamp(3.5rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4.25rem);
}

.account-hero-v9__copy {
	position: relative;
	z-index: 2;
	max-width: 46rem;
}

.account-hero-v9__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	margin: 0 0 0.8rem;
	color: var(--account-gold);
	font-size: clamp(0.75rem, 1vw, 0.875rem);
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.25;
	text-transform: uppercase;
}

.account-hero-v9__eyebrow::before {
	width: 1.8rem;
	height: 2px;
	content: "";
	background: currentColor;
}

.account-hero-v9__title {
	max-width: 17ch;
	margin: 0;
	color: #ffffff;
	font-size: clamp(2.25rem, 6vw, 4.75rem);
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 0.98;
	text-wrap: balance;
}

.account-hero-v9__copy > p:last-child {
	max-width: 43rem;
	margin: 1.25rem 0 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: clamp(1rem, 1.7vw, 1.18rem);
	line-height: 1.65;
	text-wrap: pretty;
}

.account-hero-v9__orbit {
	position: absolute;
	right: clamp(0rem, 4vw, 3rem);
	bottom: clamp(1rem, 3vw, 2.5rem);
	width: clamp(8rem, 20vw, 15rem);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	box-shadow:
		0 0 0 clamp(1rem, 3vw, 2.5rem) rgba(255, 255, 255, 0.035),
		0 0 0 clamp(2.4rem, 6vw, 5rem) rgba(255, 255, 255, 0.02);
}

.account-hero-v9__orbit::before,
.account-hero-v9__orbit::after {
	position: absolute;
	content: "";
	border-radius: 50%;
}

.account-hero-v9__orbit::before {
	width: 0.9rem;
	aspect-ratio: 1;
	top: 5%;
	left: 22%;
	background: var(--account-gold);
	box-shadow: 0 0 1.5rem rgba(243, 173, 50, 0.9);
}

.account-hero-v9__orbit::after {
	width: 0.65rem;
	aspect-ratio: 1;
	right: 9%;
	bottom: 21%;
	background: #e11d36;
	box-shadow: 0 0 1.25rem rgba(225, 29, 54, 0.85);
}

.account-page-v9__workspace {
	width: 100%;
	padding-block: clamp(2rem, 5vw, 5rem);
}

.account-shell-v9 {
	min-width: 0;
}

.account-shell-v9 > .woocommerce {
	min-width: 0;
}

.account-shell-v9--authenticated > .woocommerce {
	display: grid;
	grid-template-columns: minmax(15rem, 17rem) minmax(0, 1fr);
	gap: clamp(1rem, 2.5vw, 2rem);
	align-items: start;
}

.account-shell-v9--authenticated > .woocommerce::before,
.account-shell-v9--authenticated > .woocommerce::after {
	display: none;
	content: none;
}

.account-shell-v9 .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}

.account-shell-v9 .woocommerce-notices-wrapper:empty {
	display: none;
}

.account-shell-v9--authenticated > .woocommerce > .woocommerce-error,
.account-shell-v9--authenticated > .woocommerce > .woocommerce-info,
.account-shell-v9--authenticated > .woocommerce > .woocommerce-message {
	grid-column: 1 / -1;
}

.account-shell-v9 .woocommerce-MyAccount-navigation {
	position: sticky;
	top: calc(var(--a4n-header-height, 5rem) + 1rem);
	float: none;
	width: auto;
	padding: 0.55rem;
	border: 1px solid var(--account-line);
	border-radius: 1.35rem;
	background: var(--account-surface);
	box-shadow: 0 0.8rem 2.4rem rgba(13, 18, 29, 0.07);
}

.account-shell-v9 .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.account-shell-v9 .woocommerce-MyAccount-navigation li {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
}

.account-shell-v9 .woocommerce-MyAccount-navigation a {
	position: relative;
	display: flex;
	min-height: 3rem;
	align-items: center;
	padding: 0.72rem 0.9rem 0.72rem 1rem;
	border-radius: 0.85rem;
	color: var(--account-muted);
	font-weight: 750;
	line-height: 1.3;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.account-shell-v9 .woocommerce-MyAccount-navigation a:hover {
	color: var(--account-link);
	background: color-mix(in srgb, var(--account-action) 8%, transparent);
	transform: translateX(0.15rem);
}

.account-shell-v9 .woocommerce-MyAccount-navigation a:focus-visible,
.account-shell-v9 a:focus-visible,
.account-shell-v9 button:focus-visible,
.account-shell-v9 input:focus-visible,
.account-shell-v9 select:focus-visible,
.account-shell-v9 textarea:focus-visible,
.account-table-scroll-v9:focus-visible {
	outline: 3px solid var(--account-focus);
	outline-offset: 3px;
}

.account-shell-v9 .woocommerce-MyAccount-navigation .is-active > a {
	color: #ffffff;
	background: linear-gradient(135deg, var(--account-action), color-mix(in srgb, var(--account-action) 76%, #38111a));
	box-shadow: 0 0.6rem 1.4rem color-mix(in srgb, var(--account-action) 22%, transparent);
}

.account-shell-v9 .woocommerce-MyAccount-navigation-link--customer-logout > a {
	margin-top: 0.35rem;
	color: var(--account-muted);
	font-weight: 650;
}

.account-shell-v9 .woocommerce-MyAccount-content {
	float: none;
	min-width: 0;
	width: auto;
	padding: clamp(1.25rem, 3vw, 2.35rem);
	border: 1px solid var(--account-line);
	border-radius: 1.5rem;
	background: var(--account-surface);
	box-shadow: var(--account-shadow);
}

.account-shell-v9 .woocommerce-MyAccount-content > :first-child,
.account-shell-v9 .woocommerce-MyAccount-content > form > :first-child {
	margin-top: 0;
}

.account-shell-v9 .woocommerce-MyAccount-content > :last-child,
.account-shell-v9 .woocommerce-MyAccount-content > form > :last-child {
	margin-bottom: 0;
}

.account-shell-v9 h2,
.account-shell-v9 h3,
.account-shell-v9 h4 {
	color: var(--account-ink);
	letter-spacing: -0.025em;
}

.account-shell-v9 p,
.account-shell-v9 address,
.account-shell-v9 .woocommerce-form-row,
.account-shell-v9 .form-row {
	color: var(--account-muted);
}

.account-dashboard-v9__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--account-line);
}

.account-dashboard-v9__header h2 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.65rem, 3vw, 2.25rem);
	line-height: 1.1;
}

.account-dashboard-v9__header p {
	max-width: 44rem;
	margin: 0;
	line-height: 1.65;
}

.account-dashboard-v9__logout {
	flex: 0 0 auto;
	padding: 0.45rem 0.7rem;
	border-radius: 0.65rem;
	color: var(--account-muted);
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
}

.account-dashboard-v9__logout:hover {
	color: var(--account-link);
	background: color-mix(in srgb, var(--account-action) 8%, transparent);
}

.account-shortcuts-v9 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin-top: 1.5rem;
}

.account-shortcut-v9 {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 0.85rem;
	align-items: center;
	min-height: 7.25rem;
	padding: 1.1rem;
	border: 1px solid var(--account-line);
	border-radius: 1.1rem;
	color: var(--account-ink);
	background: linear-gradient(145deg, var(--account-surface), color-mix(in srgb, var(--account-surface-soft) 78%, var(--account-surface)));
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.account-shortcut-v9:hover {
	border-color: color-mix(in srgb, var(--account-action) 48%, var(--account-line));
	color: var(--account-ink);
	box-shadow: 0 1rem 2.2rem rgba(13, 18, 29, 0.1);
	transform: translateY(-0.18rem);
}

.account-shortcut-v9__icon {
	position: relative;
	display: grid;
	width: 2.85rem;
	aspect-ratio: 1;
	place-items: center;
	border-radius: 0.9rem;
	color: var(--account-action);
	background: color-mix(in srgb, var(--account-action) 10%, var(--account-surface));
}

.account-shortcut-v9__icon::before {
	width: 0.8rem;
	aspect-ratio: 1;
	content: "";
	border: 2px solid currentColor;
	border-radius: 0.2rem;
	transform: rotate(45deg);
}

.account-shortcut-v9__icon--receipt::before {
	height: 0.9rem;
	border-radius: 0.1rem;
	transform: none;
	box-shadow: inset 0 0.23rem transparent, 0 0.28rem 0 -0.12rem currentColor;
}

.account-shortcut-v9__icon--pin::before {
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
}

.account-shortcut-v9__icon--user::before {
	border-radius: 50%;
	transform: none;
}

.account-shortcut-v9__body {
	min-width: 0;
}

.account-shortcut-v9__body strong,
.account-shortcut-v9__body span {
	display: block;
}

.account-shortcut-v9__body strong {
	margin-bottom: 0.25rem;
	font-size: 1rem;
	line-height: 1.3;
}

.account-shortcut-v9__body span {
	color: var(--account-muted);
	font-size: 0.875rem;
	line-height: 1.45;
}

.account-shortcut-v9__arrow {
	color: var(--account-action);
	font-size: 1.35rem;
	line-height: 1;
	transition: transform 180ms ease;
}

.account-shortcut-v9:hover .account-shortcut-v9__arrow {
	transform: translateX(0.2rem);
}

.account-shell-v9--guest:not(.account-shell-v9--lost-password) {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
	gap: clamp(1rem, 3vw, 2rem);
	align-items: stretch;
}

.account-shell-v9--guest > .woocommerce,
.account-context-v9 {
	min-width: 0;
	padding: clamp(1.3rem, 3vw, 2.35rem);
	border: 1px solid var(--account-line);
	border-radius: 1.5rem;
	background: var(--account-surface);
	box-shadow: var(--account-shadow);
}

.account-shell-v9--lost-password > .woocommerce {
	display: block;
	max-width: 44rem;
	margin-inline: auto;
}

.account-context-v9 {
	position: relative;
	overflow: hidden;
	color: #ffffff;
	background:
		radial-gradient(circle at 105% 0%, rgba(243, 173, 50, 0.27), transparent 17rem),
		linear-gradient(145deg, #0a101a, #141c29);
}

.account-context-v9::after {
	position: absolute;
	right: -4rem;
	bottom: -5rem;
	width: 12rem;
	aspect-ratio: 1;
	content: "";
	border: 1px dashed rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.account-context-v9 h2 {
	position: relative;
	z-index: 1;
	margin: 0 0 0.6rem;
	color: #ffffff;
	font-size: clamp(1.45rem, 3vw, 2rem);
}

.account-context-v9 > p {
	position: relative;
	z-index: 1;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.account-context-v9__items {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0.8rem;
	margin: 1.5rem 0 0;
	padding: 0;
	list-style: none;
}

.account-context-v9__item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.75rem;
	align-items: start;
	padding: 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.11);
	border-radius: 0.9rem;
	background: rgba(255, 255, 255, 0.045);
}

.account-context-v9__item h3,
.account-context-v9__item p {
	display: block;
	margin: 0;
}

.account-shell-v9 .account-context-v9__item h3 {
	color: #ffffff;
	font-size: 0.95rem;
	letter-spacing: -0.01em;
	line-height: 1.35;
}

.account-shell-v9 .account-context-v9__item p {
	margin-top: 0.16rem;
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.84rem;
	line-height: 1.45;
}

.account-context-v9__marker {
	width: 0.65rem;
	aspect-ratio: 1;
	margin-top: 0.32rem;
	border: 2px solid var(--account-gold);
	border-radius: 50%;
	box-shadow: 0 0 0 0.28rem rgba(243, 173, 50, 0.1);
}

.account-shell-v9 .woocommerce > h2:first-of-type,
.account-shell-v9 .woocommerce-ResetPassword > h2:first-of-type {
	margin: 0 0 1rem;
	font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.account-shell-v9 form.login,
.account-shell-v9 form.lost_reset_password,
.account-shell-v9 form.edit-account,
.account-shell-v9 form.woocommerce-address-fields {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

.account-shell-v9 form .form-row,
.account-shell-v9 form .woocommerce-form-row {
	float: none;
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
}

.account-shell-v9 form label {
	display: block;
	margin-bottom: 0.42rem;
	color: var(--account-ink);
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1.4;
}

.account-shell-v9 form label.inline,
.account-shell-v9 .woocommerce-form-login__rememberme {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0.65rem 0;
	color: var(--account-muted);
	font-weight: 600;
}

.account-shell-v9 input[type="text"],
.account-shell-v9 input[type="email"],
.account-shell-v9 input[type="tel"],
.account-shell-v9 input[type="password"],
.account-shell-v9 input[type="search"],
.account-shell-v9 input[type="number"],
.account-shell-v9 select,
.account-shell-v9 textarea,
.account-shell-v9 .select2-container .select2-selection {
	width: 100%;
	min-height: 3.15rem;
	padding: 0.72rem 0.85rem;
	border: 1px solid var(--account-line);
	border-radius: 0.78rem;
	color: var(--account-ink);
	background: var(--account-surface-soft);
	box-shadow: none;
}

.account-shell-v9 textarea {
	min-height: 8rem;
	resize: vertical;
}

.account-shell-v9 input::placeholder,
.account-shell-v9 textarea::placeholder {
	color: color-mix(in srgb, var(--account-muted) 72%, transparent);
}

.account-shell-v9 input[type="checkbox"],
.account-shell-v9 input[type="radio"] {
	flex: 0 0 auto;
	width: auto;
	min-width: 1rem;
	height: auto;
	min-height: 0;
	margin: 0;
	padding: 0;
	accent-color: var(--account-action);
}

.account-shell-v9 fieldset {
	margin: 1.5rem 0;
	padding: 1.2rem;
	border: 1px solid var(--account-line);
	border-radius: 1rem;
}

.account-shell-v9 legend {
	padding-inline: 0.45rem;
	color: var(--account-ink);
	font-weight: 800;
}

.account-shell-v9 .password-input {
	display: block;
	width: 100%;
}

.account-shell-v9 .show-password-input {
	top: 50%;
	transform: translateY(-50%);
}

.account-shell-v9 .button,
.account-shell-v9 button.button,
.account-shell-v9 input.button,
.account-shell-v9 .woocommerce-button {
	display: inline-flex;
	min-height: 3rem;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.1rem;
	border: 1px solid var(--account-action);
	border-radius: 0.78rem;
	color: #ffffff !important;
	background: var(--account-action) !important;
	box-shadow: 0 0.65rem 1.4rem color-mix(in srgb, var(--account-action) 18%, transparent);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.account-shell-v9 .button:hover,
.account-shell-v9 button.button:hover,
.account-shell-v9 input.button:hover,
.account-shell-v9 .woocommerce-button:hover {
	border-color: var(--account-action-hover);
	color: #ffffff !important;
	background: var(--account-action-hover) !important;
	box-shadow: 0 0.8rem 1.8rem color-mix(in srgb, var(--account-action) 25%, transparent);
	transform: translateY(-1px);
}

.account-shell-v9 .account-dashboard-v9__logout.button {
	min-height: auto;
	padding: 0.45rem 0.7rem;
	border-color: transparent;
	color: var(--account-muted) !important;
	background: transparent !important;
	box-shadow: none;
}

.account-shell-v9 .account-dashboard-v9__logout.button:hover {
	border-color: transparent;
	color: var(--account-link) !important;
	background: color-mix(in srgb, var(--account-action) 8%, transparent) !important;
	box-shadow: none;
	transform: none;
}

.account-shell-v9 .lost_password {
	margin: 1rem 0 0;
}

.account-shell-v9 .woocommerce-MyAccount-content a:not(.button):not(.account-shortcut-v9),
.account-shell-v9--guest > .woocommerce a:not(.button) {
	color: var(--account-link);
	text-underline-offset: 0.18em;
}

.account-shell-v9 .woocommerce-error,
.account-shell-v9 .woocommerce-info,
.account-shell-v9 .woocommerce-message {
	margin: 0 0 1.25rem;
	padding: 1rem 1rem 1rem 3rem;
	border: 1px solid var(--account-line);
	border-top: 0;
	border-left: 4px solid var(--account-action);
	border-radius: 0.85rem;
	color: var(--account-ink);
	background: var(--account-surface);
	box-shadow: 0 0.75rem 2rem rgba(13, 18, 29, 0.07);
}

.account-shell-v9 .woocommerce-message {
	border-left-color: #16835c;
}

.account-shell-v9 .woocommerce-info {
	border-left-color: #2563a8;
}

.account-shell-v9 .woocommerce-error {
	border-left-color: var(--account-action);
}

.account-shell-v9 .woocommerce-error::before,
.account-shell-v9 .woocommerce-info::before,
.account-shell-v9 .woocommerce-message::before {
	top: 1rem;
	left: 1rem;
}

.account-shell-v9 table.shop_table,
.account-shell-v9 table.woocommerce-orders-table,
.account-shell-v9 .ldc-account-content table {
	width: 100%;
	margin: 0 0 1.25rem;
	border: 1px solid var(--account-line);
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 1rem;
	color: var(--account-ink);
	background: var(--account-surface);
}

.account-shell-v9 table th,
.account-shell-v9 table td {
	padding: 0.85rem 0.9rem;
	border-color: var(--account-line);
	vertical-align: middle;
}

.account-shell-v9 table th {
	color: var(--account-ink);
	background: color-mix(in srgb, var(--account-surface-soft) 85%, var(--account-surface));
	font-size: 0.82rem;
	font-weight: 850;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.account-shell-v9 table td {
	color: var(--account-muted);
}

.account-shell-v9 table tr:last-child td:first-child {
	border-bottom-left-radius: 0.95rem;
}

.account-shell-v9 table tr:last-child td:last-child {
	border-bottom-right-radius: 0.95rem;
}

.account-shell-v9 .woocommerce-orders-table__cell-order-actions .button {
	min-height: 2.35rem;
	margin: 0.15rem;
	padding: 0.55rem 0.75rem;
	font-size: 0.82rem;
}

.account-shell-v9 .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	align-items: stretch;
}

.account-shell-v9 .woocommerce-Addresses::before,
.account-shell-v9 .woocommerce-Addresses::after {
	display: none;
	content: none;
}

.a4n-account-v9 .account-shell-v9 .woocommerce-Addresses > .woocommerce-Address {
	float: none;
	width: 100%;
	max-width: none;
	min-width: 0;
	margin: 0;
	padding: 1.1rem;
	border: 1px solid var(--account-line);
	border-radius: 1rem;
	background: var(--account-surface-soft);
}

.account-shell-v9 .woocommerce-Address-title {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.account-shell-v9 .woocommerce-Address-title::before,
.account-shell-v9 .woocommerce-Address-title::after {
	display: none;
	content: none;
}

.account-shell-v9 .woocommerce-Address-title h2,
.account-shell-v9 .woocommerce-Address-title h3 {
	float: none;
	min-width: 0;
	margin: 0;
	font-size: clamp(1.15rem, 1.7vw, 1.4rem);
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.account-shell-v9 .woocommerce-Address-title .edit {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	float: none;
	min-height: 2.25rem;
	padding: 0.38rem 0.65rem;
	border: 1px solid color-mix(in srgb, var(--account-link) 30%, var(--account-line));
	border-radius: 0.65rem;
	background: color-mix(in srgb, var(--account-link) 7%, transparent);
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.2;
	max-width: 100%;
	text-decoration: none;
	white-space: nowrap;
}

.account-shell-v9 .woocommerce-Address-title .edit:hover {
	border-color: color-mix(in srgb, var(--account-link) 55%, var(--account-line));
	background: color-mix(in srgb, var(--account-link) 12%, transparent);
}

.account-shell-v9 .woocommerce-Address address {
	margin: 1rem 0 0;
	color: var(--account-muted);
	font-style: normal;
	line-height: 1.7;
	overflow-wrap: anywhere;
}

.account-shell-v9 .select2-container {
	max-width: 100%;
}

.account-shell-v9 .select2-container .select2-selection {
	display: flex;
	align-items: center;
	padding-block: 0.35rem;
}

.account-shell-v9 .select2-container .select2-selection__rendered {
	color: var(--account-ink);
	line-height: 2.25rem;
}

.account-shell-v9 .select2-container .select2-selection__arrow {
	top: 50%;
	right: 0.5rem;
	transform: translateY(-50%);
}

.a4n-account-v9 .select2-dropdown {
	border-color: var(--account-line);
	color: var(--account-ink);
	background: var(--account-surface);
}

.a4n-account-v9 .select2-search__field {
	border-color: var(--account-line) !important;
	color: var(--account-ink);
	background: var(--account-surface-soft);
}

.a4n-account-v9 .select2-results__option {
	color: var(--account-ink);
	background: var(--account-surface);
}

.a4n-account-v9 .select2-results__option[aria-selected="true"],
.a4n-account-v9 .select2-results__option[data-selected="true"] {
	background: color-mix(in srgb, var(--account-link) 12%, var(--account-surface));
}

.a4n-account-v9 .select2-results__option--highlighted[aria-selected],
.a4n-account-v9 .select2-results__option--highlighted[data-selected] {
	color: #ffffff;
	background: var(--account-action);
}

.account-shell-v9 .ldc-account-content {
	min-width: 0;
	max-width: 100%;
}

.account-table-scroll-v9,
.account-shell-v9 .ldc-account-content {
	max-width: 100%;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scrollbar-gutter: stable;
	-webkit-overflow-scrolling: touch;
}

.account-table-scroll-v9 {
	margin-bottom: 1.25rem;
	border-radius: 1rem;
}

.account-table-scroll-v9 table {
	margin-bottom: 0 !important;
}

.account-table-scroll-v9[tabindex="0"] {
	background:
		linear-gradient(90deg, var(--account-surface), transparent 1.5rem) left center / 2.5rem 100% no-repeat,
		linear-gradient(270deg, var(--account-surface), transparent 1.5rem) right center / 2.5rem 100% no-repeat;
}

@media (max-width: 72rem) {
	.account-shell-v9 .woocommerce-Addresses {
		grid-template-columns: minmax(0, 1fr);
	}
}
@media (max-width: 60rem) {
	.account-shell-v9--authenticated > .woocommerce {
		grid-template-columns: minmax(13.5rem, 15rem) minmax(0, 1fr);
	}

	.account-shortcuts-v9 {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 48rem) {
	.account-hero-v9 {
		min-height: 15rem;
	}

	.account-hero-v9__orbit {
		right: -2.5rem;
		bottom: -1.8rem;
		opacity: 0.55;
	}

	.account-hero-v9__inner {
		width: min(100% - 1.5rem, 75rem);
	}

	.account-shell-v9--authenticated > .woocommerce,
	.account-shell-v9--guest:not(.account-shell-v9--lost-password) {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.account-shell-v9 .woocommerce-MyAccount-navigation,
	.account-shell-v9 .woocommerce-MyAccount-content {
		grid-column: 1;
	}

	.account-shell-v9 .woocommerce-MyAccount-navigation {
		position: static;
	}

	.account-shell-v9 .woocommerce-MyAccount-navigation ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

	.account-shell-v9 .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}

	.account-shell-v9 .ldc-account-content table {
		min-width: 47rem;
	}

	.account-shell-v9 .ldc-account-content table thead {
		display: table-header-group !important;
	}

	.account-shell-v9 .ldc-account-content table tbody {
		display: table-row-group !important;
	}

	.account-shell-v9 .ldc-account-content table tr {
		display: table-row !important;
	}

	.account-shell-v9 .ldc-account-content table th,
	.account-shell-v9 .ldc-account-content table td {
		display: table-cell !important;
		width: auto !important;
		text-align: left !important;
	}

	.account-shell-v9 .ldc-account-content table td::before {
		display: none !important;
		content: none !important;
	}
}

@media (max-width: 30rem) {
	.account-shell-v9 .woocommerce-Address-title {
		align-items: flex-start;
		flex-direction: column;
	}

	.account-dashboard-v9__header {
		align-items: stretch;
		flex-direction: column;
	}

	.account-dashboard-v9__logout {
		align-self: flex-start;
	}

	.account-shortcuts-v9 {
		grid-template-columns: minmax(0, 1fr);
	}

	.account-shortcut-v9 {
		min-height: 6.5rem;
		padding: 0.95rem;
	}
}

@media (max-width: 24.375rem) {
	.account-shell-v9 .woocommerce-MyAccount-navigation ul {
		grid-template-columns: minmax(0, 1fr);
	}

	.account-shell-v9 .woocommerce-MyAccount-content,
	.account-shell-v9--guest > .woocommerce,
	.account-context-v9 {
		padding: 1rem;
		border-radius: 1.1rem;
	}

	.account-shortcut-v9 {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.account-shortcut-v9__arrow {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.account-page-v9 *,
	.account-page-v9 *::before,
	.account-page-v9 *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media print {
	.account-hero-v9,
	.account-shell-v9 .woocommerce-MyAccount-navigation,
	.account-context-v9 {
		display: none !important;
	}

	.account-page-v9__workspace {
		width: 100%;
		padding: 0;
	}

	.account-shell-v9 .woocommerce-MyAccount-content,
	.account-shell-v9--guest > .woocommerce {
		border: 0;
		box-shadow: none;
	}
}
