/**
 * Storefront breadcrumb — single source (cat / sub / type / service / static pages).
 * Parent links: no hover pill; current page is plain text.
 */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.35);
    font-size: var(--text-xs, 11px);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.01em;
    margin: 0 0 0.5rem;
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.breadcrumb::-webkit-scrollbar {
    display: none;
}

a.breadcrumb-link,
.breadcrumb-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    white-space: nowrap;
    font-weight: 400;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.6;
    margin: 0 2px;
    user-select: none;
    flex-shrink: 0;
}

.breadcrumb-current {
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    flex-shrink: 0;
}
