.cp-breadcrums {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.4;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    padding: 0 15px;
    box-sizing: border-box;
}

.cp-breadcrums::-webkit-scrollbar {
    display: none;
}

.cp-breadcrums a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cp-breadcrums a:hover {
    color: #007bff;
}

.cp-breadcrums a::after {
    content: "/";
    margin-left: 8px;
    color: #adb5bd;
    pointer-events: none;
}

.cp-breadcrums .current {
    color: #212529;
    font-weight: 500;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cp-breadcrums {
        padding-bottom: 5px;
    }
}
