
/* Configurações Globais */
body {
    font-family: 'Nunito', sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding-bottom: 150px; /* Espaço para o resumo fixo e menu não cobrirem o conteúdo */
}

.container {
    padding: 15px;
}

.logo{
  display: flex;
  justify-content: center;
  margin-top: 40px;
 padding: 30px;

}
.logo-img{
width: 80px;
height: 80px;
object-fit:contain
}
/* Status (Nenhum item adicionado) */
.status {
    text-align: center;
    padding: 50px 20px;
}

.status h4 {
    color: #666;
    font-weight: 400;
}

/* Lista de Pedidos */
.item-pedido {
    display: flex;
    background: white;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.img-pedidos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.detalhes-pedidos h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.detalhes-pedidos .nome-res {
    font-size: 13px;
    color: #e79026; /* Cor de destaque */
    margin: 4px 0;
    font-weight: 600;
}

.detalhes-pedidos p {
    font-size: 12px;
    color: #777;
    margin: 4px 0;
}

.detalhes-pedidos .valor {
    font-weight: 700;
    color: #2dcc70;
    font-size: 15px;
}

/* Botão Apagar Carrinho */
.apagar-pedidos {
    text-align: right;
    padding: 0 20px 20px;
}

.btn-limpar {
    background: none;
    border: 1px solid #ff4d4d;
    color: #ff4d4d;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.btn-limpar:hover {
    background: #ff4d4d;
    color: white;
}

/* Container de Resumo Fixo (Rodapé) */
.container-resumo {
    position: fixed;
    bottom: 70px; /* Acima do menu inferior */
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    box-sizing: border-box;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.resumo h4 {
    margin: 0;
    font-size: 14px;
    color: #888;
}

.total-pedidos {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

/* Botão Finalizar */
#btnEntrar {
    background-color: #e79026;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Utilitários */
.none {
    display: none !important;
}

/* Estilo para Telas Maiores (Desktop) */
@media (min-width: 1024px) {
    .container {
        max-width: 800px;
        margin: 0 auto;
        margin-top: 65px;
       
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(192, 192, 192, 0.1);
    }
    
    .container-resumo {
        width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 15px;
        bottom: 90px;

    }

    .item-pedido{
      border: 1px solid rgb(197, 197, 197);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    .apagar-pedidos {
     
      margin-right: 800px;
      margin-left: 800px;
    text-align: right;
    padding: 0 20px 20px;

}
    
}