/* Estilos globais */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

/* Cards de produtos */
.produto-card {
    transition: transform 0.2s;
    cursor: pointer;
}

.produto-card:hover {
    transform: translateY(-5px);
}

/* Estoque baixo */
.estoque-baixo {
    color: red;
    font-weight: bold;
}

/* Carrinho */
#carrinho-itens {
    max-height: 60vh;
    overflow-y: auto;
}

.total-venda {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .produto-card {
        margin-bottom: 15px;
    }
    
    #carrinho {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
}