.footer__tabs {
    margin:0 0 64px 0;
}

.footer__tabs .tabs {
    display: flex;
    gap: 16px;
}

.footer__tabs .tab {
    padding: 4px 10px;
    position: relative;
    font-size: 14px;
    line-height: 22px;
    color: #f3f3f3;
    cursor: pointer;
}

.footer__tabs .tab_content {
    margin-top: 24px;
}

.footer__tabs .tab::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #353535;
    transition: all .3s ease-in-out;
}

.footer__tabs .tab.active::before {
    height: 2px;
    background-color: rgb(242 120 0);
}

.footer__tabs-list {
    columns: 4;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__tabs-list li a {
    color: rgb(166, 166, 166);
}

.footer__tabs-list li a:hover {
    color: rgb(242, 127, 28);
}

.footer:not(.footer--cart) a:not(.btn-border) {
    text-decoration: none;
    color: inherit;
    transition: all .3s ease-in-out;
}

.tab-item:not(.active-tab) {
    display: none;
}

@media (max-width: 991.98px) {
    .footer__tabs-list {
        columns: 2;
    }
}