  /* Estilos para a caixa de mensagem */
  .message-box {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background-color: #fff;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      text-align: center;
      max-width: 400px;
      width: 100%;
      z-index: 9999;
  }

  /* Ajustando o tamanho do ícone de carrinho no slider */
  .cart-icon {
      font-size: 24px;
      /* Ajuste o valor conforme necessário */
      width: 24px;
      /* Ajuste a largura do ícone */
      height: 24px;
      /* Ajuste a altura do ícone */
      margin-right: 20px;
  }

  .message-box h2 {
      color: #333;
      font-size: 6px;
      margin-bottom: 10px;
  }

  .message-box p {
      font-size: 14px;
      color: #555;
  }

  .message-box button {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      margin-top: 15px;
  }

  .message-box button:hover {
      background-color: #0056b3;
  }


  /* Estilos para o ícone do carrinho */
  .cart-icon {
      font-size: 24px;
      width: 24px;
      height: 24px;
      margin-right: 20px;
      color: #333;
      transition: color 0.3s ease;
  }

  .cart-icon:hover {
      color: #007bff;
  }

  /* Estilos para o slider de produtos */
  .slides-produto {
      display: flex;
      overflow-x: auto;
      gap: 20px;
      padding: 20px;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      background-color: rgba(255, 255, 255, 0.074);
  }

  .slide {
      flex: 0 0 auto;
      scroll-snap-align: start;
      width: 150px;
      background-color: #ffffff22;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
  }

  .slide:hover {
      transform: translateY(-5px);
  }

  .slide img {
      width: 100%;
      height: 150px;
      object-fit: cover;
  }

  .slide-info {
      padding: 15px;
      text-align: center;
  }

  .slide-info h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: #333;
  }

  .slide-info p {
      font-size: 14px;
      color: #ffffff;
      margin-bottom: 15px;
  }

  .slide-info button {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 5px;
      cursor: pointer;
      font-size: 14px;
      transition: background-color 0.3s ease;
  }

  .slide-info button:hover {
      background-color: #45a049;
  }

  /* Estilos para o botão */
  button {
      padding: 10px 20px;
      background-color: #ffffff;
      color: rgb(0, 0, 0);
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }

  button:hover {
      background-color: #45a049;
  }

  /* Estilos para o carrinho */
  #cart-container {
      border: 1px solid #b7b6b6;
      padding: 20px;
      max-width: 300px;
      margin: 20px auto;
  }

  #cart-items {
      margin-bottom: 20px;
  }

  #cart-items .cart-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
  }

  #cart-summary {
      font-weight: bold;
      text-align: right;
  }

  #checkout-button {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      width: 100%;
  }

  #cart {
      position: relative;
  }

  .cart-count {
      position: absolute;
      top: -5px;
      right: -10px;
      background-color: red;
      color: white;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 50%;
      font-weight: bold;
  }

  #cart-icon.has-items {
      position: relative;
  }

  #cart-icon.has-items::after {
      content: attr(data-count);
      position: absolute;
      top: -5px;
      right: -10px;
      background: red;
      color: white;
      font-size: 12px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
  }

  /* Estilo do Modal */
  .cart-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 1000;
  }

  .modal-content {
      background-color: rgba(255, 255, 255, 0.074);
      margin: 10% auto;
      padding: 20px;
      width: 80%;
      max-width: 500px;
      border-radius: 8px;
  }

  .local {
      background-color: rgba(255, 255, 255, 0.074);
      margin: 10% auto;
      padding: 20px;

      max-width: 500px;
      border-radius: 8px;
  }

  .button-container {
      background-color: rgba(255, 255, 255, 0.074);
      margin: 10% auto;
      padding: 20px;

      max-width: 500px;
      border-radius: 8px;
  }

  .close-modal {
      position: absolute;
      top: 10px;
      right: 10px;
      font-size: 30px;
      cursor: pointer;
  }

  .cart-summary button {
      background-color: #4CAF50;
      color: white;
      border: none;
      padding: 10px;
      cursor: pointer;
      width: 100%;
      margin-top: 20px;
  }

  .cart-summary button:hover {
      background-color: #45a049;
  }

  /* Estilos para o AR Modal */
  .ar-modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.8);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  model-viewer {
      width: 80%;
      height: 80%;
  }

  .ar-modal button {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: #ffffff2b;
      border: none;
      padding: 10px;
      cursor: pointer;
  }

  #map {
      height: 250px;
      z-index: 9999;
      margin-top: 20px;
  }


  /* Estilos para o layout dos botões */
  .button-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
  }

  .button-container .btn {
      flex: 1 1 calc(50% - 10px);
      /* Dois botões por linha */
      max-width: 150px;
      /* Limita a largura máxima */
      padding: 10px;
      font-size: 16px;
      text-align: center;
      background-color: #ffffff;
      color: #000000;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
  }


  #deliver-btn {
      flex: 1 1 calc(50% - 10px);
      /* Dois botões por linha */
      max-width: 150px;
      /* Limita a largura máxima */
      padding: 10px;
      font-size: 16px;
      text-align: center;
      background-color: #ffffff;
      color: #000000;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      text-decoration: none;
  }


  .button-container .btn i {
      margin-right: 5px;
  }


  .button-container .btn i {
      margin-right: 5px;
  }

  .button-container .btn:hover {
      background-color: #0056b3;
  }

  /* Estilo para o container do slider */
  .slidert {
      position: relative;
      width: 100%;
      height: 400px;
      /* Tamanho fixo, pode ser ajustado conforme necessário */
      overflow: hidden;
      border-radius: 8px;
  }

  /* Estilo para as imagens dentro do slider */
  .slidert img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: none;
      /* Esconde as imagens inicialmente */
      transition: opacity 1s ease-in-out;
  }

  /* Estilo para as imagens visíveis */
  .slidert img:only-child {
      display: block;
  }