/* Стили для хлебных крошек */
.breads {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
    line-height: 1.4;
}

.breads-item {
    position: relative;
    margin-right: 15px;
    padding-right: 15px;
}

.breads-item:not(:last-child)::after {
    content: ">";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
}

.breads-item-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breads-item-link:hover {
    color: #b8860b;
    text-decoration: underline;
}

.breads-item-current {
    color: #333;
    font-weight: 500;
}

/* Иконка вместо текста ">" */
.icon-right-open-after::after {
    font-family: "FontAwesome";
    content: "\f054";
    margin-left: 8px;
    font-size: 10px;
    color: #999;
}

/* Адаптивность */
@media (max-width: 768px) {
    .breads {
        font-size: 13px;
    }

    .breads-item {
        margin-right: 10px;
        padding-right: 10px;
    }
}