/* Стили для хлебных крошек */
.breadcrumb-nav {
    background-color: #f8f9fa;
    padding: 0;
    margin-bottom: 20px;
    border-bottom: none;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.breadcrumb-item {
    display: inline-block;
    color: #6c757d;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
    margin: 0 8px;
    font-weight: bold;
}

.breadcrumb-item a {
    color: #00a7ff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #0088cc;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .breadcrumb-nav {
        padding: 8px 0;
        margin-bottom: 0;
    }

    .breadcrumb {
        font-size: 12px;
        display: flex;
        flex-wrap: nowrap;
        width: 90vw;
        overflow-x: auto;
        margin: 0 auto;
        padding: 0 0 10px 0;
    }

    .breadcrumb-item + .breadcrumb-item {
        display: flex;
        flex-wrap: nowrap;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 6px;
    }

    .breadcrumb-item a {
        white-space: nowrap;
    }

    .breadcrumb-item.active {
        white-space: nowrap;
    }
}

/* Стили для контейнера */
.breadcrumb-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0;
}

/* Скрытие на главной странице */
.no-breadcrumbs .breadcrumb-nav {
    display: none;
}
