/* Kontener */
.smart-breadcrumb {
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
}

/* Lista */
.smart-breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

/* Elementy */
.smart-breadcrumb li {
    display: flex;
    align-items: center;
    color: #777;
}

/* Linki */
.smart-breadcrumb li a {
    
    color: #242222;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;

}

.smart-breadcrumb li a:hover {
    color: #000;
    text-decoration: none;

}

/* Separator */
.smart-breadcrumb li::after {
    content: "/";
    margin: 0 4px;
    color: #1d1b1b;
    font-size: 14px;
}

/* Ostatni element (produkt) */
.smart-breadcrumb li:last-child {
    color: #000;
    font-weight: 500;
}

.smart-breadcrumb li:last-child::after {
    content: "";
    margin: 0;
}