/* Modern Breadcrumb Styles */
.bx-breadcrumb {
    font-family: 'Onest', Arial, sans-serif;
    background: transparent;
    padding: 12px 0;
    margin: 0;
}

.bx-breadcrumb .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    /* padding: 0 20px; */
}

.bx-breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666;
    white-space: nowrap;
}

.bx-breadcrumb-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bx-breadcrumb-item a:hover {
    color: #005bff;
    text-decoration: underline;
}

.bx-breadcrumb-current {
    font-weight: 500;
    color: #1a1a1a;
}

/* Separator styling */
.bx-breadcrumb-item:before {
    content: '•';
    color: #ccc;
    margin-right: 8px;
    font-size: 14px;
}

.bx-breadcrumb-item:first-child:before {
    content: '';
    margin-right: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bx-breadcrumb .container {
        gap: 4px;
        padding: 0 10px 10px 10px;
    }

    .bx-breadcrumb-item {
        font-size: 14px;
    }

    .bx-breadcrumb-item:before {
        margin-right: 4px;
    }
}

@media (max-width: 480px) {
    .bx-breadcrumb-item {
        font-size: 12px;
    }
}