You can send your questions to my email to get faster answer in 24 hours (free).
Buy me a coffee

05-08-2025 (04)

/* show categories */
.product-list [data-category-display-type="sidebar"] {
    display: flex;
    flex-direction: column;
}
.product-list [data-category-display-type="sidebar"] {
.nested-category-tree-wrapper {
    width: 100%;
    max-width: 100% !important;
    min-width: unset !important;
    margin-right: 0 !important;
}
.nested-category-breadcrumb {
  display: none !important;
}
.nested-category-children {
  display: none !important;
}
.nested-category-tree-wrapper ul {
    padding-bottom: 54px;
    padding-top: 54px;
    padding-left: 0;
    margin-bottom: 37px;
    margin-top: 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    position: relative;
}
.category-item .category-link {
  margin: 0 1.5vw;
  padding: 0 !important;
}
.nested-category-tree-wrapper .category-item:not(:last-child) {
  border-right: 2px solid rgba(0, 0, 0, 0.2); 
}

@media screen and (min-width: 768px) {
.nested-category-tree-wrapper ul::after {
        content: "";
        opacity: 0.2;
        border-bottom: 1px solid;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
.nested-category-tree-wrapper {
        display: flex !important;
    }
.nested-category-tree-wrapper ul {
        display: flex !important;
        padding-top: 44px;
        padding-bottom: 30px;
        margin-bottom: 0;
        flex-wrap: nowrap;
        overflow-x: scroll;
        justify-content: start;
    }
}}