.fumideco-search-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-bottom:80px;
}

.fumideco-search-wrapper input,
.fumideco-search-wrapper select{

    height:60px;
    border:none;
    border-bottom:1px solid #000;
    background:transparent;
    font-size:18px;
    width:100%;
    outline:none;
    box-shadow:none;
    padding:0;

}

/*
|--------------------------------------------------------------------------
| PRODUCTOS
|--------------------------------------------------------------------------
*/

#fumideco-products ul.products{

    display:grid !important;
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:80px 60px !important;

    margin:0 !important;
    padding:0 !important;

}

#fumideco-products ul.products::before,
#fumideco-products ul.products::after{

    display:none !important;

}

#fumideco-products ul.products li.product{

    width:100% !important;
    margin:0 !important;
    float:none !important;
    padding:0 !important;

}

/*
|--------------------------------------------------------------------------
| IMAGEN
|--------------------------------------------------------------------------
*/

#fumideco-products ul.products li.product img{

    width:100% !important;
    height:500px;
    object-fit:cover;
    display:block;

}

/*
|--------------------------------------------------------------------------
| TITULO
|--------------------------------------------------------------------------
*/

#fumideco-products ul.products li.product h2{

    font-size:18px !important;
    line-height:1.4;
    margin-top:25px;
    text-transform:uppercase;

}

/*
|--------------------------------------------------------------------------
| BOTON
|--------------------------------------------------------------------------
*/

#fumideco-products ul.products li.product .button{

    margin-top:25px !important;

    border:1px solid #000;
    border-radius:999px;

    background:transparent !important;
    color:#000 !important;

    padding:12px 30px;

    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.05em;

}

/*
|--------------------------------------------------------------------------
| LOADING
|--------------------------------------------------------------------------
*/

#fumideco-products.loading{

    opacity:.4;
    pointer-events:none;
    transition:.3s ease;

}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .fumideco-search-wrapper{

        grid-template-columns:1fr;
        gap:20px;

    }

    #fumideco-products ul.products{

        grid-template-columns:1fr !important;

    }

    #fumideco-products ul.products li.product img{

        height:auto;

    }

}