/* =====================================================================
   breadcrumb.css — moderní separátor pro drobečkovou navigaci
   Override starých CSS triangle "zobáčků" definovaných v style.css.
   Pattern: subtle chevron (›) v Riano lososové barvě jako separátor.
   ===================================================================== */

.breadcrumbBar {
	padding: 8px 0 12px;
	margin-bottom: 18px;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	padding: 0;
	margin: 0;
	background: transparent;
	font-size: 13px;
	line-height: 1.5;
	color: #6b6660;
}

.breadcrumb li {
	display: inline-flex;
	align-items: center;
	position: relative;
	padding: 0;
	margin: 0;
	min-width: 0;
}

/*
   Vyřízne staré CSS triangle "zobáčky" z style.css.
   Originál: border-left:8px solid #ccc + border-left:10px solid #fff (overlay).
   Tyhle resetujeme jako prázdný pseudo-prvek bez borderu/triangle.
*/
.breadcrumb li::before,
.breadcrumb li::after {
	content: "" !important;
	border: 0 !important;
	background: none !important;
	width: 0 !important;
	height: 0 !important;
	position: static !important;
}

/* Vlastní separátor — chevron mezi sousedními položkami */
.breadcrumb li + li::before {
	content: "›" !important;
	display: inline-flex !important;
	align-items: center !important;
	padding: 0 10px !important;
	color: #c97b7b !important;        /* Riano lososová — jemný akcent */
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 1 !important;
	opacity: 0.6 !important;
	width: auto !important;
	height: auto !important;
}

.breadcrumb li a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	max-width: 240px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #6b6660;
	text-decoration: none;
	font-weight: 400;
	transition: color .15s ease;
}

.breadcrumb li a:hover {
	color: #c97b7b;
	text-decoration: none;
}

/* Ikonka domeček v prvním <li> */
.breadcrumb li:first-child img {
	height: 14px;
	width: auto;
	opacity: 0.7;
	transition: opacity .15s ease;
}
.breadcrumb li:first-child a:hover img { opacity: 1; }

/* Poslední položka (aktuální stránka) — výraznější, žádný odkaz hover */
.breadcrumb li:last-child a,
.breadcrumb li:last-child {
	color: #2a2522;
	font-weight: 600;
	max-width: 320px;
}

@media (max-width: 575px) {
	.breadcrumb { font-size: 12px; }
	.breadcrumb li a { max-width: 140px; }
	.breadcrumb li:last-child { max-width: 180px; }
	.breadcrumb li + li::before {
		padding: 0 6px !important;
		font-size: 14px !important;
	}
}
