/**
 * BEIZ Breadcrumb Styles
 */

.beiz-breadcrumb {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.5;
    color: #75736a;
}

.beiz-breadcrumb__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-family: inherit;
}

.beiz-breadcrumb__item {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: inherit;
}

.beiz-breadcrumb__link {
    color: #75736a;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: inherit;
}

.beiz-breadcrumb__link:hover,
.beiz-breadcrumb__link:focus {
    color: #fe6012;
    text-decoration: none;
}

.beiz-breadcrumb__current {
    color: #181818;
    font-weight: 500;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: inherit;
}

.beiz-breadcrumb__separator {
    list-style: none;
    color: #d1d5db;
    font-weight: 300;
    user-select: none;
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Mobile */
@media (max-width: 640px) {
    .beiz-breadcrumb {
        font-size: 13px;
    }

    .beiz-breadcrumb__list {
        gap: 6px;
    }

    /* На мобильных длинное название текущего товара может перенестись */
    .beiz-breadcrumb__item--current {
        white-space: normal;
    }
}
