/* Vehicle compatibility & garage */

.vima-active-vehicle {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 1rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(90deg, var(--brand-50), #fff);
	border-bottom: 1px solid var(--brand-100);
	font-size: 0.82rem;
}
.vima-active-vehicle__pill {
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	background: var(--brand-600);
	color: #fff;
	font-weight: 600;
	font-size: 0.72rem;
}
.vima-active-vehicle__link {
	color: var(--brand-700);
	font-weight: 700;
}

.vima-shop-filter {
	margin-bottom: 1.25rem;
}
.vima-shop-filter__row {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 1rem;
}
.vima-shop-filter__vehicle {
	flex: 1;
	min-width: 180px;
}
.vima-shop-filter__label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: var(--vima-muted);
	margin-bottom: 0.35rem;
}
.vima-shop-filter select {
	width: 100%;
	padding: 0.55rem 0.75rem;
	border-radius: 10px;
	border: 1px solid var(--vima-border);
	font-family: inherit;
	font-size: 0.88rem;
	background: #fff;
}
.vima-shop-filter__toggle {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.88rem;
	font-weight: 600;
	cursor: pointer;
	white-space: nowrap;
}
.vima-shop-filter__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.vima-shop-filter__form {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px dashed var(--brand-100);
}

.vima-vehicle-form__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	margin-bottom: 1rem;
}
@media (min-width: 640px) {
	.vima-vehicle-form__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.vima-vehicle-form__field--wide {
	grid-column: 1 / -1;
}
.vima-vehicle-form__field span {
	display: block;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--vima-muted);
	margin-bottom: 0.3rem;
}
.vima-vehicle-form__field select,
.vima-vehicle-form__field input {
	width: 100%;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--vima-border);
	border-radius: 10px;
	font-family: inherit;
	font-size: 0.88rem;
}
.vima-vehicle-form__field select:disabled {
	opacity: 0.55;
}
.vima-vehicle-form__hint {
	margin-top: 0.5rem;
	font-size: 0.82rem;
}
.vima-vehicle-form__hint.is-success { color: var(--success-600); }
.vima-vehicle-form__hint.is-error { color: var(--error-500); }

.vima-compat-box {
	margin: 1rem 0;
}
.vima-compat-box__head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}
.vima-compat-box__head h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 800;
}
.vima-compat-box__status {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8rem;
	font-weight: 700;
	padding: 0.3rem 0.65rem;
	border-radius: 999px;
}
.vima-compat-box__status--ok {
	background: #ecfdf3;
	color: var(--success-600);
	border: 1px solid #a7f3d0;
}
.vima-compat-box__status--no {
	background: #fff7ed;
	color: var(--orange-600);
	border: 1px solid #fed7aa;
}
.vima-compat-box__list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.4rem;
}
.vima-compat-box__list li {
	padding: 0.55rem 0.75rem;
	background: var(--gray-50);
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid var(--gray-100);
}
.vima-compat-box__cta {
	margin: 0.75rem 0 0;
	font-size: 0.85rem;
}
.vima-compat-box__cta a {
	font-weight: 700;
	color: var(--brand-700);
}

.vima-product-card__badge--compat {
	background: var(--success-500) !important;
	color: #fff !important;
}

/* My Account — garage */
.vima-account-vehicles__head h2 {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
}
.vima-account-vehicles__head p {
	margin: 0 0 1.25rem;
	color: var(--vima-muted);
	font-size: 0.9rem;
}
.vima-garage-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}
.vima-garage-list__item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1rem;
	border: 1px solid var(--vima-border);
	border-radius: var(--vima-radius);
	background: #fff;
}
.vima-garage-list__item.is-active {
	border-color: var(--brand-400);
	background: var(--brand-50);
}
.vima-garage-list__badge {
	display: inline-block;
	margin-inline-start: 0.5rem;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--brand-700);
	background: #fff;
	padding: 0.15rem 0.5rem;
	border-radius: 999px;
}
.vima-garage-list__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}
.vima-garage-empty {
	color: var(--vima-muted);
	margin-bottom: 1rem;
}
.vima-account-vehicles__footer {
	margin-top: 1.5rem;
}
.vima-account-compat-products__head h2 {
	margin: 0 0 0.5rem;
	font-size: 1.2rem;
}
.vima-account-compat-products__switch {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.88rem;
}
.vima-account-compat-products__switch .vima-meta-pill.is-current {
	background: var(--brand-600);
	color: #fff;
}
.vima-account-compat-products__more {
	margin-top: 1.5rem;
	text-align: center;
}

.vima-btn--ghost {
	background: transparent;
	border: 1px solid var(--vima-border);
	color: var(--vima-muted);
}

/* Shop layout + collapsible filters */
.vima-shop-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}
.vima-shop-layout__content {
	min-width: 0;
}
.vima-shop-sidebar {
	position: sticky;
	top: 5rem;
	padding: 0.9rem;
}
.vima-shop-sidebar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
}
.vima-shop-sidebar__title {
	margin: 0;
	font-size: 1rem;
}
.vima-shop-sidebar__close {
	display: none;
	border: 0;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: var(--gray-600);
	padding: 0 0.25rem;
}
.vima-shop-filters-toggle {
	display: none;
	width: 100%;
	margin-bottom: 0.75rem;
}
.vima-shop-filters-backdrop {
	display: none;
}
.vima-shop-filters {
	display: grid;
	gap: 0.65rem;
}
.vima-filter-group {
	border: 1px solid var(--brand-100);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}
.vima-filter-group > summary {
	cursor: pointer;
	list-style: none;
	padding: 0.72rem 0.85rem;
	font-size: 0.88rem;
	font-weight: 700;
	color: var(--gray-800);
	background: linear-gradient(180deg, var(--brand-50), #fff);
}
.vima-filter-group > summary::-webkit-details-marker {
	display: none;
}
.vima-filter-group[open] > summary {
	border-bottom: 1px solid var(--brand-100);
}
.vima-filter-group__body {
	padding: 0.7rem 0.85rem;
	display: grid;
	gap: 0.6rem;
}
.vima-filter-group__body--terms {
	max-height: 220px;
	overflow: auto;
}
.vima-filter-field span {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--vima-muted);
}
.vima-filter-field select,
.vima-filter-price input {
	width: 100%;
	border: 1px solid var(--vima-border);
	border-radius: 10px;
	padding: 0.5rem 0.6rem;
	font-family: inherit;
	font-size: 0.86rem;
}
.vima-filter-switch {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--gray-800);
}
.vima-filter-help {
	margin: 0;
	font-size: 0.8rem;
	color: var(--vima-muted);
	line-height: 1.7;
}
.vima-filter-price {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}
.vima-filter-price span {
	display: block;
	font-size: 0.74rem;
	margin-bottom: 0.2rem;
	color: var(--vima-muted);
}
.vima-filter-check {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.84rem;
	padding: 0.15rem 0;
}
.vima-shop-filters__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

/* WooCommerce My Account — full redesign */
.woocommerce-account .vima-inner__body,
.woocommerce-account .woocommerce {
	padding-top: 1rem;
}
.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
	display: none !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	float: none !important;
	width: 100% !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
	position: sticky;
	top: 5rem;
	background: var(--vima-surface);
	border: 1px solid var(--brand-100);
	border-radius: var(--vima-radius-lg);
	box-shadow: var(--vima-shadow);
	padding: 0.75rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.35rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	text-align: right;
	padding: 0.7rem 0.85rem;
	border-radius: 10px;
	color: var(--gray-700);
	font-size: 0.9rem;
	font-weight: 600;
	border: 1px solid transparent;
	background: transparent;
	transition: 0.2s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation li a::before {
	content: "";
	width: 1.65rem;
	height: 1.65rem;
	border-radius: 9px;
	display: grid;
	place-items: center;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--brand-700);
	background: var(--brand-50);
	margin-inline-end: 0.45rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a::before { content: "⌂"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--orders a::before { content: "◧"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--downloads a::before { content: "↓"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-address a::before { content: "⌖"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--edit-account a::before { content: "⚙"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--my-vehicles a::before { content: "🚗"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--compatible-products a::before { content: "✓"; }
.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a::before { content: "↩"; }
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	color: var(--brand-700);
	background: linear-gradient(180deg, #fff, var(--brand-50));
	border-color: var(--brand-200);
}
.woocommerce-account .woocommerce-MyAccount-content {
	background: var(--vima-surface);
	border: 1px solid var(--brand-100);
	border-radius: var(--vima-radius-lg);
	box-shadow: var(--vima-shadow);
	padding: clamp(1rem, 2vw, 1.5rem);
	min-width: 0;
}
.woocommerce-account .woocommerce-MyAccount-content > :first-child {
	margin-top: 0;
}
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3 {
	margin-top: 0;
	color: var(--gray-900);
}

/* Dashboard cards/text */
.woocommerce-account .woocommerce-MyAccount-content p {
	color: var(--gray-700);
	line-height: 1.8;
}
.woocommerce-account .woocommerce-MyAccount-content a {
	color: var(--brand-700);
	font-weight: 600;
}

/* Tables: orders/downloads */
.woocommerce-account .woocommerce-MyAccount-content table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	border: 1px solid var(--brand-100);
	border-radius: 12px;
	overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-content table th,
.woocommerce-account .woocommerce-MyAccount-content table td {
	padding: 0.75rem 0.85rem;
	border-bottom: 1px solid var(--gray-100);
	text-align: right;
	vertical-align: middle;
}
.woocommerce-account .woocommerce-MyAccount-content table th {
	background: linear-gradient(180deg, var(--brand-50), #fff);
	color: var(--brand-800);
	font-size: 0.82rem;
	font-weight: 700;
}
.woocommerce-account .woocommerce-MyAccount-content table td {
	font-size: 0.88rem;
	color: var(--gray-800);
}
.woocommerce-account .woocommerce-MyAccount-content table tr:last-child td {
	border-bottom: 0;
}
.woocommerce-account .woocommerce-orders-table__cell-order-actions .button,
.woocommerce-account .woocommerce-MyAccount-content .button {
	border-radius: 10px !important;
	font-size: 0.82rem !important;
	padding: 0.5rem 0.8rem !important;
}
.woocommerce-account .woocommerce-orders-table__cell-order-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}
.woocommerce-account .woocommerce-orders-table__cell-order-actions .button {
	margin: 0 !important;
}

/* Forms */
.woocommerce-account .woocommerce-EditAccountForm,
.woocommerce-account .woocommerce-address-fields,
.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
	display: grid;
	gap: 0.85rem;
}
.woocommerce-account .woocommerce form .form-row {
	margin: 0;
}
.woocommerce-account .woocommerce form input.input-text,
.woocommerce-account .woocommerce form select,
.woocommerce-account .woocommerce form textarea {
	border: 1px solid var(--vima-border);
	border-radius: 10px;
	padding: 0.65rem 0.75rem;
	font-family: inherit;
	font-size: 0.9rem;
	background: #fff;
}
.woocommerce-account .woocommerce form label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--gray-700);
	margin-bottom: 0.3rem;
	display: inline-block;
}
.woocommerce-account .woocommerce form button.button,
.woocommerce-account .woocommerce-MyAccount-content .button[name="save_address"],
.woocommerce-account .woocommerce-MyAccount-content .button[name="save_account_details"] {
	background: var(--vima-gradient) !important;
	color: #fff !important;
	border-radius: 12px !important;
	padding: 0.72rem 1.1rem !important;
	font-weight: 700 !important;
	border: 0 !important;
}

/* Addresses */
.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.woocommerce-account .woocommerce-Address {
	border: 1px solid var(--brand-100);
	border-radius: 12px;
	padding: 1rem;
	background: var(--gray-50);
}
.woocommerce-account .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
}

/* Notices */
.woocommerce-account .woocommerce .woocommerce-message,
.woocommerce-account .woocommerce .woocommerce-info,
.woocommerce-account .woocommerce .woocommerce-error {
	margin: 0 0 0.9rem !important;
	border-radius: 10px !important;
	border-top: 0 !important;
	border-inline-start: 4px solid var(--brand-500) !important;
	padding: 0.8rem 0.95rem 0.8rem 2.5rem !important;
}

/* Our garage section alignment improvements inside account */
.woocommerce-account .vima-account-vehicles,
.woocommerce-account .vima-account-compat-products {
	margin-top: 0.25rem;
}
.woocommerce-account .vima-garage-form.vima-card-box {
	background: var(--gray-50);
	border-radius: 12px;
}

/* Account dashboard */
.vima-account-dashboard__head h2 {
	margin: 0 0 0.45rem;
	font-size: 1.35rem;
}
.vima-account-dashboard__head p {
	margin: 0;
	color: var(--vima-muted);
}
.vima-account-dashboard__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1rem 0 1.1rem;
}
.vima-account-dashboard__stat {
	border: 1px solid var(--brand-100);
	border-radius: 12px;
	background: linear-gradient(180deg, #fff, var(--brand-50));
	padding: 0.8rem 0.9rem;
}
.vima-account-dashboard__stat strong {
	display: block;
	font-size: 1.15rem;
	color: var(--brand-800);
}
.vima-account-dashboard__stat span {
	font-size: 0.78rem;
	color: var(--vima-muted);
}
.vima-account-dashboard__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

/* Check orders endpoint */
.vima-check-orders__head h2 {
	margin: 0 0 0.45rem;
}
.vima-check-orders__head p {
	margin: 0;
	color: var(--vima-muted);
}
.vima-check-orders__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 1rem 0;
}
.vima-check-orders__stat {
	border: 1px solid var(--brand-100);
	border-radius: 12px;
	padding: 0.75rem 0.9rem;
	background: var(--gray-50);
}
.vima-check-orders__stat strong {
	display: block;
	font-size: 1.05rem;
	color: var(--gray-900);
}
.vima-check-orders__stat span {
	font-size: 0.8rem;
	color: var(--vima-muted);
}
.vima-check-orders__status {
	display: inline-block;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	background: var(--brand-50);
	color: var(--brand-800);
	font-size: 0.75rem;
	font-weight: 700;
}
.vima-check-orders__status.is-success,
.woocommerce-account .order-status.status-completed,
.woocommerce-account .order-status.status-processing {
	background: #dcfce7;
	color: #166534;
}
.vima-check-orders__status.is-warning,
.woocommerce-account .order-status.status-on-hold,
.woocommerce-account .order-status.status-pending {
	background: #fef3c7;
	color: #92400e;
}
.vima-check-orders__status.is-danger,
.woocommerce-account .order-status.status-cancelled,
.woocommerce-account .order-status.status-failed,
.woocommerce-account .order-status.status-refunded {
	background: #fee2e2;
	color: #991b1b;
}
.vima-check-orders__status.is-neutral,
.woocommerce-account .order-status {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2rem 0.55rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	background: var(--brand-50);
	color: var(--brand-800);
	border: 0;
}
.vima-orders-filter-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0.9rem 0 1rem;
}
.vima-orders-filter-tab {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--brand-200);
	background: #fff;
	color: var(--brand-700);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
}
.vima-orders-filter-tab.is-active {
	background: var(--brand-600);
	border-color: var(--brand-600);
	color: #fff;
}

@media (max-width: 991px) {
	.vima-shop-filters-toggle {
		display: inline-flex;
		justify-content: center;
	}
	.vima-shop-layout {
		grid-template-columns: 1fr;
	}
	.vima-shop-sidebar {
		display: none;
		position: fixed;
		inset-inline: 0;
		bottom: 0;
		top: auto;
		z-index: 1001;
		max-height: min(85vh, 520px);
		overflow: auto;
		border-radius: 16px 16px 0 0;
		margin: 0;
		box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.18);
	}
	.vima-shop-layout.is-filters-open .vima-shop-sidebar {
		display: block;
	}
	.vima-shop-sidebar__close {
		display: block;
	}
	.vima-shop-filters-backdrop {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 1000;
		background: rgba(15, 23, 42, 0.45);
	}
	.vima-shop-filters-backdrop[hidden] {
		display: none;
	}
	body.vima-shop-filters-open {
		overflow: hidden;
	}
	.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		position: static;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.vima-account-dashboard__stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.woocommerce-account .woocommerce-Addresses {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 640px) {
	.woocommerce-account .woocommerce-MyAccount-content {
		padding: 0.9rem;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation {
		padding: 0.55rem;
	}
	.woocommerce-account .woocommerce-MyAccount-navigation ul {
		grid-template-columns: 1fr;
	}
	.vima-account-dashboard__stats,
	.vima-check-orders__stats {
		grid-template-columns: 1fr;
	}
	.woocommerce-account .woocommerce-MyAccount-content table,
	.woocommerce-account .woocommerce-MyAccount-content tbody,
	.woocommerce-account .woocommerce-MyAccount-content tr,
	.woocommerce-account .woocommerce-MyAccount-content th,
	.woocommerce-account .woocommerce-MyAccount-content td {
		display: block;
		width: 100%;
	}
	.woocommerce-account .woocommerce-MyAccount-content tr {
		border-bottom: 1px solid var(--gray-100);
		padding: 0.3rem 0;
	}
	.woocommerce-account .woocommerce-MyAccount-content th {
		border-bottom: 0;
		padding-bottom: 0.2rem;
	}
	.woocommerce-account .woocommerce-MyAccount-content td {
		padding-top: 0.2rem;
		border-bottom: 0;
	}
	.woocommerce-account .account-orders-table {
		border: 0;
		border-radius: 0;
	}
	.woocommerce-account .account-orders-table tr {
		background: #fff;
		border: 1px solid var(--brand-100);
		border-radius: 12px;
		padding: 0.6rem 0.7rem;
		margin-bottom: 0.6rem;
	}
	.woocommerce-account .account-orders-table td {
		display: flex !important;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		padding: 0.32rem 0 !important;
	}
	.woocommerce-account .account-orders-table td::before {
		content: attr(data-title);
		font-size: 0.76rem;
		font-weight: 700;
		color: var(--vima-muted);
	}
	.woocommerce-account .account-orders-table .woocommerce-orders-table__cell-order-actions {
		justify-content: flex-start;
	}
	.woocommerce-account .account-orders-table .woocommerce-orders-table__cell-order-actions::before {
		margin-inline-end: auto;
	}
}
