.acx-customer-page {
	display: grid;
	gap: var(--acx-space-5);
}

.acx-customer-hero {
	max-width: 760px;
}

.acx-customer-hero h1 {
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1.08;
	margin-bottom: var(--acx-space-3);
}

.acx-customer-hero > p:last-child {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-4);
	margin-bottom: 0;
}

.acx-customer-grid {
	display: grid;
	gap: var(--acx-space-4);
}

.acx-customer-panel {
	display: grid;
	gap: var(--acx-space-3);
	padding: clamp(20px, 3vw, 32px);
}

.acx-customer-panel h2,
.acx-customer-panel p {
	margin-bottom: 0;
}

.acx-customer-panel > p,
.acx-customer-muted {
	color: var(--acx-text-soft);
}

.acx-customer-panel form {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-customer-fields {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-customer-message {
	border-radius: var(--acx-radius-field);
	font-size: var(--acx-text-2);
	padding: 10px 12px;
}

.acx-customer-message.is-danger {
	background: var(--acx-danger-tint);
	color: var(--acx-danger);
}

.acx-customer-message.is-success {
	background: var(--acx-valid-tint);
	color: var(--acx-success);
}

.acx-customer-link {
	color: var(--acx-green-accent);
	font-size: var(--acx-text-2);
	font-weight: 600;
	justify-self: start;
}

.acx-customer-section-head {
	align-items: center;
	display: flex;
	gap: var(--acx-space-3);
	justify-content: space-between;
}

.acx-customer-section-head h2,
.acx-customer-section-head p {
	margin-bottom: 0;
}

.acx-recent-orders,
.acx-account-prompt {
	align-content: start;
	background: var(--acx-green-house);
	color: var(--acx-text-white);
}

.acx-recent-orders h2,
.acx-account-prompt h2 {
	color: var(--acx-text-white);
}

.acx-recent-orders > p,
.acx-account-prompt > p {
	color: var(--acx-text-white-soft);
}

.acx-account-prompt > .lucide {
	color: var(--acx-gold-light);
	height: 34px;
	width: 34px;
}

.acx-guest-order-list {
	display: grid;
	gap: var(--acx-space-2);
}

.acx-guest-order {
	align-items: center;
	background: var(--acx-white);
	border-radius: 8px;
	color: var(--acx-text);
	display: grid;
	gap: var(--acx-space-2);
	grid-template-columns: minmax(0, 1fr) auto auto;
	padding: 12px;
	text-decoration: none;
	transition: box-shadow var(--acx-duration-fast) ease, transform var(--acx-duration-fast) ease;
}

.acx-guest-order:hover,
.acx-guest-order:focus {
	box-shadow: var(--acx-shadow-card);
	transform: translateY(-1px);
}

.acx-guest-order > span:first-child {
	display: grid;
	min-width: 0;
}

.acx-guest-order small {
	color: var(--acx-text-soft);
}

.acx-guest-order__total {
	color: var(--acx-green-accent);
	font-weight: 700;
}

.acx-tracking-result:empty {
	display: none;
}

.acx-order-tracker {
	display: grid;
	gap: var(--acx-space-5);
	padding: clamp(20px, 4vw, 40px);
	scroll-margin-top: 96px;
}

.acx-order-tracker__header {
	align-items: flex-start;
	display: flex;
	gap: var(--acx-space-4);
	justify-content: space-between;
}

.acx-order-tracker__heading {
	align-items: flex-start;
	display: flex;
	gap: var(--acx-space-3);
	min-width: 0;
}

.acx-order-tracker__status-icon {
	align-items: center;
	background: var(--acx-valid-tint);
	border-radius: 50%;
	color: var(--acx-success);
	display: inline-flex;
	flex: 0 0 56px;
	height: 56px;
	justify-content: center;
}

.acx-order-tracker__status-icon .lucide {
	height: 28px;
	width: 28px;
}

.acx-order-tracker__header h2 {
	color: var(--acx-green-house);
	font-size: clamp(28px, 4vw, 38px);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: var(--acx-space-1);
}

.acx-order-tracker__header p:last-child {
	color: var(--acx-text-soft);
	margin-bottom: 0;
	max-width: 620px;
}

.acx-order-tracker__header-aside {
	align-items: flex-end;
	display: grid;
	flex: 0 0 auto;
	gap: var(--acx-space-2);
	justify-items: end;
}

.acx-order-tracker__badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--acx-space-2);
	justify-content: flex-end;
}

.acx-order-progress {
	border-bottom: 1px solid var(--acx-divider);
	border-top: 1px solid var(--acx-divider);
	overflow-x: auto;
	padding-block: var(--acx-space-4);
}

.acx-order-progress__heading {
	align-items: baseline;
	display: flex;
	gap: var(--acx-space-3);
	justify-content: space-between;
	margin-bottom: var(--acx-space-4);
}

.acx-order-progress__heading h3,
.acx-order-progress__heading p {
	margin: 0;
}

.acx-order-progress__heading p {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-2);
}

.acx-order-progress__list {
	display: flex;
	list-style: none;
	margin: 0;
	min-width: 650px;
	padding: 0;
}

.acx-order-progress__step {
	align-items: flex-start;
	color: var(--acx-text-soft);
	display: flex;
	flex: 1;
	flex-direction: column;
	font-size: var(--acx-text-2);
	gap: var(--acx-space-2);
	position: relative;
}

.acx-order-progress__step:not(:last-child)::after {
	background: var(--acx-border);
	content: "";
	height: 2px;
	left: 34px;
	position: absolute;
	right: -17px;
	top: 16px;
}

.acx-order-progress__marker {
	align-items: center;
	aspect-ratio: 1 / 1;
	background: var(--acx-neutral-warm);
	border: 2px solid var(--acx-border);
	border-radius: 50%;
	box-sizing: border-box;
	display: inline-flex;
	flex: 0 0 34px;
	flex-shrink: 0;
	font-size: var(--acx-text-1);
	font-weight: 700;
	height: 34px;
	inline-size: 34px;
	justify-content: center;
	max-width: 34px;
	min-width: 34px;
	position: relative;
	width: 34px;
	z-index: 1;
}

.acx-order-progress__marker .lucide {
	height: 16px;
	width: 16px;
}

.acx-order-progress__label {
	display: grid;
	gap: 2px;
	padding-right: var(--acx-space-2);
}

.acx-order-progress__label small {
	color: var(--acx-green-accent);
	font-size: 11px;
	font-weight: 600;
}

.acx-order-progress__step.is-complete,
.acx-order-progress__step.is-current {
	color: var(--acx-green-house);
}

.acx-order-progress__step.is-complete .acx-order-progress__marker,
.acx-order-progress__step.is-current .acx-order-progress__marker {
	background: var(--acx-green-accent);
	border-color: var(--acx-green-accent);
	color: var(--acx-white);
}

.acx-order-progress__step.is-complete:not(:last-child)::after {
	background: var(--acx-green-accent);
}

.acx-order-tracker__grid {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-order-detail-card {
	background: var(--acx-white);
	border: 1px solid var(--acx-divider);
	border-radius: var(--acx-radius-card);
	min-width: 0;
	padding: var(--acx-space-4);
}

.acx-order-detail-card h3 {
	align-items: center;
	display: flex;
	gap: var(--acx-space-2);
	margin-bottom: var(--acx-space-3);
}

.acx-order-detail-card h3 .lucide {
	color: var(--acx-green-accent);
	height: 20px;
	width: 20px;
}

.acx-order-details-list,
.acx-order-summary-list {
	display: grid;
	gap: var(--acx-space-2);
	margin: 0;
}

.acx-order-details-list > div,
.acx-order-summary-list > div {
	display: flex;
	gap: var(--acx-space-3);
	justify-content: space-between;
}

.acx-order-details-list dt,
.acx-order-summary-list dt {
	color: var(--acx-text-soft);
}

.acx-order-details-list dd,
.acx-order-summary-list dd {
	font-weight: 600;
	margin: 0;
	max-width: 62%;
	overflow-wrap: anywhere;
	text-align: right;
}

.acx-order-summary-list .is-total {
	border-top: 1px solid var(--acx-divider);
	font-size: var(--acx-text-4);
	margin-top: var(--acx-space-2);
	padding-top: var(--acx-space-3);
}

.acx-order-item-list {
	display: grid;
}

.acx-order-item {
	align-items: center;
	display: flex;
	gap: var(--acx-space-3);
	justify-content: space-between;
	padding-block: var(--acx-space-2);
}

.acx-order-item + .acx-order-item {
	border-top: 1px solid var(--acx-divider);
}

.acx-order-item > div {
	display: grid;
}

.acx-order-item span {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-order-detail-card__link {
	align-items: center;
	border-top: 1px solid var(--acx-divider);
	color: var(--acx-green-accent);
	display: flex;
	font-size: var(--acx-text-2);
	font-weight: 600;
	gap: var(--acx-space-2);
	margin-top: var(--acx-space-3);
	padding-top: var(--acx-space-3);
	text-decoration: none;
}

.acx-order-detail-card__link .lucide {
	height: 18px;
	width: 18px;
}

.acx-order-support {
	align-items: center;
	background: var(--acx-neutral-cool);
	border: 1px solid var(--acx-divider);
	border-radius: var(--acx-radius-card);
	display: grid;
	gap: var(--acx-space-3);
	grid-template-columns: auto minmax(0, 1fr) auto;
	padding: var(--acx-space-3) var(--acx-space-4);
}

.acx-order-support__icon {
	align-items: center;
	background: var(--acx-valid-tint);
	border-radius: 50%;
	color: var(--acx-green-accent);
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.acx-order-support__icon .lucide {
	height: 21px;
	width: 21px;
}

.acx-order-support p {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-2);
	margin: 2px 0 0;
}

.acx-order-review {
	background: var(--acx-gold-lightest);
	border: 1px solid var(--acx-gold-light);
	border-radius: var(--acx-radius-card);
	display: grid;
	gap: var(--acx-space-3);
	padding: var(--acx-space-4);
}

.acx-order-review h3,
.acx-order-review p {
	margin-bottom: 0;
}

.acx-review-form {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-review-rating {
	border: 0;
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
}

.acx-review-rating input {
	height: 1px;
	opacity: 0;
	position: absolute;
	width: 1px;
}

.acx-review-rating label {
	color: var(--acx-border);
	cursor: pointer;
	font-size: 36px;
	line-height: 1;
	padding: 2px;
}

.acx-review-rating label:hover,
.acx-review-rating label:hover ~ label,
.acx-review-rating label:has(input:checked),
.acx-review-rating label:has(input:checked) ~ label {
	color: var(--acx-gold);
}

.acx-review-rating input:focus-visible + span {
	outline: 2px solid var(--acx-green-accent);
	outline-offset: 2px;
}

.acx-saved-review {
	display: grid;
	gap: var(--acx-space-2);
}

.acx-saved-review__stars {
	color: var(--acx-gold);
	font-size: 26px;
	letter-spacing: 2px;
}

.acx-saved-review span:last-child {
	color: var(--acx-green-accent);
	font-size: var(--acx-text-2);
	font-weight: 600;
}

.acx-account-toolbar {
	align-items: center;
	background: var(--acx-green-house);
	border-radius: var(--acx-radius-card);
	color: var(--acx-text-white);
	display: flex;
	gap: var(--acx-space-4);
	justify-content: space-between;
	padding: var(--acx-space-4);
}

.acx-account-toolbar__identity {
	align-items: center;
	display: flex;
	gap: var(--acx-space-3);
	min-width: 0;
}

.acx-account-avatar {
	align-items: center;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	color: var(--acx-gold-light);
	display: inline-flex;
	flex: 0 0 52px;
	height: 52px;
	justify-content: center;
	width: 52px;
}

.acx-account-avatar svg {
	height: 25px;
	width: 25px;
}

.acx-account-toolbar__identity > div {
	display: grid;
	gap: 1px;
	min-width: 0;
}

.acx-account-toolbar__identity p {
	color: var(--acx-text-white-soft);
	font-size: var(--acx-text-1);
	margin: 0;
}

.acx-account-toolbar__identity strong {
	font-size: var(--acx-text-4);
	overflow-wrap: anywhere;
}

.acx-account-toolbar__identity > div > span {
	color: var(--acx-text-white-soft);
	font-size: var(--acx-text-2);
	overflow-wrap: anywhere;
}

.acx-account-toolbar__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--acx-space-2);
	justify-content: flex-end;
}

.acx-account-role {
	align-items: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--acx-radius-pill);
	color: var(--acx-text-white);
	display: inline-flex;
	font-size: var(--acx-text-1);
	font-weight: 600;
	gap: 6px;
	min-height: 34px;
	padding: 6px 12px;
}

.acx-account-role svg {
	color: var(--acx-gold-light);
	height: 15px;
	width: 15px;
}

.acx-account-toolbar__actions .acx-btn--secondary {
	background: var(--acx-white);
}

.acx-account-toolbar__actions .acx-btn--ghost {
	color: var(--acx-text-white);
}

.acx-account-toolbar__actions .acx-btn--ghost:hover,
.acx-account-toolbar__actions .acx-btn--ghost:focus {
	background: rgba(255, 255, 255, 0.1);
}

.acx-account-summary {
	display: grid;
	gap: var(--acx-space-3);
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.acx-account-summary__card {
	align-items: center;
	display: flex;
	gap: var(--acx-space-3);
	min-height: 96px;
	padding: var(--acx-space-3);
}

.acx-account-summary__card > span {
	align-items: center;
	background: var(--acx-valid-tint);
	border-radius: 50%;
	color: var(--acx-green-accent);
	display: inline-flex;
	flex: 0 0 42px;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.acx-account-summary__card > span svg {
	height: 20px;
	width: 20px;
}

.acx-account-summary__card > div {
	display: grid;
	gap: 2px;
}

.acx-account-summary__card strong {
	color: var(--acx-green-house);
	font-size: var(--acx-text-5);
	line-height: 1.1;
}

.acx-account-summary__card small {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-2);
}

.acx-account-guest-orders {
	margin-top: var(--acx-space-1);
}

.acx-account-orders {
	align-content: start;
}

.acx-account-order-group {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-account-order-group__head {
	align-items: center;
	display: flex;
	gap: var(--acx-space-3);
	justify-content: space-between;
}

.acx-account-order-group__head h3 {
	font-size: var(--acx-text-3);
	margin: 0;
}

.acx-account-order-group__head span {
	align-items: center;
	background: var(--acx-neutral-warm);
	border-radius: 50%;
	color: var(--acx-text-soft);
	display: inline-flex;
	font-size: var(--acx-text-1);
	font-weight: 600;
	height: 28px;
	justify-content: center;
	width: 28px;
}

.acx-account-order-list {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-account-order {
	border: 1px solid var(--acx-divider);
	border-radius: var(--acx-radius-card);
	color: var(--acx-text);
	display: grid;
	gap: var(--acx-space-3);
	padding: var(--acx-space-3);
}

.acx-account-order header {
	align-items: flex-start;
	display: flex;
	gap: var(--acx-space-3);
	justify-content: space-between;
}

.acx-account-order header > div:first-child {
	display: grid;
	gap: 2px;
}

.acx-account-order header > div:first-child strong {
	color: var(--acx-green-accent);
}

.acx-account-order header > div:first-child span {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-account-order__badges {
	display: flex;
	flex-wrap: wrap;
	gap: var(--acx-space-1);
	justify-content: flex-end;
}

.acx-account-order__details {
	background: var(--acx-neutral-cool);
	border-radius: calc(var(--acx-radius-card) - 4px);
	display: grid;
	gap: var(--acx-space-2);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	padding: var(--acx-space-2);
}

.acx-account-order__details > div {
	align-items: center;
	color: var(--acx-text-soft);
	display: grid;
	font-size: var(--acx-text-1);
	gap: var(--acx-space-2);
	grid-template-columns: 15px minmax(0, 1fr);
	min-width: 0;
}

.acx-account-order__details svg {
	color: var(--acx-green-accent);
	height: 15px;
	width: 15px;
}

.acx-account-order__details span,
.acx-account-order__details strong {
	overflow-wrap: anywhere;
}

.acx-account-order__details strong {
	color: var(--acx-green-house);
}

.acx-account-order__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--acx-space-2);
}

.acx-account-past-orders {
	border-top: 1px solid var(--acx-divider);
	margin-top: var(--acx-space-1);
	padding-top: var(--acx-space-3);
}

.acx-account-past-orders > summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: var(--acx-space-2);
	grid-template-columns: minmax(0, 1fr) auto 18px;
	list-style: none;
	padding: var(--acx-space-2) 0;
}

.acx-account-past-orders > summary::-webkit-details-marker {
	display: none;
}

.acx-account-past-orders > summary > span {
	align-items: center;
	display: flex;
	font-weight: 600;
	gap: var(--acx-space-2);
}

.acx-account-past-orders > summary > span svg,
.acx-account-past-orders > summary > svg {
	height: 17px;
	width: 17px;
}

.acx-account-past-orders > summary > span svg {
	color: var(--acx-green-accent);
}

.acx-account-past-orders > summary > strong {
	align-items: center;
	background: var(--acx-neutral-warm);
	border-radius: 50%;
	display: inline-flex;
	font-size: var(--acx-text-1);
	height: 28px;
	justify-content: center;
	width: 28px;
}

.acx-account-past-orders > summary > svg {
	color: var(--acx-text-soft);
	transition: transform var(--acx-duration-fast) ease;
}

.acx-account-past-orders[open] > summary > svg {
	transform: rotate(180deg);
}

.acx-account-past-orders > .acx-account-order-list {
	padding-top: var(--acx-space-3);
}

.acx-account-profile {
	align-self: start;
	display: grid;
	gap: var(--acx-space-3);
	min-width: 0;
	position: sticky;
	top: var(--acx-space-4);
}

.acx-account-saved-address {
	align-content: start;
}

.acx-account-address-icon {
	align-items: center;
	background: var(--acx-valid-tint);
	border-radius: 50%;
	color: var(--acx-green-accent);
	display: inline-flex;
	height: 40px;
	justify-content: center;
	width: 40px;
}

.acx-account-address-icon svg {
	height: 19px;
	width: 19px;
}

.acx-account-address-summary {
	background: var(--acx-neutral-warm);
	border-radius: calc(var(--acx-radius-card) - 4px);
	display: grid;
	gap: 2px;
	padding: var(--acx-space-3);
}

.acx-account-address-summary span,
.acx-account-address-summary small {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-account-address-list {
	display: grid;
	gap: var(--acx-space-2);
}

.acx-account-address-card {
	border: 1px solid var(--acx-divider);
	border-radius: calc(var(--acx-radius-card) - 4px);
	display: grid;
	gap: var(--acx-space-2);
	padding: var(--acx-space-3);
}

.acx-account-address-card.is-default {
	background: var(--acx-valid-tint);
	border-color: var(--acx-green-accent);
}

.acx-account-address-card > header {
	align-items: flex-start;
	display: flex;
	gap: var(--acx-space-2);
	justify-content: space-between;
}

.acx-account-address-card > header > div {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: var(--acx-space-2);
}

.acx-account-address-card > header > svg {
	color: var(--acx-green-accent);
	flex: 0 0 auto;
	height: 18px;
	width: 18px;
}

.acx-account-address-card > p {
	font-size: var(--acx-text-2);
	margin: 0;
	overflow-wrap: anywhere;
}

.acx-account-address-card > span {
	color: var(--acx-text-soft);
	font-size: var(--acx-text-1);
}

.acx-account-address-actions {
	align-items: center;
	display: flex;
	gap: var(--acx-space-1);
}

.acx-account-address-actions form {
	margin: 0;
}

.acx-account-address-actions .acx-btn--ghost {
	color: var(--acx-green-accent);
	min-height: 34px;
	padding: 6px 10px;
}

.acx-account-address-actions .acx-account-address-delete {
	color: var(--acx-danger);
	padding: 6px;
}

.acx-account-address-actions svg {
	height: 16px;
	width: 16px;
}

.acx-account-address-editor {
	margin-top: var(--acx-space-1);
}

.acx-account-address-form {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-account-address-form .acx-check {
	margin: 0;
}

.acx-account-contact {
	align-content: start;
}

.acx-account-profile-editor {
	border-top: 1px solid var(--acx-divider);
	padding-top: var(--acx-space-2);
}

.acx-account-profile-editor > summary {
	align-items: center;
	cursor: pointer;
	display: grid;
	gap: var(--acx-space-2);
	grid-template-columns: minmax(0, 1fr) 18px;
	list-style: none;
	padding: var(--acx-space-2) 0;
}

.acx-account-profile-editor > summary::-webkit-details-marker {
	display: none;
}

.acx-account-profile-editor > summary > span {
	align-items: center;
	color: var(--acx-green-accent);
	display: flex;
	font-size: var(--acx-text-2);
	font-weight: 600;
	gap: var(--acx-space-2);
}

.acx-account-profile-editor > summary svg {
	height: 16px;
	width: 16px;
}

.acx-account-profile-editor > summary > svg {
	color: var(--acx-text-soft);
	transition: transform var(--acx-duration-fast) ease;
}

.acx-account-profile-editor[open] > summary > svg {
	transform: rotate(180deg);
}

.acx-account-profile-editor > form {
	border-top: 1px solid var(--acx-divider);
	margin-top: var(--acx-space-2);
	padding-top: var(--acx-space-3);
}

.acx-customer-empty {
	align-items: center;
	display: flex;
	flex-direction: column;
	padding: var(--acx-space-6) var(--acx-space-3);
	text-align: center;
}

.acx-customer-empty > svg {
	color: var(--acx-green-accent);
	height: 36px;
	margin-bottom: var(--acx-space-3);
	width: 36px;
}

.acx-customer-empty h3 {
	margin-bottom: var(--acx-space-2);
}

.acx-customer-empty p {
	color: var(--acx-text-soft);
	margin-bottom: var(--acx-space-3);
}

.acx-account-page #loginform {
	display: grid;
	gap: var(--acx-space-3);
}

.acx-account-page #loginform p {
	display: grid;
	gap: var(--acx-space-1);
	margin: 0;
}

.acx-account-page #loginform label {
	font-size: var(--acx-text-2);
	font-weight: 600;
}

.acx-account-page #loginform input[type="text"],
.acx-account-page #loginform input[type="password"] {
	background: var(--acx-white);
	border: 1px solid var(--acx-border);
	border-radius: var(--acx-radius-field);
	font: inherit;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.acx-account-page #loginform .login-remember {
	display: block;
	font-size: var(--acx-text-2);
}

.acx-account-page #wp-submit {
	background: var(--acx-green-accent);
	border: 1px solid var(--acx-green-accent);
	border-radius: var(--acx-radius-pill);
	color: var(--acx-white);
	cursor: pointer;
	font: inherit;
	font-weight: 600;
	min-height: 44px;
	padding: 8px 18px;
}

@media (min-width: 720px) {
	.acx-customer-fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.acx-order-tracker__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.acx-order-tracker__grid > :last-child {
		grid-column: 1 / -1;
	}
}

@media (min-width: 960px) {
	.acx-customer-grid--tracking {
		grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	}

	.acx-customer-grid--account {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.acx-customer-grid--account-dashboard {
		align-items: start;
		grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
	}

	.acx-order-tracker__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.acx-order-tracker__grid > :last-child {
		grid-column: auto;
	}
}

@media (max-width: 719px) {
	.acx-order-tracker__header,
	.acx-customer-section-head {
		align-items: stretch;
		flex-direction: column;
	}

	.acx-order-tracker__badges {
		justify-content: flex-start;
	}

	.acx-order-tracker__header-aside {
		align-items: stretch;
		justify-items: stretch;
		width: 100%;
	}

	.acx-order-progress {
		overflow: visible;
	}

	.acx-order-progress__heading {
		align-items: flex-start;
		flex-direction: column;
		gap: var(--acx-space-1);
	}

	.acx-order-progress__list {
		display: grid;
		gap: 0;
		min-width: 0;
	}

	.acx-order-progress__step {
		align-items: flex-start;
		flex-direction: row;
		min-height: 58px;
	}

	.acx-order-progress__step:not(:last-child)::after {
		bottom: 0;
		height: auto;
		left: 16px;
		right: auto;
		top: 34px;
		width: 2px;
	}

	.acx-order-support {
		align-items: flex-start;
		grid-template-columns: auto minmax(0, 1fr);
	}

	.acx-order-support .acx-btn {
		grid-column: 1 / -1;
		justify-content: center;
		width: 100%;
	}

	.acx-account-toolbar {
		align-items: stretch;
		flex-direction: column;
	}

	.acx-account-toolbar__actions {
		justify-content: flex-start;
	}

	.acx-account-role {
		flex: 1 1 100%;
		justify-content: center;
	}

	.acx-account-summary {
		grid-template-columns: 1fr;
	}

	.acx-account-summary__card {
		min-height: 80px;
	}

	.acx-account-order header {
		align-items: flex-start;
		flex-direction: column;
	}

	.acx-account-order__badges {
		justify-content: flex-start;
	}

	.acx-account-order__details {
		grid-template-columns: 1fr;
	}

	.acx-account-order__actions .acx-btn {
		flex: 1 1 140px;
		justify-content: center;
	}

	.acx-account-profile {
		position: static;
	}
}
