/**
 * DAF Marketplace — Breadcrumb Styles
 * Location: /assets/front/breadcrumbs.css
 */

.dafmp-single-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 0 0 18px;
	color: var(--dafmp-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.5;
}

.dafmp-single-breadcrumbs a {
	color: var(--dafmp-muted);
	transition: color 0.2s ease;
}

.dafmp-single-breadcrumbs a:hover {
	color: var(--dafmp-blue);
}

.dafmp-single-breadcrumbs__sep {
	color: #94a3b8;
}

.dafmp-single-breadcrumbs__current {
	color: var(--dafmp-heading);
	font-weight: 700;
}