:root{
    --sh-tabs-icon-bg: #333333;
    --sh-tabs-icon-active-bg: #fff;
    --sh-tabs-icon-active-path: #000;
    --sh-tabs-icon-active-stroke: #000;
    --sh-tabs-title-color: #fff;
    --sh-tabs-product-bg: #d9d9d9b9;
    --sh-tabs-product-text: #000;
}

body.theme-dark {
    --sh-tabs-icon-bg: #2B313A;
    --sh-tabs-icon-active-bg: #F2F3F5;
    --sh-tabs-icon-active-path: #1B1F27;
    --sh-tabs-icon-active-stroke: #1B1F27;
    --sh-tabs-title-color: #F2F3F5;
    --sh-tabs-product-bg: rgba(255, 255, 255, 0.18);
    --sh-tabs-product-text: #F2F3F5;
}

.smart-house__tabs {
    margin-top: 31px;
    margin-bottom: 101px;
}

.smart-house__tab {
    width: 1360px;
    height: 525px;
    padding: 30px 48px;
    border-radius: 10px;
    flex-direction: column;
}

.smart-house__tab-icons {
    display: flex;
    margin-bottom: 11px;
}

.smart-house__tab-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sh-tabs-icon-bg);
    border-radius: 50%;
    border: none;
    margin-right: 15.2px;
}

.smart-house__tab-icon.active {
    background-color: var(--sh-tabs-icon-active-bg);
}

.smart-house__tab-icon.active svg path {
    fill: var(--sh-tabs-icon-active-path);
}

.smart-house__tab-icon:first-child.active svg path {
    fill: transparent;
    stroke: var(--sh-tabs-icon-active-stroke);
}

.smart-house__tab-title {
    color: var(--sh-tabs-title-color);
    font-weight: 500;
    font-size: 22px;
}

.smart-house__tab-products {
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-left: 3px;
}

.smart-house__tab-product {
    background-color: var(--sh-tabs-product-bg);
    padding: 5px 10px;
    border-radius: 10px;
    color: var(--sh-tabs-product-text);
    width: 120px;
    height: 150px;
    margin-right: 15px;
}

.smart-house__tab-product-link {
    color: inherit !important;
    display: flex;
    flex-direction: column;
}

.smart-house__tab-product-name {
    font-size: 10px;
    line-height: 120%;
    font-weight: 500;
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 36px;
    margin-bottom: 4px;
}

.smart-house__tab-product-image {
    width: 104px;
    height: 100px;
    display: flex;
    align-items: center;
}

.smart-house__tab-product-image img {
    max-width: 100%;
    mix-blend-mode: multiply;
    font-size: 10px;
    line-height: 1;
}

@media (max-width: 1460px) {
    .smart-house__tab {
        width: 100%;
        padding: 25px 40px;
    }
}

@media (max-width: 1024px) {
    .smart-house__tabs {
        margin-bottom: 50px;
    }

    .smart-house__tab {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .smart-house__tabs {
        margin-top: -4px;
        margin-bottom: 25px;
    }

    .smart-house__tab {
        margin-top: 13px;
        height: 508px;
        padding: 13px 14px;
        background-position: center;
    }

    .smart-house__tab-products {
        margin-left: 0;
        max-width: 100%;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .smart-house__tab-products::-webkit-scrollbar {
        display: none;
    }

    .smart-house__tab-icon {
        width: 50px;
        height: 50px;
    }

    .smart-house__tab-icon svg {
        width: 32px;
    }

    .smart-house__tab-icons {
        padding: 5px 3px;
    }

    .smart-house__tab-product {
        width: 100px;
        height: 120px;
        margin-right: 10px;
    }

    .smart-house__tab-product-link {
        height: 100%;
    }

    .smart-house__tab-product-image {
        width: 60px;
        height: 60px;
        justify-content: center;
        margin: auto auto 0 auto;
    }
}

@media (max-width: 420px) {
    .smart-house__tabs {
        margin-bottom: 14px;
    }

    .smart-house__tab-title {
        display: none;
    }

    .smart-house__tab-icon {
        margin-right: 0;
    }

    .smart-house__tab-icons {
        justify-content: space-between;
    }

    .smart-house__tab-product {
        width: 80px;
        height: 100px;
    }

    .smart-house__tab-product-name {
        -webkit-line-clamp: 2;
    }
}