.destacados{
    width: 100%;
    display: flex;
}

.destacados.second{
    background-color: #f1eff0;
}

.destacados.second .product-item .image,.destacados.second .ultra-star-product .image{
    background-color: white;
}

.destacados.second .product-item .info,.destacados.second .ultra-star-product .info{
    background-color: #f1eff0;
}

.destacados h1{
    width: 100%;
    color: #444854;
    font-size: 50px;    
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Oswald';
    padding: 60px 0 20px 0;    
}

.star-products{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product-item, .ultra-star-product{
    width: 250px;    
    height: 290px;    
    margin-top: 10px;
    min-width: 250px;
    margin-bottom: 20px;    
    background-color: #f1eff0;    
}


.image{
    width: 100%;
    height: 80%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;    
}

.product-item .image img{
    width: 100%;
    height: 100%;
}

.info{
    width: 100%;
    height: 20%;
    display: flex;
    background: white;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;        
}

.info .concept{
    color: #444854;
    font-weight: 600;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.info .price{
    font-family: 'Poppins';
    color: #739a4c ;
    font-weight: 600;
}

.info .prices{
    width: 100%;
    display: flex;
    font-weight: 600;
    font-family: 'Poppins';
    justify-content: flex-start;
}

.info .prices .real{
    text-decoration: line-through;
    color: lightgray;
}

.info .prices .with-discount{
    color: #f68e20;
    margin-left: 30px;
}

.solds{
    height: 730px;
    border: 1px solid black
}

.content-products{
    display: flex;
    justify-content: space-between;
}
.content-products .star-products{
    width: 48.7%;       
}
.content-products .product-item{
    width: 47.3%;
    height: 290px;
}
.ultra-star-product{
    width: 48.7%;
    height: 620px;
    margin-top: 10px;        
}

.ultra-star-product .image{
    height: 90%;
}


.ultra-star-product .info{
    height: 10%;
}

.gadgets{
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    align-items: flex-end;         
    justify-content: space-between;
    -webkit-transition: all .3s ease;
}

.gadgets .btn-cart, .gadgets .btn-info{    
    transform: scale(0);
    width: 48%;
    cursor: pointer;
    height: 35px;
    display: flex;
    color: white;
    font-family: 'Poppins';
    font-weight: 300;
    font-size: 13px;
    align-items: center;    
    justify-content: center;    
    background-color: #444854;
    -webkit-transition: all .3s ease;
}

.gadgets.sold{
    background-color:rgba(0,0,0,.3);;
}

.gadgets.sold .btn-cart,.gadgets.sold .btn-info{
    transform: scale(1);
}
.gadgets.sold .btn-cart{
background-color: #f68e20;
}

.product-item:hover .gadgets ,.ultra-star-product:hover .gadgets{
    background-color: rgba(0,0,0,.3);
}

.product-item:hover .btn-cart,.product-item:hover .btn-info, .ultra-star-product:hover .btn-cart, .ultra-star-product:hover .btn-info{
    transform: scale(1);
}

.gadgets .btn-cart:hover, .gadgets .btn-info:hover{
    height: 50px;
    background-color: #f68e20;
}

.buscadores{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.buscadores .search-item{
    margin: 0 7.5% 50px 7.5%;
}


.buscadores .search-item{
    width: 350px;
    height: 40px;
    display: flex;
    position: relative;    
    background-color: #f1eff0;
}

.buscadores .search-item input{
    width: 300px;
    outline: none;
    padding-left: 10px;
    font-family: 'poppins';
    border: 1px solid lightgray;
}

.content-sercheable{
    width: 50px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color: #f68e20;
}

.buscadores .search-item img{
    width: 30px;
}
.buscadores .search-item select{
    width: 350px;
    height: 40px;
    outline: none;
    border: none;
    background-color: transparent;
    font-family: 'Poppins';
    padding-left: 10px;    
    appearance: none;
    background-size: 20px;
    background-position: r;
    z-index: 2;    
}

.buscadores .search-item .drop{
    position: absolute;
    right: 10px;
    width: 15px;
    top: 40%;
    z-index: 0;
}


.discount-img{
    position: absolute;
    top:10px;
    width:100px !important;
    height: 31px !important;
}
@media(max-width:1225px){
    .content-products{
        align-items: center;
        flex-direction: column;
        justify-content: space-around
    }
    
    
    .content-products .star-products{
        width: 100%;
        justify-content: space-around;
    }
    .content-products .star-products .product-item{
        max-width: 300px;
    }
}

@media(max-width:1020px){
    .buscadores .search-item{
        width: 250px;
    }

    .buscadores .search-item input{
        width: 200px;
    }
}

@media(max-width:810px){
    .star-products{
        justify-content: space-around;
    }

    .gadgets .btn-cart, .gadgets .btn-info{
        transform: scale(1);
    }

    .content-products .ultra-star-product {
        display: none;
    }   

    .buscadores{
        justify-content: center;
    }

}


@media(max-width:600px){
    .destacados  h1{
        font-size: 30px;
    }
}