/* Стили для хлебных крошек - только текст */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 0 5px 0;
    font-size: 16px;
    border-bottom: 1px solid #c0c0c0;
    margin-bottom: 20px;
}

.breadcrumb a,
.breadcrumb span {
    color: #7e7e7e;
    text-decoration: none !important;
    font-weight: 400;
}

.breadcrumb a {
    cursor: pointer;
}

.breadcrumb a:hover {
    text-decoration: underline;
    color: black;
}

.breadcrumb .current {
    color: #018901;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb .current:hover {
    color: #006400;
}
/* .breadcrumb a[href="/"] {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a[href="/"]::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/template/icon/home.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: top;
} */

/* Разделитель - стрелочка из картинки */
.breadcrumb a:not(:last-child)::after,
.breadcrumb span:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 16px; /* Ширина стрелочки */
    height: 16px; /* Высота стрелочки */
    margin: 0 8px; /* Отступы вокруг стрелочки */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666666'%3E%3Crect x='11.5' y='5' width='1' height='14'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

/* Для лучшего выравнивания можно добавить */
.breadcrumb a,
.breadcrumb span {
    display: flex;
    align-items: center;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .breadcrumb a:not(:last-child)::after,
    .breadcrumb span:not(:last-child)::after {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}