/* =============================================
   Breadcrumb Widget
   ============================================= */

.bcw-breadcrumbs {
	display: block;
}

/* ----- List ----- */

.bcw-breadcrumbs .bcw-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ----- Item ----- */

.bcw-breadcrumbs .bcw-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* ----- Link ----- */

.bcw-breadcrumbs .bcw-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.bcw-breadcrumbs .bcw-link.products {
	pointer-events: none;
}

.bcw-breadcrumbs .bcw-link:hover {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

/* ----- Separator ----- */

.bcw-breadcrumbs .bcw-sep {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #ffffff;
	line-height: 1;
}

.bcw-breadcrumbs .bcw-sep svg {
	width: 16px;
	height: 16px;
	display: block;
}

/* ----- Current page (last crumb) ----- */

.bcw-breadcrumbs .bcw-text {
	color: rgba(255, 255, 255, 0.6);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
	margin: 0;
	padding: 0;
}

/* =============================================
   Responsive
   ============================================= */

@media ( max-width: 575px ) {
	.bcw-breadcrumbs .bcw-link,
	.bcw-breadcrumbs .bcw-text {
		font-size: 12px;
	}

	.bcw-breadcrumbs .bcw-item {
		gap: 6px;
	}

	.bcw-breadcrumbs .bcw-sep svg {
		width: 12px;
		height: 12px;
	}
}
