body {
      font-family: Arial, sans-serif;
      background-image: url('/teste-loja/imagens/neutro.png');
      margin: 0;
      padding: 0;

    }

    header {
      display: flex;
      justify-content: center;
      background-color: #0d6efd;
      color: white;
      text-align: center;
      padding: 15px 0;
      font-size: 22px;
      font-weight: bold;
    }

    header > img{
      width: 35px;
      border-radius: 30%;
    }

    .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 10px;
    }

    .produto {
      background: white;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      width: 220px;
      text-align: center;
      padding: 15px;
    }

    .produto img {
      width: 100%;
      border-radius: 10px;
    }

    .produto h3 {
      font-size: 18px;
      margin: 10px 0;
    }

    .produto p {
      font-size: 16px;
      color: #333;
    }

    .produto button {
      background-color: #0d6efd;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .produto button:hover {
      background-color: #094bd1;
    }

    #carrinho {
      background: white;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      margin: 20px;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    #carrinho h2 {
      color: #0d6efd;
    }

    #itensCarrinho {
      margin-bottom: 15px;
    }

    #total {
      font-weight: bold;
      font-size: 18px;
    }

    #finalizar {
      background-color: #25D366;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      cursor: pointer;
      font-size: 16px;
    }

    #finalizar:hover {
      background-color: #1ebf59;
    }

    footer{
      text-align: center;
      margin-top: 2vh;
    }


.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 15px;
  animation: scroll 5s linear infinite;
  will-change: transform;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-95%);
  }
}

.produto {
  min-width: 200px;
  background: #fff;
  padding: 20px;
  text-align: center;
}


    