/**
 * 通用面包屑组件 - sanxio-path-bar
 * 用于搜索页、商品详情等，统一样式，便于复用。
 */
nav.sanxio-path-bar {
	flex: 0 0 100%;
	width: 100%;
	order: -1;
	padding: 8px var(--sanxio-block-padding-x);
	margin: 0;
	border: none;
	border-radius: var(--md-sys-shape-corner-small);
	background-color: var(--md-sys-color-surface-container-lowest);
	font-family: var(--md-sys-typescale-body-large-font);
	font-size: var(--md-sys-typescale-label-large-size);
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: var(--md-sys-color-on-surface-variant);
	text-decoration: none;
	box-shadow: var(--md-sys-elevation-level0);
	box-sizing: border-box;
}
nav.sanxio-path-bar a,
nav.sanxio-path-bar a:hover,
nav.sanxio-path-bar a:focus,
nav.sanxio-path-bar a:visited {
	color: var(--md-sys-color-primary);
	text-decoration: none !important;
	border-bottom: none !important;
	transition: color .2s ease;
}
nav.sanxio-path-bar a:hover {
	opacity: 0.9;
}
.sanxio-path-bar__sep {
	margin: 0 var(--sr-space-sm, 8px);
	color: var(--md-sys-color-outline);
	font-weight: 300;
	user-select: none;
}
.sanxio-path-bar__current {
	color: var(--md-sys-color-on-surface);
	font-weight: 600;
}
/* 搜索页：路径条下方间距清除，与高级搜索卡片紧贴 */
.mdc-search-page__inner > nav.sanxio-path-bar + * {
	margin-top: calc(-1 * var(--sanxio-content-gap, 16px));
}
/* 商品页：路径条下方无间距 */
.mdc-show-page__inner > nav.sanxio-path-bar + * {
	margin-top: 0;
}
@media (max-width: 767px) {
	nav.sanxio-path-bar.sanxio-path-bar--hide-mobile {
		display: none !important;
	}
}

