/* =============================================================
   Custom Breadcrumb Component
   Scoped under .cbcr-breadcrumb
   ============================================================= */

.cbcr-breadcrumb {
    display: block;
    width: 100%;
}

.cbcr-breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0 !important;
    gap: 3px;
}

.cbcr-breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ── Chevron icon before parent ── */
.cbcr-breadcrumb__icon {
    font-size: 12px;
    color: #2C67FF;
    line-height: 1 !important;
    flex-shrink: 0;
    margin-right: 4px;
}

/* ── Parent link ── */
.cbcr-breadcrumb__link {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #2C67FF;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbcr-breadcrumb__link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #2C67FF;
    transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cbcr-breadcrumb__link:hover::after {
    width: 100%;
}

.cbcr-breadcrumb__link:hover {
    color: #2C67FF;
}

/* ── Separator ── */
.cbcr-breadcrumb__sep {
    font-size: 14px;
    font-weight: 400;
    color: #515869;
    line-height: 1;
    user-select: none;
    flex-shrink: 0;
}

/* ── Current page label ── */
.cbcr-breadcrumb__item--current {
    gap: 0;
}

.cbcr-breadcrumb__current {
    font-size: 16px;
    font-weight: 400;
    color: #515869;
    line-height: 1;
}

