.category-wall__item{position:relative;width:100%;margin:0 0 20px !important;padding:0px;transition: 0.2s;}
.category-wall__image{display:block;position:relative;overflow:hidden}
.category-wall__ul{margin:15px 0 0;padding:0;list-style:none}
.category-wall__ul.child{padding-bottom:25px}
.category-wall__ul.child.type2{margin:0}
.category-wall__li{margin:0 0 5px}
.category-wall__li a{display:flex;color:var(--body-c)}
.category-wall__li a:hover{opacity:.8}
.category-wall__title{margin:0 0 12px;font-weight:700;word-wrap:break-word}
.category-wall__title.child-empty{margin:0;padding:0;text-align:center}
.category-wall__more{position:absolute;bottom:15px;text-decoration:underline}

.category-wall__item.type2{display:flex;padding:15px}
.category-wall__image.type2{flex:0 0 40%;border:none;box-shadow:none}
.category-wall__ul.type2{max-width:60%;word-wrap:break-word;padding:0 0 25px 20px}
.category-wall__title.type2{text-align:left}
.category-wall__more.type2{}

@media (max-width:575px){
    .category-wall__image.child.type2{flex:0 0 33%}
}

.category-wall__item:before {
    content: "Подобрать";
    display: block;
    position: absolute;
    left: 11%;
    bottom: 20%;
    z-index: 2;
    background: #fff;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 5px;
    pointer-events: none;
    
    /* Плавное появление/исчезание */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.category-wall__item:hover:before {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.category-wall__item:before:hover {
        background: #4271e5;
    border: 1px #ffffff solid;
    color: #fff;
}

@media (max-width:1000px){
    
    .category-wall__item:before {
        opacity: 1;
    visibility: visible;
         left: 10%;
         padding: 7px 15px;
    }
    
    
    
}