/* =========================
   Breadcrumb
========================= */
.td-breadcrumb {
    background: var(--color-cream);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding: .75rem 0;
}

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

.td-bc__item {
    display: flex;
    align-items: center;
    font-size: .95rem;
    color: #666;
}

.td-bc__item a {
    color: var(--color-black);
    text-decoration: none;
    transition: color .2s ease;
}

.td-bc__item a:hover {
    color: var(--color-rosegold);
}

.td-bc--chevron .td-bc__item + .td-bc__item::before {
    content: "›";
    display: inline-block;
    margin: 0 .5rem;
    font-size: 1rem;
    line-height: 1;
    color: var(--color-rosegold);
    font-weight: 700;
}

/* فقط آیتم فعلی بولد باشد (چه محصول، چه آخرین دسته در لیست) */
.td-bc__item.is-current a {
    font-weight: 700;
    color: var(--color-black);
    pointer-events: auto;
}

/* کد محصول هم‌رنگ و هم‌وزن نام محصول */
.td-bc__code {
    margin-inline-start: .25rem;
    white-space: nowrap;
    font-weight: inherit;
    color: inherit;
}
