.category-products-tabs {
    width: 100%;
    max-width: 1202.5px;
    margin: auto;
}

.category-products-tab-list {
    display: flex;
    background: #fff;
    border-bottom: 1px solid #ececec;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: center;
    gap: 1px;
    margin-bottom: 30px;
}

.category-products-tab {
    margin: 0px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    min-width: 24vw;
    padding: 8px 16px;
    border: 1px solid #333 !important;
    background-color: #fff;
}

.category-products-tab>p {
    margin: 0px !important;
}

@media (min-width: 1024px) {
    .category-products-tab {
        max-width: 12vw;
        min-width: unset;
    }

    .category-products-tab>img {
        max-height: 44px !important;
    }
}

.category-products-tab:hover {
    background: #fff;
}

.category-products-tab.active {
    background-color: #0d2848 !important;
    color: #fff !important;

    p {
        color: #fff !important;
    }
}

.category-products-tab-content {
    margin-top: 24px;
}

.category-products-pane {
    display: none;
}

.category-products-pane.active {
    display: block;
}