/* Breadcrumb trail on the shop and product pages. */
.cb-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 16px; margin: 0 0 18px; font-size: 14px; }
.cb-breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; list-style: none; margin: 0; padding: 0; }
.cb-breadcrumbs li { display: inline-flex; align-items: center; margin: 0; color: #64748b; }
.cb-breadcrumbs li + li::before { content: "\203A"; margin: 0 8px; color: #94a3b8; font-size: 16px; line-height: 1; }
.cb-breadcrumbs a { color: var(--cb-primary, #1d4ed8); text-decoration: none; }
.cb-breadcrumbs a:hover { text-decoration: underline; }
.cb-breadcrumbs .cb-crumb-current { color: #0f172a; font-weight: 600; overflow-wrap: anywhere; }
.cb-crumb-back { font-size: 13px; white-space: nowrap; }
@media (max-width: 600px) { .cb-crumb-back { order: -1; } }
