body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .pdv-container {
    display: flex;
    height: 100vh;
  }
  
  .categorias {
    width: 25%;
    background-color: #2b0c0c;
    overflow-y: auto;
    padding: 10px;
    border-right: 1px solid #ccc;
  }
  
  .categoria {
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.2s;
  }
  
  .categoria:hover {
    transform: scale(1.05);
  }
  
  .categoria img {
    width: 100%;
    border-radius: 8px;
  }
  
  .produtos {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #421a1a;
  }

  .produto {
    width: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: box-shadow 0.2s;
  }
  
  .produto:hover {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
  .produto img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 5px;
  }
  
  .produto p {
    margin: 0;
    font-weight: bold;
  }
  
  .produto span {
    color: green;
    font-size: 14px;
  }

  .quantidade-prompt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-align: center;
    display: none;
  }
  
  .quantidade-prompt input {
    width: 60px;
    padding: 8px;
    font-size: 16px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
  }
  
  .quantidade-prompt button {
    margin: 5px;
    padding: 8px 14px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .quantidade-prompt button:hover {
    background-color: #0056b3;
  }