.goods{
    padding-top: 120px;
}
.goods_title{
    font-weight: 600;
    font-size: 42px;
    color: #262626;
    margin-bottom: 30px;
}
.goods_wrap{
    display: flex;
    align-items: start;
    gap: 30px;
}

.goods_menu{
    position: sticky;
    top: 50px;
    max-width: 275px;
    width: 100%;
    border-top: 1px solid #b9b9b9;
    padding-top: 30px;
}

.goods_block{
    display: grid;
    gap: 30px;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 895px;
}
.stock{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 50px;
}
.stock input{
    width: 15px;
    height: 15px;
}
.stock span{
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}
.brand_block {
    margin-bottom: 30px;
}

.brand_title-block {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.brand_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

.brand_reset{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

.brand_body{
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.type_block {
    margin-bottom: 30px;
    border-bottom: 1px solid #b9b9b9;;
}

.type_title-block {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.type_title {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

.type_reset{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #262626;
}

.type_body{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}
.filter_show{
    width: 100%;
    margin-bottom: 20px;
    display: none;
}
.filter_back{
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 31, 31, 0.55);
    z-index: 1000;
}
.filter_popup{
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    padding: 30px;
    background: #ffffff;
    z-index: 1001;
    border-radius: 6px;
}
.filter_close{
    position: absolute;
    right: 20px;
    top: 20px;
}

@media (max-width: 1200px) {
    .goods_block{
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .goods{
        padding-top: 20px;
    }
}
@media (max-width: 868px) {
    .goods_block{
        width: 100%;
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .goods_menu{
        display: none;
    }
    .filter_popup .goods_menu{
        display: block;
        border-top: none;
    }
    .filter_show{
        display: block;
    }
    .type_block{
        border-bottom: none;
    }
}
