:root {
	--wud-ink: #17233a;
	--wud-muted: #727985;
	--wud-line: #e3e5e8;
	--wud-surface: #ffffff;
	--wud-soft: #f7f5f1;
	--wud-brand: #183f8c;
	--wud-brand-dark: #102b62;
	--wud-success: #67a557;
	--wud-warning: #9a6700;
	--wud-danger: #d64545;
	--wud-radius: 10px;
	--wud-shadow: 0 8px 28px rgba(23, 35, 58, .045);
}

.wud-account-page .wud-account-layout {
	display: grid;
	grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
	grid-template-areas: "wud-sidebar wud-content";
	grid-template-rows: auto;
	gap: 24px;
	align-items: start;
	max-width: 1440px;
	margin-inline: auto;
	color: var(--wud-ink);
}

.wud-account-page #lqd-contents-wrap.container {
	width: min(1440px, calc(100% - 40px));
	max-width: 1440px;
}

.wud-account-page .wud-account-layout::before,
.wud-account-page .wud-account-layout::after { display: none; }

.wud-account-sidebar {
	grid-area: wud-sidebar;
	position: sticky;
	top: 24px;
	align-self: start;
	display: grid;
	gap: 18px;
	max-height: calc(100vh - 48px);
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #cbd0d7 transparent;
}

.admin-bar .wud-account-sidebar {
	top: 56px;
	max-height: calc(100vh - 72px);
}

.wud-account-page .woocommerce-MyAccount-navigation {
	float: none;
	width: auto;
	position: static;
	background: transparent;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

.wud-mobile-nav-toggle { display: none; }

.wud-account-page .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 12px 0 10px;
	list-style: none;
	background: var(--wud-surface);
	border: 1px solid var(--wud-line);
	border-radius: var(--wud-radius);
	box-shadow: var(--wud-shadow);
	overflow: hidden;
}

.wud-account-page .woocommerce-MyAccount-navigation ul::before {
	content: "MY ACCOUNT";
	display: block;
	padding: 8px 20px 12px;
	color: var(--wud-muted);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .08em;
}

.wud-account-page .woocommerce-MyAccount-navigation li { margin: 0; }
.wud-account-page .woocommerce-MyAccount-navigation a {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 43px;
	padding: 9px 20px;
	color: var(--wud-ink);
	border-left: 3px solid transparent;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color .18s ease, color .18s ease;
}

.wud-account-page .woocommerce-MyAccount-navigation a:hover { background: #f8f9fb; }
.wud-account-page .woocommerce-MyAccount-navigation .is-active a { color: var(--wud-brand); background: #f8faff; border-left-color: var(--wud-brand); }
.wud-account-page .woocommerce-MyAccount-navigation a::before {
	content: "";
	width: 17px;
	height: 17px;
	flex: 0 0 17px;
	background: center / contain no-repeat url("icons/plugin.svg");
}
.wud-account-page .woocommerce-MyAccount-navigation-link--dashboard a::before { background-image: url("icons/dashboard.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--orders a::before { background-image: url("icons/orders.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--returns-refunds a::before { background-image: url("icons/returns.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--wishlist a::before,
.wud-account-page .woocommerce-MyAccount-navigation-link--my-wishlist a::before { background-image: url("icons/wishlist.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--downloads a::before { background-image: url("icons/download.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--edit-address a::before { background-image: url("icons/address.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--payment-methods a::before { background-image: url("icons/invoice.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--edit-account a::before { background-image: url("icons/settings.svg"); }
.wud-account-page .woocommerce-MyAccount-navigation-link--customer-logout { margin: 8px 16px 0; padding-top: 8px; border-top: 1px solid var(--wud-line); }
.wud-account-page .woocommerce-MyAccount-navigation-link--customer-logout a { padding-inline: 1px; color: var(--wud-danger); }
.wud-account-page .woocommerce-MyAccount-navigation-link--customer-logout a::before { background-image: url("icons/logout.svg"); }

.wud-support-card {
	position: relative;
	min-height: 360px;
	margin: 0;
	border: 1px solid var(--wud-line);
	border-radius: var(--wud-radius);
	box-shadow: var(--wud-shadow);
	overflow: hidden;
}

.wud-support-content { position: relative; z-index: 2; padding: 20px; }
.wud-support-content h3 { margin: 0 0 5px; color: var(--wud-ink); font-size: 17px; }
.wud-support-content > p { margin: 0 0 14px; color: var(--wud-muted); font-size: 11px; }
.wud-support-content a { display: flex !important; align-items: center; gap: 11px; min-height: 35px !important; padding: 6px 0 !important; color: var(--wud-ink) !important; border: 0 !important; background: transparent !important; font-size: 11px !important; }
.wud-support-content a:hover { color: var(--wud-brand) !important; }
.wud-support-content a::before { display: none !important; }
.wud-support-content .wud-svg-icon { width: 15px; height: 15px; }
.wud-support-card > img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.wud-support-card::after { display: none; }

.wud-account-page .woocommerce-MyAccount-content { grid-area: wud-content; float: none; width: auto !important; min-width: 0; }
.wud-account-page .woocommerce-MyAccount-content > .wlfmc-wishlist-form.woocommerce { display: block; width: 100%; max-width: none; margin: 0; color: inherit; }
.wud-account-page .wlfmc-wishlist-table-wrapper, .wud-account-page .wlfmc-wishlist-table { width: 100% !important; max-width: none !important; }
.wud-account-page .wlfmc-wishlist-table-wrapper { overflow-x: auto; }
.wud-account-page .woocommerce-MyAccount-content.wud-is-loading { position: relative; min-height: 220px; opacity: .62; pointer-events: none; }
.wud-account-page .woocommerce-MyAccount-content.wud-is-loading::after { content: "Loading account section…"; position: absolute; top: 24px; left: 50%; z-index: 10; transform: translateX(-50%); padding: 10px 16px; color: #fff; background: var(--wud-ink); border-radius: 999px; font-size: 12px; font-weight: 700; box-shadow: var(--wud-shadow); }
.wud-account-page .button,
.wud-account-page button.button {
	min-height: 42px;
	padding: 11px 20px !important;
	color: var(--wud-ink) !important;
	background: #fff !important;
	border: 1px solid #aeb4bd !important;
	border-radius: 6px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	box-shadow: none !important;
}
.wud-account-page .button.alt,
.wud-account-page button.button.alt { color: #fff !important; background: var(--wud-ink) !important; border-color: var(--wud-ink) !important; }
.wud-account-page .button:hover { transform: translateY(-1px); }

.wud-svg-icon { display: inline-block; width: 18px; height: 18px; object-fit: contain; }
.wud-dashboard { display: grid; gap: 18px; }
.wud-welcome {
	position: relative;
	min-height: 218px;
	background: #f7f5f1;
	border: 1px solid var(--wud-line);
	border-radius: var(--wud-radius);
	overflow: hidden;
}
.wud-welcome-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.wud-welcome::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(248,246,242,.98) 0%, rgba(248,246,242,.96) 31%, rgba(248,246,242,.3) 55%, transparent 72%); }
.wud-welcome-copy { position: relative; z-index: 1; width: 42%; padding: 48px 50px; }
.wud-welcome-copy > span { color: #384558; font-size: 17px; }
.wud-welcome-copy h2 { margin: 2px 0 20px; color: var(--wud-ink); font-size: clamp(28px, 3vw, 38px); line-height: 1.05; }
.wud-welcome-copy p { max-width: 255px; margin: 0; color: #3d4757; font-size: 15px; line-height: 1.55; }

.wud-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.wud-stat {
	display: grid;
	grid-template-columns: 48px 1fr 18px;
	gap: 14px;
	align-items: center;
	min-height: 104px;
	padding: 20px 24px;
	color: var(--wud-ink);
	background: var(--wud-surface);
	border: 1px solid var(--wud-line);
	border-radius: var(--wud-radius);
	box-shadow: var(--wud-shadow);
	text-decoration: none;
}
.wud-stat:hover { color: var(--wud-ink); border-color: #cfd4dc; transform: translateY(-1px); }
.wud-icon { display: inline-grid; place-items: center; width: 44px; height: 44px; background: #f4f1ec; border-radius: 11px; }
.wud-icon .wud-svg-icon { width: 21px; height: 21px; }
.wud-stat-copy { display: grid; }
.wud-stat-copy small { color: #414957; font-size: 12px; font-weight: 600; }
.wud-stat-copy strong { color: var(--wud-ink); font-size: 27px; line-height: 1.1; }
.wud-stat-copy em { margin-top: 5px; color: var(--wud-muted); font-size: 10px; font-style: normal; }
.wud-stat-arrow .wud-svg-icon { width: 15px; height: 15px; }

.wud-panel { background: var(--wud-surface); border: 1px solid var(--wud-line); border-radius: var(--wud-radius); box-shadow: var(--wud-shadow); }
.wud-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 24px 10px; }
.wud-panel-heading h3 { margin: 0; color: var(--wud-ink); font-size: 17px; font-weight: 500; }
.wud-panel-heading a { display: inline-flex; align-items: center; gap: 8px; color: var(--wud-ink); font-size: 10px; font-weight: 700; text-decoration: none; }
.wud-panel-heading a .wud-svg-icon { width: 14px; height: 14px; }

.wud-order-card { padding: 12px 24px 22px; }
.wud-order-summary { display: grid; grid-template-columns: 230px minmax(260px, 1fr) 174px; gap: 30px; align-items: start; }
.wud-order-product-image img { width: 100%; height: 180px; object-fit: cover; border-radius: 7px; }
.wud-order-details { padding-top: 9px; }
.wud-eyebrow { display: block; color: var(--wud-muted); font-size: 9px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.wud-order-details h4 { margin: 8px 0 6px; color: var(--wud-ink); font-size: 19px; font-weight: 500; }
.wud-order-details > p { margin: 0; color: var(--wud-muted); font-size: 11px; }
.wud-order-details > p span { margin-inline: 7px; color: #b5bac1; }
.wud-delivery-date { display: grid; gap: 5px; margin-top: 22px; }
.wud-delivery-date small, .wud-order-status-row > small { color: var(--wud-muted); font-size: 10px; }
.wud-delivery-date strong { display: flex; align-items: center; gap: 8px; color: var(--wud-ink); font-size: 11px; }
.wud-delivery-date .wud-svg-icon { width: 15px; height: 15px; }
.wud-order-status-row { display: flex; align-items: center; gap: 18px; margin-top: 17px; }
.wud-card-actions { display: grid; gap: 10px; padding-top: 14px; }
.wud-card-actions .button { display: grid !important; place-items: center; width: 100%; margin: 0 !important; }
.wud-status { display: inline-flex; align-items: center; width: fit-content; padding: 5px 13px; color: #555d67; background: #eef0f2; border-radius: 999px; font-size: 9px; font-style: normal; font-weight: 700; white-space: nowrap; }
.wud-status--processing, .wud-status--approved, .wud-status--shipped { color: #4e833e; background: #e6f3df; }
.wud-status--completed, .wud-status--received, .wud-status--inspected, .wud-status--refunded { color: #477b3b; background: #e3f2dd; }
.wud-status--pending, .wud-status--on-hold { color: var(--wud-warning); background: #fff3d8; }
.wud-status--failed, .wud-status--rejected, .wud-status--cancelled { color: var(--wud-danger); background: #fee8e8; }

.wud-order-progress { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 18px 10px 0; padding-top: 13px; }
.wud-order-progress::before, .wud-order-progress::after { content: ""; position: absolute; top: 18px; left: 12.5%; height: 2px; }
.wud-order-progress::before { right: 12.5%; background: #d8dde3; }
.wud-order-progress::after { width: calc(var(--wud-progress) * .75); background: var(--wud-success); }
.wud-progress-step { position: relative; z-index: 1; display: grid; justify-items: center; text-align: center; }
.wud-progress-step > span { display: grid; place-items: center; width: 12px; height: 12px; color: #fff; background: #fff; border: 2px solid #ccd2da; border-radius: 50%; font-size: 7px; }
.wud-progress-step.is-complete > span { width: 14px; height: 14px; background: var(--wud-success); border-color: var(--wud-success); }
.wud-progress-step.is-complete > span img { display: block; width: 11px; height: 11px; margin: 0; filter: brightness(0) invert(1); }
.wud-progress-step strong { margin-top: 10px; color: #343e4d; font-size: 9px; font-weight: 500; }
.wud-progress-step small { margin-top: 2px; color: var(--wud-muted); font-size: 8px; }

.wud-bottom-grid { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(260px, .8fr); gap: 18px; }
.wud-orders-table { padding: 0 20px 14px; }
.wud-orders-table-head, .wud-order-row { display: grid; grid-template-columns: 1fr .95fr 1.55fr .85fr .85fr 20px; gap: 12px; align-items: center; }
.wud-orders-table-head { padding: 8px 0 6px; color: var(--wud-muted); font-size: 8px; text-transform: uppercase; }
.wud-order-row { min-height: 52px; color: #343e4d; border-top: 1px solid #eff0f2; font-size: 9px; text-decoration: none; }
.wud-order-row:hover { color: var(--wud-brand); }
.wud-order-number { display: flex; align-items: center; gap: 12px; }
.wud-order-number img { width: 38px; height: 30px; object-fit: cover; border-radius: 5px; }
.wud-order-row > span:last-child .wud-svg-icon { width: 13px; height: 13px; }

.wud-quick-actions { padding-bottom: 14px; }
.wud-action-list { display: grid; gap: 8px; padding: 0 15px; }
.wud-action-list--columns { grid-template-columns: repeat(2, 1fr); padding-bottom: 18px; }
.wud-action-card { display: grid; grid-template-columns: 38px 1fr 16px; gap: 12px; align-items: center; min-width: 0; padding: 10px 12px; color: var(--wud-ink); background: #faf9f7; border-radius: 7px; text-decoration: none; transition: background-color .18s ease; }
.wud-action-card:hover { color: var(--wud-ink); background: #f2f0eb; }
.wud-action-card .wud-icon { width: 34px; height: 34px; background: #f1ede7; border-radius: 8px; }
.wud-action-card .wud-icon .wud-svg-icon { width: 17px; height: 17px; }
.wud-action-card strong, .wud-action-card small { display: block; }
.wud-action-card strong { font-size: 10px; }
.wud-action-card small { margin-top: 3px; color: var(--wud-muted); font-size: 8px; line-height: 1.35; }
.wud-arrow .wud-svg-icon { width: 14px; height: 14px; }

.wud-custom-widgets, .wud-integrations { margin-top: 0; }
.wud-widget-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wud-widget { padding: 20px; background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); }
.wud-widget h3 { margin-top: 0; }
.wud-empty { padding: 34px 24px; text-align: center; background: var(--wud-soft); border: 1px dashed #ccd2dc; border-radius: var(--wud-radius); }
.wud-empty h3, .wud-empty h4 { margin: 0 0 8px; color: var(--wud-ink); }
.wud-empty p { max-width: 550px; margin: 0 auto 18px; color: var(--wud-muted); }

/* Returns and account endpoint screens. */
.wud-page-header { display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; padding: 26px; color: var(--wud-ink); background: #f7f5f1; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); margin-bottom: 20px; }
.wud-page-header h2 { margin: 4px 0 8px; color: inherit; font-size: 28px; }
.wud-page-header p { margin: 0; color: var(--wud-muted); }
.wud-page-header .wud-eyebrow { color: var(--wud-muted); }
.wud-back { display: inline-block; margin-bottom: 12px; color: var(--wud-brand); font-weight: 700; text-decoration: none; }
.wud-return-list { display: grid; gap: 12px; margin-top: 18px; }
.wud-return-card { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 20px; color: var(--wud-ink); background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); text-decoration: none; }
.wud-return-card:hover { color: var(--wud-ink); border-color: #c8ced7; box-shadow: var(--wud-shadow); }
.wud-return-card strong, .wud-return-card small { display: block; }
.wud-return-card strong { margin: 4px 0; font-size: 17px; }
.wud-return-card small { color: var(--wud-muted); }
.wud-return-page-header { position: relative; min-height: 160px; align-items: center; overflow: hidden; padding: 30px 34px; }
.wud-return-page-header > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.wud-return-page-header::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(247,245,241,.98) 0%, rgba(247,245,241,.92) 42%, rgba(247,245,241,.15) 76%, transparent 100%); }
.wud-return-header-copy { position: relative; z-index: 2; max-width: 72%; }
.wud-return-page-header .wud-back { margin-bottom: 10px; }
.wud-return-form { display: grid; gap: 20px; margin-top: 0; }
.wud-return-items, .wud-form-card { background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); }
.wud-return-section-title { margin: 0; padding: 20px 22px 10px; color: var(--wud-ink); font-size: 18px; }
.wud-return-item { display: grid; grid-template-columns: 22px 68px minmax(190px, 1fr) minmax(300px, 1.05fr); gap: 18px; align-items: center; min-height: 122px; padding: 20px 22px; }
.wud-return-item + .wud-return-item { border-top: 1px solid var(--wud-line); }
.wud-check { display: grid; place-items: center; padding: 0; }
.wud-check input { width: 18px; height: 18px; margin: 0; accent-color: var(--wud-brand); }
.wud-item-image img { display: block; width: 68px; height: 68px; object-fit: cover; border-radius: 8px; }
.wud-item-details > strong, .wud-item-details > small { display: block; }
.wud-item-details > strong { line-height: 1.45; }
.wud-item-details > small { margin-top: 5px; color: var(--wud-muted); }
.wud-item-fields { display: grid; grid-template-columns: minmax(105px, .65fr) minmax(180px, 1.15fr); gap: 20px; min-width: 0; margin: 0; opacity: 1; }
.wud-item-fields label { display: grid; grid-template-rows: auto minmax(42px, auto); gap: 6px; min-width: 0; }
.wud-return-item.is-selected { background: #fbfcff; }
.wud-account-page label { color: var(--wud-ink); font-weight: 700; }
.wud-account-page input[type="text"], .wud-account-page input[type="number"], .wud-account-page input[type="file"], .wud-account-page select, .wud-account-page textarea { width: 100%; margin-top: 6px; padding: 11px 12px; color: var(--wud-ink); background: #fff; border: 1px solid #cfd5df; border-radius: 7px; }
.wud-account-page .wud-item-fields select { width: 100% !important; max-width: 100%; min-width: 0; min-height: 42px; margin-top: 0; box-sizing: border-box; }
.wud-account-page .wud-item-fields .ui-selectmenu-button { width: 100% !important; max-width: 100%; min-width: 0; min-height: 42px; margin-top: 0; box-sizing: border-box; }
.wud-form-card { display: grid; gap: 15px; padding: 20px 22px; }
.wud-form-card h3 { margin: 0; color: var(--wud-ink); }
.wud-form-card label small { display: block; margin-top: 6px; color: var(--wud-muted); font-weight: 400; }
.wud-radio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.wud-radio-grid label { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 10px 14px; border: 1px solid var(--wud-line); border-radius: 7px; cursor: pointer; }
.wud-radio-grid label:has(input:checked) { border-color: var(--wud-brand); box-shadow: inset 0 0 0 1px rgba(25,74,145,.18); }
.wud-radio-grid input { accent-color: var(--wud-brand); }
.wud-additional-details textarea { min-height: 84px; resize: vertical; }
.wud-upload-field > span { display: grid; grid-template-columns: minmax(280px, .9fr) 1fr; gap: 18px; align-items: center; }
.wud-upload-field input[type="file"] { min-height: 42px; }
.wud-upload-field > span > small { margin-top: 6px; }
.wud-form-submit { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wud-submit-notice { display: flex; align-items: center; gap: 12px; flex: 1 1 auto; min-height: 48px; padding: 10px 18px; background: #f7f5f1; border-radius: 7px; }
.wud-submit-notice > span { display: grid; flex: 0 0 16px; place-items: center; width: 16px; height: 16px; color: #4d5968; border: 1px solid #4d5968; border-radius: 50%; font-size: 10px; font-weight: 700; }
.wud-form-submit p { margin: 0; color: var(--wud-muted); font-size: 12px; }
.wud-form-submit .button { flex: 0 0 auto; min-width: 180px; min-height: 48px; }
.wud-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 22px; margin-top: 22px; }
.wud-detail-grid > div { display: grid; gap: 16px; }
.wud-line-item, .wud-total { display: flex; justify-content: space-between; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--wud-line); }
.wud-line-item small { display: block; margin-top: 3px; color: var(--wud-muted); }
.wud-total { border: 0; font-size: 17px; }
.wud-timeline { padding: 22px; background: var(--wud-soft); border-radius: var(--wud-radius); }
.wud-timeline h3 { margin-top: 0; }
.wud-timeline-event { display: grid; grid-template-columns: 14px 1fr; gap: 11px; position: relative; padding-bottom: 23px; }
.wud-timeline-event > span { width: 12px; height: 12px; margin-top: 4px; background: var(--wud-brand); border: 3px solid #dbe5f8; border-radius: 50%; box-sizing: border-box; }
.wud-timeline-event:not(:last-child)::before { content: ""; position: absolute; left: 5px; top: 14px; bottom: 0; width: 2px; background: #d8dce5; }
.wud-timeline-event strong, .wud-timeline-event small { display: block; }
.wud-timeline-event small { margin-top: 2px; color: var(--wud-muted); }
.wud-timeline-event p { margin: 5px 0 0; font-size: 13px; }
.wud-cancel-form { margin-top: 12px; }

.wud-orders-page { display: grid; gap: 22px; }
.wud-orders-panel, .wud-orders-support { background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); box-shadow: var(--wud-shadow); }
.wud-orders-heading h2, .wud-orders-support h2 { margin: 0; color: var(--wud-ink); font-size: 20px; }
.wud-orders-heading p, .wud-orders-support p { margin: 6px 0 0; color: var(--wud-muted); }
.wud-orders-panel { padding: 26px; }
.wud-orders-heading { margin-bottom: 24px; }
.wud-order-history { overflow: hidden; border: 1px solid var(--wud-line); border-radius: 8px; }
.wud-history-head, .wud-history-row { display: grid; grid-template-columns: minmax(230px, 1.2fr) minmax(145px, .75fr) minmax(130px, .7fr) minmax(140px, .7fr) minmax(190px, .85fr); }
.wud-history-head { color: #475467; background: #fafafa; font-size: 11px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.wud-history-head > span { padding: 14px 18px; border-right: 1px solid var(--wud-line); }
.wud-history-head > span:last-child { border-right: 0; }
.wud-history-row + .wud-history-row { border-top: 1px solid var(--wud-line); }
.wud-history-row > div { display: flex; align-items: center; min-width: 0; padding: 20px 18px; border-right: 1px solid var(--wud-line); }
.wud-history-row > div:last-child { border-right: 0; }
.wud-history-order { gap: 16px; }
.wud-history-order > span:last-child { min-width: 0; }
.wud-history-order strong, .wud-history-order small { display: block; }
.wud-history-order strong { color: var(--wud-ink); font-size: 15px; }
.wud-history-order small { margin-top: 6px; color: var(--wud-muted); }
.wud-history-image img { display: block; width: 78px; height: 78px; object-fit: cover; border-radius: 8px; }
.wud-history-actions { display: grid !important; gap: 8px; align-content: center; }
.wud-history-actions .button { display: grid !important; place-items: center; width: 100%; margin: 0 !important; }
.wud-orders-pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 22px; }
.wud-orders-empty { padding: 44px 22px; text-align: center; border: 1px dashed var(--wud-line); border-radius: 8px; }
.wud-orders-empty h3 { margin: 0; }
.wud-orders-empty p { margin: 8px 0 20px; color: var(--wud-muted); }
.wud-orders-support { display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 24px 28px; }
.wud-orders-support__icon { display: grid; place-items: center; width: 58px; height: 58px; background: #f5ede2; border-radius: 50%; }
.wud-orders-support__icon img { width: 25px; height: 25px; }
.wud-orders-support .button { min-width: 160px; }

.woocommerce-view-order .woocommerce-MyAccount-content > p:first-child { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; align-items: center; min-height: 86px; margin: 0 0 18px; padding: 18px 24px; color: #566273; background: #f8faff; border: 1px solid #dbe5f8; border-radius: var(--wud-radius); box-sizing: border-box; }
.woocommerce-view-order .woocommerce-MyAccount-content > p:first-child::before { content: ""; display: block; width: 46px; height: 46px; background: #e8efff center / 21px no-repeat url("icons/orders.svg"); border-radius: 50%; }
.woocommerce-view-order .woocommerce-MyAccount-content > p:first-child mark { color: var(--wud-brand); background: transparent; font-weight: 700; }
.wud-order-details { margin: 0; padding: 22px; background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); box-shadow: var(--wud-shadow); }
.wud-order-details .woocommerce-order-details__title { margin: 0 0 18px; color: var(--wud-ink); font-size: 23px; }
.wud-order-detail-table { overflow: hidden; border: 1px solid var(--wud-line); border-radius: 8px; }
.wud-order-detail-head, .wud-order-detail-item, .wud-order-detail-totals > div { display: grid; grid-template-columns: minmax(0, 2.1fr) minmax(180px, 1fr); }
.wud-order-detail-head { color: #344054; background: #fafafa; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.wud-order-detail-head > span { padding: 12px 14px; }
.wud-order-detail-head > span + span, .wud-order-detail-item > div + div, .wud-order-detail-totals > div > * + * { border-left: 1px solid var(--wud-line); }
.wud-order-detail-item, .wud-order-detail-totals > div { border-top: 1px solid var(--wud-line); }
.wud-order-detail-product { display: flex; align-items: center; gap: 16px; min-width: 0; padding: 8px 12px; }
.wud-order-detail-product strong, .wud-order-detail-product strong a { color: var(--wud-ink); text-decoration: none; }
.wud-order-detail-product strong a:hover { color: var(--wud-brand); }
.wud-order-detail-image img { display: block; width: 78px; height: 58px; object-fit: cover; border-radius: 7px; }
.wud-order-detail-quantity { display: block; margin-top: 2px; color: var(--wud-ink); font-size: 12px; font-weight: 700; }
.wud-order-detail-product .wc-item-meta { margin: 5px 0 0; padding: 0; color: var(--wud-muted); font-size: 11px; list-style: none; }
.wud-order-detail-line-total { display: flex; align-items: center; padding: 12px 16px; color: var(--wud-ink); font-weight: 600; }
.wud-order-detail-totals > div > strong, .wud-order-detail-totals > div > span { padding: 10px 14px; }
.wud-order-detail-totals > div > strong { color: var(--wud-ink); }
.wud-order-detail-action-row { align-items: center; }
.wud-order-detail-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.wud-order-detail-actions .button { display: inline-flex !important; align-items: center; justify-content: center; gap: 8px; min-width: 145px; margin: 0 !important; }
.wud-order-detail-actions .button img { width: 15px; height: 15px; }
.wud-order-post-actions { margin: 10px 0 18px; }
.wud-order-post-actions:empty { display: none; }
.wud-order-post-actions .order-again { margin: 0; }
.wud-order-post-actions .order-again .button::before { content: "←"; margin-right: 8px; }
.wud-customer-details { display: grid; gap: 18px; margin-top: 18px; }
.wud-customer-address-card { padding: 22px; background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); box-shadow: var(--wud-shadow); }
.wud-customer-address-card h2 { margin: 0 0 18px; color: var(--wud-ink); font-size: 21px; }
.wud-address-card-grid { display: grid; grid-template-columns: 76px minmax(190px, 1fr) minmax(220px, 1fr) auto; gap: 20px; align-items: center; }
.wud-address-card-icon { display: grid; place-items: center; width: 72px; height: 72px; background: #edf2ff; border-radius: 50%; }
.wud-address-card-icon img { width: 29px; height: 29px; }
.wud-address-card-grid address { color: #3f4b5b; font-style: normal; line-height: 1.55; }
.wud-address-contact { display: grid; gap: 12px; }
.wud-address-contact p { display: flex; align-items: center; gap: 12px; margin: 0; color: #3f4b5b; }
.wud-address-contact img { width: 16px; height: 16px; }
.wud-edit-address { min-width: 145px; text-align: center; }
.woocommerce-view-order .woocommerce-OrderUpdates { margin: 0 0 18px; padding: 20px 40px; background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); }

/* Order received */
.wud-order-received-page .titlebar,
.wud-order-received-page .lqd-page-title,
.wud-order-received-page .page-title { display: none; }
.wud-order-received-page #lqd-contents-wrap.container { width: min(1320px, calc(100% - 40px)); max-width: 1320px; }
.wud-thankyou { display: grid; gap: 18px; max-width: 1280px; margin: 0 auto; color: var(--wud-ink); }
.wud-thankyou *, .wud-thankyou *::before, .wud-thankyou *::after { box-sizing: border-box; }
.wud-thankyou h2 { margin: 0; color: var(--wud-ink); font-size: 22px; line-height: 1.25; }
.wud-thankyou .button { display: inline-flex !important; align-items: center; justify-content: center; gap: 9px; min-height: 44px; margin: 0 !important; padding: 10px 22px !important; color: var(--wud-ink) !important; background: #fff !important; border: 1px solid #aeb6c2 !important; border-radius: 7px !important; font-weight: 600; line-height: 1.2; text-decoration: none !important; box-shadow: none !important; }
.wud-thankyou .button:hover { color: #fff !important; background: var(--wud-brand-dark) !important; border-color: var(--wud-brand-dark) !important; }
.wud-thankyou .button.alt { color: #fff !important; background: var(--wud-ink) !important; border-color: var(--wud-ink) !important; }
.wud-thankyou .button img { width: 17px; height: 17px; object-fit: contain; }
.wud-thankyou .button.alt img { filter: brightness(0) invert(1); }
.wud-checkout-progress, .wud-receipt-banner, .wud-received-items, .wud-received-summary, .wud-received-address, .wud-received-support { background: #fff; border: 1px solid var(--wud-line); border-radius: var(--wud-radius); box-shadow: var(--wud-shadow); }
.wud-checkout-progress { display: grid; grid-template-columns: auto minmax(42px, 1fr) auto minmax(42px, 1fr) auto; gap: 24px; align-items: center; min-height: 94px; padding: 20px 62px; }
.wud-checkout-progress > i { display: block; height: 1px; background: repeating-linear-gradient(90deg, #ccd2db 0 5px, transparent 5px 10px); }
.wud-checkout-step { display: flex; align-items: center; gap: 14px; min-width: 0; }
.wud-checkout-step > span { display: grid; place-items: center; flex: 0 0 38px; width: 38px; height: 38px; color: var(--wud-ink); background: #fff; border: 1px solid #91a0b3; border-radius: 50%; font-size: 14px; font-weight: 700; }
.wud-checkout-step.is-complete > span { color: #fff; background: var(--wud-ink); border-color: var(--wud-ink); }
.wud-checkout-step strong, .wud-checkout-step small { display: block; white-space: nowrap; }
.wud-checkout-step strong { color: var(--wud-ink); font-size: 13px; }
.wud-checkout-step small { margin-top: 4px; color: var(--wud-muted); font-size: 10px; }
.wud-receipt-banner { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 18px; align-items: start; padding: 24px 26px; }
.wud-receipt-check { display: grid; place-items: center; width: 48px; height: 48px; background: #edf2ff; border-radius: 50%; }
.wud-receipt-check img { width: 20px; height: 20px; }
.wud-receipt-content > p { margin: 2px 0 18px; font-size: 15px; }
.wud-receipt-meta { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 0; }
.wud-receipt-meta > div { min-width: 0; padding: 0 20px; border-left: 1px solid var(--wud-line); }
.wud-receipt-meta > div:first-child { padding-left: 0; border-left: 0; }
.wud-receipt-meta dt { margin: 0 0 7px; color: var(--wud-muted); font-size: 9px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.wud-receipt-meta dd { margin: 0; overflow-wrap: anywhere; color: var(--wud-ink); font-size: 13px; font-weight: 700; }
.wud-thankyou-grid { display: grid; grid-template-columns: minmax(0, 1.68fr) minmax(320px, .92fr); gap: 18px; align-items: start; }
.wud-thankyou-primary, .wud-thankyou-secondary { display: grid; gap: 16px; }
.wud-received-items { overflow: hidden; }
.wud-received-items > h2 { padding: 24px 24px 4px; }
.wud-received-count { margin: 0; padding: 0 24px 14px; color: var(--wud-ink); font-size: 12px; }
.wud-received-product-list { margin: 0 16px; overflow: hidden; border: 1px solid var(--wud-line); border-radius: 8px; }
.wud-received-product { display: grid; grid-template-columns: 132px minmax(0, 1fr) auto; align-items: center; min-height: 132px; }
.wud-received-product + .wud-received-product { border-top: 1px solid var(--wud-line); }
.wud-received-product-image { align-self: stretch; min-height: 120px; margin: 6px; overflow: hidden; border-radius: 7px; }
.wud-received-product-image a { display: block; width: 100%; height: 100%; }
.wud-received-product-image img { display: block; width: 100%; height: 100%; min-height: 120px; object-fit: cover; border-radius: 7px; }
.wud-received-product-copy { display: grid; gap: 7px; padding: 20px; }
.wud-received-product-copy strong, .wud-received-product-copy strong a { color: var(--wud-ink); font-size: 14px; font-weight: 700; line-height: 1.35; text-decoration: none; }
.wud-received-product-copy > span, .wud-received-product-copy .wc-item-meta { margin: 0; color: var(--wud-muted); font-size: 11px; }
.wud-received-product-copy .wc-item-meta li { margin: 0; }
.wud-received-product > b { padding: 20px 24px 20px 8px; font-size: 14px; white-space: nowrap; }
.wud-received-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 76px; padding: 14px 24px; }
.wud-received-actions > div { display: flex; gap: 14px; }
.wud-received-actions .button { min-width: 160px; }
.wud-continue-shopping { justify-self: start; min-height: 40px !important; }
.wud-received-summary, .wud-received-address { padding: 25px 24px; }
.wud-received-summary h2, .wud-received-address h2 { margin-bottom: 20px; font-size: 19px; }
.wud-received-summary dl { display: grid; gap: 16px; margin: 0; }
.wud-received-summary dl > div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; color: var(--wud-ink); font-size: 12px; }
.wud-received-summary dt, .wud-received-summary dd { margin: 0; }
.wud-received-summary dt, .wud-received-summary dd { font-weight: 600; }
.wud-received-summary small { display: block; margin-top: 4px; color: var(--wud-muted); font-size: 10px; font-weight: 400; line-height: 1.45; }
.wud-received-summary dd { text-align: right; }
.wud-summary-total { margin-top: 8px; padding-top: 17px; border-top: 1px solid var(--wud-line); font-size: 14px !important; }
.wud-received-address-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.wud-received-address-heading > span { display: grid; place-items: center; width: 42px; height: 42px; background: #edf2ff; border-radius: 50%; }
.wud-received-address-heading img { width: 19px; height: 19px; }
.wud-received-address address { margin: 0 0 18px; color: #3f4b5b; font-size: 12px; font-style: normal; line-height: 1.55; }
.wud-received-address > a:not(.button) { display: flex; align-items: center; gap: 10px; margin-top: 10px; color: var(--wud-ink); font-size: 11px; text-decoration: none; overflow-wrap: anywhere; }
.wud-received-address > a img { width: 15px; height: 15px; }
.wud-edit-received-address { margin-top: 20px; min-height: 40px !important; padding-inline: 18px !important; }
.wud-received-support { display: grid; grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(150px, 1fr)); align-items: stretch; padding: 20px 24px; }
.wud-received-support-intro, .wud-received-support > a { display: flex; align-items: center; gap: 14px; min-width: 0; padding: 0 24px; color: var(--wud-ink); text-decoration: none; border-left: 1px solid var(--wud-line); }
.wud-received-support-intro { padding-left: 0; border-left: 0; }
.wud-received-support-intro > span { display: grid; place-items: center; flex: 0 0 48px; width: 48px; height: 48px; background: #edf2ff; border-radius: 50%; }
.wud-received-support img { flex: 0 0 18px; width: 18px; height: 18px; }
.wud-received-support-intro > span img { width: 22px; height: 22px; }
.wud-received-support strong, .wud-received-support small { display: block; }
.wud-received-support strong { font-size: 12px; }
.wud-received-support small { margin-top: 4px; color: var(--wud-muted); font-size: 9px; line-height: 1.35; overflow-wrap: anywhere; }
.wud-received-support { margin-top: 12px; }
.wud-thankyou-extensions:empty { display: none; }
.wud-thankyou-extensions > * { margin-top: 0; }

@media (max-width: 1120px) {
	.wud-order-summary { grid-template-columns: 190px 1fr 150px; gap: 20px; }
	.wud-orders-table-head, .wud-order-row { grid-template-columns: 1fr 1fr 1.3fr .8fr 18px; }
	.wud-orders-table-head > span:nth-child(2), .wud-order-row > span:nth-child(2) { display: none; }
	.wud-history-head { display: none; }
	.wud-history-row { grid-template-columns: 1fr 1fr; gap: 0; padding: 18px; }
	.wud-history-row > div { display: grid; grid-template-columns: 92px minmax(0, 1fr); padding: 10px 0; border: 0; }
	.wud-history-row > div::before { content: attr(data-title); color: var(--wud-muted); font-size: 10px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
	.wud-history-order, .wud-history-actions { grid-column: 1 / -1; }
	.wud-history-order { display: flex !important; padding-top: 0 !important; }
	.wud-history-order::before, .wud-history-actions::before { display: none; }
	.wud-history-actions { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; padding-top: 14px !important; }
	.wud-address-card-grid { grid-template-columns: 64px minmax(0, 1fr) minmax(200px, 1fr); }
	.wud-edit-address { grid-column: 2 / -1; width: fit-content; }
	.wud-checkout-progress { gap: 16px; padding-inline: 34px; }
	.wud-received-product { grid-template-columns: 132px minmax(0, 1fr) auto; }
}

@media (max-width: 900px) {
	.wud-account-page .wud-account-layout { grid-template-columns: minmax(0, 1fr); grid-template-areas: "wud-sidebar" "wud-content"; grid-template-rows: auto auto; width: 100%; max-width: 100%; min-width: 0; }
	.wud-account-sidebar { position: static; display: block; width: 100%; max-width: 100%; min-width: 0; max-height: none; overflow: visible; }
	.wud-account-page .woocommerce-MyAccount-navigation { position: static; width: 100%; max-width: 100%; min-width: 0; }
	.wud-account-page .woocommerce-MyAccount-content { width: 100%; max-width: 100%; min-width: 0; }
	.wud-account-page .woocommerce-MyAccount-navigation ul { display: flex; width: 100%; max-width: 100%; min-width: 0; overflow-x: auto; padding: 7px; }
	.wud-account-page .woocommerce-MyAccount-navigation ul::before, .wud-support-card { display: none; }
	.wud-account-page .woocommerce-MyAccount-navigation li { flex: 0 0 auto; }
	.wud-account-page .woocommerce-MyAccount-navigation-link--customer-logout { margin: 0 0 0 6px; padding: 0 0 0 6px; border-top: 0; border-left: 1px solid var(--wud-line); }
	.wud-account-page .woocommerce-MyAccount-navigation a { min-height: 40px; padding: 8px 12px; border: 0; border-radius: 6px; white-space: nowrap; }
	.wud-account-page .woocommerce-MyAccount-navigation .is-active a { color: #fff; background: var(--wud-brand); }
	.wud-account-page .woocommerce-MyAccount-navigation .is-active a::before { filter: brightness(0) invert(1); }
	.wud-welcome-copy { width: 55%; }
	.wud-order-summary { grid-template-columns: 170px 1fr; }
	.wud-card-actions { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); padding-top: 0; }
	.wud-bottom-grid, .wud-detail-grid { grid-template-columns: 1fr; }
	.wud-address-card-grid { grid-template-columns: 64px minmax(0, 1fr); }
	.wud-address-contact { grid-column: 2; }
	.wud-edit-address { grid-column: 2; }
	.wud-thankyou-grid { grid-template-columns: minmax(0, 1.6fr) minmax(270px, .9fr); }
	.wud-thankyou-secondary { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
	.wud-checkout-progress { grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto; gap: 10px; padding: 18px; }
	.wud-checkout-step { gap: 9px; }
	.wud-checkout-step > span { flex-basis: 34px; width: 34px; height: 34px; }
	.wud-checkout-step small { display: none; }
	.wud-checkout-step strong { font-size: 11px; }
	.wud-receipt-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; }
	.wud-thankyou-grid { grid-template-columns: 1fr; }
	.wud-received-support { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.wud-received-support-intro { grid-column: 1 / -1; padding: 0 0 18px; margin-bottom: 18px; border-bottom: 1px solid var(--wud-line); }
	.wud-received-support > a:nth-of-type(1) { padding-left: 0; border-left: 0; }
}

@media (max-width: 640px) {
	.wud-dashboard { gap: 14px; }
	.wud-welcome { min-height: 160px; }
	.wud-welcome-photo { object-position: 65% center; opacity: .5; }
	.wud-welcome::after { background: linear-gradient(90deg, rgba(248,246,242,.98), rgba(248,246,242,.78)); }
	.wud-welcome-copy { width: auto; padding: 24px 22px; }
	.wud-account-page .woocommerce-MyAccount-navigation { position: relative; }
	.wud-mobile-nav-toggle { position: relative; display: flex; align-items: center; gap: 13px; width: 100%; min-height: 62px; padding: 14px 54px 14px 18px; color: var(--wud-ink); background: #fff; border: 1px solid var(--wud-brand); border-radius: 10px; font: inherit; font-size: 15px; font-weight: 700; text-align: left; box-shadow: var(--wud-shadow); cursor: pointer; }
	.wud-mobile-nav-toggle img { width: 20px; height: 20px; flex: 0 0 20px; object-fit: contain; }
	.wud-mobile-nav-toggle::after { content: ""; position: absolute; top: 50%; right: 22px; width: 10px; height: 10px; border-right: 2px solid var(--wud-ink); border-bottom: 2px solid var(--wud-ink); transform: translateY(-65%) rotate(45deg); transition: transform .18s ease; }
	.wud-account-page .woocommerce-MyAccount-navigation.is-open .wud-mobile-nav-toggle::after { transform: translateY(-35%) rotate(225deg); }
	.wud-account-page .woocommerce-MyAccount-navigation ul { position: absolute; top: calc(100% + 8px); left: 0; z-index: 40; display: none; flex-direction: column; width: 100%; max-height: min(420px, 65vh); margin: 0; padding: 7px; overflow-x: hidden; overflow-y: auto; box-sizing: border-box; }
	.wud-account-page .woocommerce-MyAccount-navigation.is-open ul { display: flex; }
	.wud-account-page .woocommerce-MyAccount-navigation li { width: 100%; }
	.wud-account-page .woocommerce-MyAccount-navigation-link--customer-logout { margin: 7px 0 0; padding: 7px 0 0; border-top: 1px solid var(--wud-line); border-left: 0; }
	.wud-account-page .woocommerce-MyAccount-navigation a { width: 100%; box-sizing: border-box; }
	.wud-stat-grid, .wud-widget-grid, .wud-radio-grid, .wud-action-list--columns { grid-template-columns: 1fr; }
	.wud-stat { min-height: 88px; }
	.wud-order-summary { grid-template-columns: 1fr; }
	.wud-order-product-image img { height: 210px; }
	.wud-card-actions { grid-column: auto; grid-template-columns: 1fr; }
	.wud-order-progress { width: 100%; min-width: 0; margin: 20px 0 0; padding: 13px 0 0; overflow: visible; box-sizing: border-box; }
	.wud-progress-step { min-width: 0; }
	.wud-progress-step strong { max-width: 76px; margin-top: 9px; font-size: 8px; line-height: 1.3; white-space: normal; }
	.wud-progress-step small { font-size: 7px; }
	.wud-latest-order { overflow: hidden; }
	.wud-orders-table-head { display: none; }
	.wud-order-row { grid-template-columns: 1fr auto 16px; padding: 10px 0; }
	.wud-order-row > span:nth-child(2), .wud-order-row > span:nth-child(3), .wud-order-row > span:nth-child(5) { display: none; }
	.wud-return-item { grid-template-columns: auto 62px 1fr; padding: 15px; gap: 11px; }
	.wud-item-image img { width: 62px; height: 62px; }
	.wud-item-fields { grid-column: 1 / -1; grid-template-columns: 1fr; }
	.wud-return-page-header { min-height: 210px; padding: 26px; }
	.wud-return-page-header > img { object-position: 68% center; opacity: .4; }
	.wud-return-page-header::after { background: linear-gradient(90deg, rgba(247,245,241,.98), rgba(247,245,241,.82)); }
	.wud-return-header-copy { max-width: 100%; }
	.wud-orders-panel { padding: 20px 15px; }
	.wud-history-row { grid-template-columns: 1fr; padding: 15px; }
	.wud-history-row > div { grid-template-columns: 78px minmax(0, 1fr); }
	.wud-history-actions { grid-template-columns: 1fr !important; }
	.wud-orders-support { grid-template-columns: 48px minmax(0, 1fr); padding: 22px; }
	.wud-orders-support__icon { width: 44px; height: 44px; }
	.wud-orders-support .button { grid-column: 1 / -1; width: 100%; }
	.woocommerce-view-order .woocommerce-MyAccount-content > p:first-child { grid-template-columns: 38px minmax(0, 1fr); min-height: 72px; padding: 15px; font-size: 12px; }
	.woocommerce-view-order .woocommerce-MyAccount-content > p:first-child::before { width: 38px; height: 38px; background-size: 18px; }
	.wud-order-details { padding: 18px 14px; }
	.wud-order-detail-head { display: none; }
	.wud-order-detail-item { grid-template-columns: 1fr; padding: 12px 0; }
	.wud-order-detail-item > div + div { border-left: 0; }
	.wud-order-detail-line-total { justify-content: space-between; padding: 8px 12px 0; }
	.wud-order-detail-line-total::before { content: attr(data-title); color: var(--wud-muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
	.wud-order-detail-totals > div { grid-template-columns: minmax(0, 1fr) minmax(120px, .8fr); }
	.wud-order-detail-actions { justify-content: stretch; }
	.wud-order-detail-actions .button { width: 100%; min-width: 0; }
	.wud-address-card-grid { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
	.wud-address-card-icon { width: 46px; height: 46px; }
	.wud-address-card-icon img { width: 21px; height: 21px; }
	.wud-address-contact, .wud-edit-address { grid-column: 1 / -1; }
	.wud-edit-address { width: 100%; }
	.wud-upload-field > span { grid-template-columns: 1fr; gap: 4px; }
	.wud-form-submit, .wud-page-header { align-items: flex-start; flex-direction: column; }
	.wud-form-submit, .wud-form-submit .button { width: 100%; }
	.wud-order-received-page #lqd-contents-wrap.container { width: min(100% - 24px, 1320px); }
	.wud-thankyou { gap: 14px; }
	.wud-checkout-progress { grid-template-columns: auto 1fr auto 1fr auto; gap: 8px; min-height: 72px; padding: 14px 12px; }
	.wud-checkout-step { display: grid; justify-items: center; gap: 5px; }
	.wud-checkout-step > span { flex-basis: 30px; width: 30px; height: 30px; font-size: 11px; }
	.wud-checkout-step strong { max-width: 78px; font-size: 9px; text-align: center; white-space: normal; }
	.wud-receipt-banner { grid-template-columns: 42px minmax(0, 1fr); gap: 13px; padding: 18px 15px; }
	.wud-receipt-check { width: 40px; height: 40px; }
	.wud-receipt-content > p { margin-bottom: 16px; }
	.wud-receipt-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 0; }
	.wud-receipt-meta > div, .wud-receipt-meta > div:first-child { padding: 0 12px; border-left: 1px solid var(--wud-line); }
	.wud-receipt-meta > div:nth-child(odd) { padding-left: 0; border-left: 0; }
	.wud-receipt-meta > div:nth-child(even) { padding-right: 0; }
	.wud-thankyou-secondary { grid-template-columns: 1fr; }
	.wud-received-items > h2 { padding: 20px 16px 4px; }
	.wud-received-count { padding: 0 16px 12px; }
	.wud-received-product { grid-template-columns: 132px minmax(0, 1fr); min-height: 132px; }
	.wud-received-product-image, .wud-received-product-image img { min-height: 120px; }
	.wud-received-product-copy { padding: 14px; }
	.wud-received-product > b { grid-column: 2; padding: 0 14px 14px; font-size: 12px; }
	.wud-received-actions { align-items: stretch; flex-direction: column; padding: 16px; }
	.wud-received-actions > div { display: grid; grid-template-columns: 1fr; }
	.wud-received-actions .button, .wud-continue-shopping { width: 100%; }
	.wud-received-summary, .wud-received-address { padding: 20px 16px; }
	.wud-received-support { grid-template-columns: 1fr; padding: 18px 16px; }
	.wud-received-support-intro, .wud-received-support > a, .wud-received-support > a:nth-of-type(1) { padding: 14px 0; border-left: 0; border-bottom: 1px solid var(--wud-line); }
	.wud-received-support-intro { margin: 0; padding-top: 0; }
	.wud-received-support > a:last-child { padding-bottom: 0; border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.wud-account-page * { scroll-behavior: auto !important; transition: none !important; }
}
