html, body {
  touch-action: manipulation;
}

body {
    font-family: Arial, sans-serif;
    margin: 0px; padding: 0px;
    background: #f9f9f9;
    box-shadow: border-box;
}

  header {
      display: flex;
      flex-direction: row;
      padding: 20px 10px;
      position: fixed;
      background: rgb(22, 44, 57);
      width: 100%;
      top: 0;
      z-index: 1000;
      color: white;
    }
    
     .produto,.produto-destaque {
      margin-top: 100px;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 5px;
      margin: 20px;
      display: inline-block;
      text-align: center;
    }

.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0px;
}

.product, .destaques{
    background: #eee;
    margin: 0px;
    padding: 15px;
    border-radius: 10px;
    width: 150px;
    text-align: center;
}

.product img, .destaques img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}



.compra{
    background: transparent;
    position: relative;
    border: none;
}

#carrinho-contador{
    position: absolute;
    background: red;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -20px;
    color: white;
    text-align: center;
    line-height: 20px;
    left: 10px;
}

.compraProduto{
    color: white;
    border-radius: 10px;
    padding: 8px;
    background: rgb(22, 44, 57);
    border: none;
    width: 100%;
}

.filtters{
    display: flex;
    flex-direction: row;
    align-items: center;
}


#cart {
    background: white;
    margin: 20px auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
}

.controllers{
     display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}



#search-input{
    padding: 10px;
    width: 400px;
    outline: none;
    border: none;
    background: #eee;
    border-radius: 10px;
    text-align: center;
}




.procurar span{
    position: absolute;
    left: 0;
    /*background: rgb(72, 190, 237);*/
    border-radius: 10px;
    text-align: center;
    padding: 5px;
    display: none;
}

.position{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

select{
    outline: none;
    background: #eee;
    padding: 10px;
    /*margin-top: 30px;*/
    width: 150px;
}


label{
    font-size: 14px;
}

header div{
  display: flex;
  justify-content: space-around;
}

#encomenda-btn{
     background: transparent;
    border: none;
    color: white;
}

#login-btn{
    background: transparent;
    border: none;
    color: white;
    margin-right: 3em;
}

#bag-btn{
   color: white; 
}


footer{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background: rgb(22, 44, 57);
    color: white;
    padding: 15px;
}

  .descri p{
      width: 480px;
  }
  
     .logo{
     width:200px;
     margin-left: -30px;
 }

@media  (max-width: 767px) {
     .logo{
     width:150px;
     margin-left: -30px;
 }
      .descri p{
      width: auto;
  }
    footer{
    flex-direction: column;
    color: white;
}


    footer a{
    color: white;
}

    
.procurar{
    position: relative;
    width: 100%;
    margin-top: 5px;
}


.procurar span{
    position: absolute;
    left: 0px;
    /*background: rgb(72, 190, 237);*/
    border-radius: 10px;
    text-align: center;
    padding: 10px;
    color: #c1c1c1;
    display: block;
}
    
  #search-input{
      width: 100%;
  }
    
.produto{
    margin:10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: inline-block;
    text-align: center;

}
    
  header div{
  display: flex;
  justify-content: space-between;
}

#search-input{
padding: 10px;
width: 300px;
outline: none;
border: none;
background: #eee;
border-radius: 10px;
text-align: center;
}

header {
display: flex;
flex-direction: row;
justify-content:space-between;
}

.product,.destaques {
  width: 100%;
}
#cart {
width: 90%;
}

    .controllers{
    display: flex;
    flex-direction: column;
    align-items: center;
    }

.compraProduto{
    color: white;
    border-radius: 5px;
    padding:  10px;
    background: rgb(22, 44, 57);
    border: none;
    width: auto;
}

.produto-destaque button{
     color: white;
    border-radius: 5px;
    padding:  10px;
    background: rgb(22, 44, 57);
    border: none;
    width: auto;
}

}

