body {
    margin:          0 6vw;
    display:         flex;
    align-items:     center;
    font-family:     Verdana, Geneva, Tahoma, sans-serif;
    flex-direction:  column;
    justify-content: center;
}

/*HEADER*/
header {
    width:           100%;
    padding:         2% 0;
    display:         flex;
    align-items:     center;  
    justify-content: space-between ;
}

.filtersContainer {
    gap:            2%;
    display:        flex;
    flex-direction: row;
}

#campoBuscaPorNome {
    width:            20vw;
    border:           none;
    padding:          0 20px;
    min-width:        112px;
    margin-left:      2%;
    border-radius:    8px;
    background-color: #F1F3F5;
}

.containerBuscaPorNome {
    gap:             9px;
    display:         flex;
    margin-left:     40px;
    justify-content: space-between;
}

button:hover {
    cursor: pointer;
}

.estiloGeralBotoes, #estiloGeralBotoes--botaoBuscaPorNome {
    color:            #12B886;
    width:            8vw;
    height:           52px;
    border:           none;
    display:          flex;
    min-width:        100px;
    font-size:        16px;
    font-weight:      500;
    align-items:      center;
    border-radius:    8px;
    justify-content:  center;
    background-color: #12B8860D;
}

#estiloGeralBotoes--botaoBuscaPorNome {
    width:               4vw;
    border:              2px solid white;
    min-width:           50px;
    background-color:    #12B886 ;
    transition-duration: 0s;
}

#estiloGeralBotoes--botaoBuscaPorNome:hover {
    border:              2px solid #343a40;
    transition-duration: 0s;
}

.estiloBtnClicado {
    color:               white;
    background-color:    #12B886;
    transition-duration: 0.6s;
}

/*VITRINE*/
main {
    gap:             1vw;
    width:           100%;
    margin:          1% 0;
    display:         flex;
    min-width:       360px;
    align-items:     flex-start;
    flex-direction:  row;
    justify-content: space-between; 
}

.containerListaProdutos {
    width:     70%;
    min-width: 400px;
}

.containerListaProdutos ul {
    gap:             3vw;
    width:           100%;
    display:         flex;
    flex-wrap:       wrap;
    list-style:      none;
    text-align:      center;
    justify-content: flex-start;
}

.cardProduto {
    width:         18vw;
    color:         #212529;
    min-width:     180px; 
    transition:    ease-in-out .1s;  
    font-weight:   bold;
    border-radius: 8px;
}

.cardProduto:hover {
    box-shadow: 3px 3px 13px 1px rgb(146 146 146);
}

.cardProduto div {
    padding: 0 0px 20px 0px ;
}

.cardProduto img {
    width: 100%;
}

.cardProduto h3 {
    margin:     10px 0 0 8px;
    font-size:  16px;
    text-align: left;
}

.cardProduto .product_section {
    margin:      10px 0 0 8px;
    min-width:   200px;
    font-size:   12px;
    text-align:  left;
    font-weight: 500;
}

#listNutrients {
    width:           100%;
    height:          70px;
    margin:          10px 0px;
    display:         flex;
    align-items:     center;
    flex-direction:  column;
    justify-content: space-around;
}

#listNutrients li {
    width:       80%;
    font-size:   12px;
    text-align:  left;
    font-weight: 400;
}

.cardProduto .product_price {
    width:       65px;
    margin:      10px 0 0 8px;
    font-size:   14px;
    text-align:  left;
    font-weight: 600;
}

#divPriceBtn {
    display:         flex;
    padding:         0 15px 0 5px;
    flex-direction:  row;
    justify-content: space-between; 
}

.btnAddCarrinho {
    width:            70px;
    color:            #12B886;
    border:           none;
    height:           30px;
    font-size:        12px;
    font-weight:      600;
    border-radius:    8px;
    background-color: #F1F3F5;
}

.btnAddCarrinho:hover {
    color:            white;
    background-color: #12B886;
}

/*CARRINHO*/
#containerCarrinho {
    width:           20vw;
    height:          52vh;
    display:         flex;
    min-width:       250px;
    min-height:      400px;
    box-shadow:      0px 4px 30px -10px rgba(0, 0, 0, 0.25);
    border-radius:   8px;  
    flex-direction:  column;
    justify-content: space-between;
}

#tituloCarrinho {
    gap:              10px;
    color:            white;
    width:            100%;
    display:          flex;
    font-size:        16px;
    min-height:       50px;
    font-weight:      500;
    align-items:      center;
    padding-left:     10px;
    border-radius:    8px 8px 0 0;
    justify-content:  flex-start;
    background-color: #12B886;  
}

#tituloCarrinho img {
    width: 30px;
}

.mainCarrinho_Vazio {
    gap:             10px;
    width:           100%;
    display:         flex;
    height:          200px;
    padding:         0 20px 30px 20px;
    text-align:      center;
    align-items:     center;
    flex-direction:  column;
    justify-content: flex-end;  
}

.mainCarrinho_Vazio img {
    width: 60px;
}

.mainCarrinho_Cheio {
    gap:             10px;
    width:           100%;
    height:          100%;
    overflow:        hidden;
    overflow-y:      scroll;
    text-align:      center;
    align-items:     center;
    flex-direction:  column;
    justify-content: center;   
}

.hidden {
    display: none;
}

.carrinho_produto  {
    width:           90%;
    margin:          10px 0 10px 10px;
    height:          80px;
    display:         flex;
    flex-direction:  row;
    justify-content: space-between;
}

.carrinho_imgProduto {
    width:         40%;
    height:        100%;
    border-radius: 8px;
}

.carrinho_infoProduto {
    width:           40%;
    height:          100%;
    display:         flex;
    padding:         5px 0 2px 0;
    font-size:       14px;
    font-weight:     400;
    align-items:     flex-start;
    flex-direction:  column;
    justify-content: space-between;
}

.carrinho_infoProduto h3 {
    font-weight: 500;
}

.carrinho_infoProduto p {
    color:     #868E96;
    font-size: 12px; 
}

.btnRemover {
    width:            30px ;
    height:           30px;
    border:           none;
    display:          flex;
    align-items:      center;
    border-radius:    8px;
    justify-content:  center;
    background-color: #F8F9FA;
}

.btnRemover img {
    width: 22px;
}

#infoFinaisCarrinho {
    width:           100%;
    display:         flex;
    padding:         0px 10px;
    min-height:      100px;
    flex-direction:  column;
}

#infoFinaisCarrinho div {
    width:           100%;
    height:          50%;
    display:         flex;
    align-items:     center;
    flex-direction:  row;
    justify-content: space-between;
}

#infoFinaisCarrinho div h3 {
    min-height: 50%;
}

@media (max-width: 480px) {
    body {
        height: 100%;
        margin: 13px;
    }
    
    /*HEADER*/
    header {
        gap:             12px;
        padding:         0;
        align-items:     center; 
        flex-direction:  column; 
        justify-content: flex-start ;
    }
    
    #header_filters {
        width:      100%;
        height:     72px;
        overflow:   hidden;
        overflow-x: scroll;
    }
    
    .filtersContainer {
        gap:             12px;
        align-items:     flex-start;
        justify-content: flex-start;
    }
    
    .estiloGeralBotoes {
        min-width: 170px;
    }
    
    .containerBuscaPorNome {
        gap:           0;
        width:         100%;
        margin-left:   0;
        margin-bottom: 24px;
        
    }
    
    #campoBuscaPorNome {
        color:     #515252;
        width:     80%;
        margin:    0;
        padding:   0 0 0 20px;
        font-size: 16px;
    }
    
    #estiloGeralBotoes--botaoBuscaPorNome {
        height:           52px;
        min-width:        59px;
        background-color: #12B886;
    }
    
    /*VITRINE*/
    main {
        gap:             20px;
        margin:          0;
        min-width:       100%;
        align-items:     center;
        flex-direction:  column;
        justify-content: flex-start ;
    }
    
    .containerListaProdutos {
        width:      100%;
        height:     100%;
        overflow:   hidden;
        overflow-x: scroll;
    }
    
    .containerListaProdutos ul {
        gap:             25px;
        flex-wrap:       nowrap;
        text-align:      center;
        margin-bottom:   15px;
        justify-content: flex-start;
    }
    
    .cardProduto {
        width:           264px;
        display:         flex;
        min-width:       264px;
        max-width:       264px;
        min-height:      380px;
        transition:      none;
        align-items:     flex-start;
        flex-direction:  column;
        justify-content: flex-start;
    }
    
    .cardProduto:hover {
        box-shadow: none;
    }
    
    .cardProduto div {
        width:           100%;
        height:          90%;
        display:         flex;
        padding:         0;
        flex-direction:  column;
        justify-content: space-between;
    }
    
    .cardProduto h3 {
        margin: 10px 0;
    }
    
    .cardProduto .product_section {
        margin:    10px 0;
        min-width: none;
    }
    
    #listNutrients {
        gap:             3px;
        width:           90%;
        height:          70px;
        margin:          10px 0px 10px 16px;
        min-height:      70px;
        justify-content: space-between;
    }
    
    #listNutrients li {
        width: 100%;
    }
    
    #divPriceBtn {
        width:       100%;
        padding:     0;
        align-items: center; 
    }
    
    .cardProduto .product_price {
        width:       65px;
        margin:      0;
        display:     flex;
        align-items: center;
    }
    
    .btnAddCarrinho {
        font-size:   11px;
        font-weight: 500;
    }
    
    /*CARRINHO*/
    #containerCarrinho {
        gap:             18px;
        width:           100%;
        height:          350px;
        min-width:       none;
        min-height:      none;
        box-shadow:      none;
        justify-content: flex-start;
    }
    
    #tituloCarrinho {
        min-height: 42px;  
    }
    
    #tituloCarrinho img {
        width: 25px;
    }
    
    #mainCarrinho {
        width:           100%;
        height:          100%;
        display:         flex;
        justify-content: center;   
    }
    
    .mainCarrinho_Vazio {
        gap:             35px;
        height:          100%;
        padding:         0;
        flex-direction:  column;
        justify-content: center;
    }
    
    .mainCarrinho_Cheio {
        gap:   0;
        width: 100%;  
    }
    
    #ulCarrinho {
        gap:            10px;
        width:          100%;
        height:         100%;
        display:        flex;
        flex-direction: column; 
    }

    .carrinho_produto  {
        width:           100%;
        margin:          0;
        height:          80px;
        min-height:      80px;
        justify-content: flex-start;
    }
    
    .carrinho_imgProduto {
        width: 25%;
    }
    
    .carrinho_infoProduto {
        width:   70%;
        padding: 0 0 0 12px;
    }
    
    #infoFinaisCarrinho {
        padding:         0;
        font-size:       14px;
        min-height:      100px;
        flex-direction:  column;
    }
    
    #infoFinaisCarrinho div {
        padding: 0 9px;
    }
    
    #infoFinaisCarrinho div h3 {
        min-height: none;
    }
    
    #quantidadeTotal {
        background-color: #F8F9FA;
    } 
}