body.woocommerce-account .woocommerce {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 24px;
	align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 14px;
	list-style: none;
	border: 1px solid var(--mm-gray-100);
	border-radius: var(--mm-radius-lg);
	background: #fff;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link {
	margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link a {
	display: block;
	padding: 11px 12px;
	border-radius: var(--mm-radius-sm);
	font-weight: 600;
	color: var(--mm-muted);
}

body.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
	background: var(--mm-gray-100);
	color: var(--mm-text);
}

body.woocommerce-account .woocommerce-MyAccount-content {
	width: 100%;
}

body.woocommerce-account .woocommerce-MyAccount-content > h2,
body.woocommerce-account .woocommerce-MyAccount-content > h3,
body.woocommerce-account .woocommerce-MyAccount-content .entry-title {
	margin-bottom: 16px;
}

.mm-account-dashboard {
	display: grid;
	gap: 16px;
}

.mm-account-dashboard__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
}

.mm-account-dashboard__avatar img {
	width: 52px;
	height: 52px;
	border-radius: 999px;
}

.mm-account-dashboard__meta h3 {
	margin: 0;
	font-size: 18px;
}

.mm-account-dashboard__meta p {
	margin: 4px 0 0;
	color: var(--mm-muted);
	font-size: 14px;
}

.mm-account-dashboard__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.mm-account-dashboard__card {
	display: block;
	padding: 16px;
	text-decoration: none;
	color: var(--mm-text);
}

.mm-account-dashboard__card h4 {
	margin: 0 0 8px;
	font-size: 18px;
}

.mm-account-dashboard__card p {
	margin: 0;
	font-size: 14px;
	color: var(--mm-muted);
}

.mm-account-dashboard__card:hover {
	border-color: #d7dde4;
	transform: translateY(-1px);
	transition: all 0.2s ease;
}

@media (max-width: 900px) {
	body.woocommerce-account .woocommerce {
		grid-template-columns: 1fr;
	}

	.mm-account-dashboard__grid {
		grid-template-columns: 1fr;
	}
}
