.category-nav-shell {
    position: sticky;
    top: 0;
    z-index: 70;
    border-top: 1px solid #e4e4e4;
    border-bottom: 1px solid #111111;
    background: #ffffff;
}

.category-nav {
    width: min(1200px, calc(100% - 32px));
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-nav-link {
    min-width: max-content;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #111111;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    transition: color .14s ease, background-color .14s ease;
}

.category-nav-title {
    display: block;
    white-space: nowrap;
}

a.category-nav-link:hover,
a.category-nav-link:focus,
.category-nav-link-active {
    color: #f37021;
}

.category-nav-link-active .category-nav-title {
    color: #f23222;
}

.category-nav-link-pending {
    color: #999999;
    cursor: default;
}

@media (max-width: 1100px) {
    .category-nav {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .category-nav {
        width: 100%;
        min-height: 42px;
        padding: 0 10px;
    }

    .category-nav-link {
        min-height: 42px;
        padding: 0 13px;
        font-size: 14px;
    }
}
