    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 10px;
            box-sizing: border-box;                 
            display: flex;
            justify-content: center;
            align-items: center;			
			height: 100vh;
        }
		
        #minhaImagem {
            width: 100%;
            height: 600px;
			border-radius: 20px;
        }		
		
        #whatsapp {
            display: none; /* Tornar a div invisível */
        }	
		
		/* Estilos para o campo de pesquisa */
		.search-container {
			text-align: center;
			margin-top: 50px;
		}

		#searchInput {
			padding: 10px;
			border-radius: 20px;
			border: 3px solid #3498db;
			width: 300px;
			font-size: 16px;
			outline: none;
			margin-bottom: 20px;
			transition: all 0.3s ease;
		}

		#searchInput:focus {
			border-color: #ff0000;
		}

		/* Estilos para a descrição acima do campo de pesquisa */
		.search-description {
			font-size: 18px;
			color: #0000CD;
			margin-bottom: 5px;
			font-weight: bold;
		}		
		
        .container {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }

        .product {
            width: 30%;
            background-color: #fff;
            margin: 10px 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
            overflow: hidden;
            align-items: center;
            display: layout;
            justify-content: center;
            border-radius: 20px;
            cursor: pointer;
        }
        .product:hover {
            transform: scale(1.05);
        }

        .product img {
            width: auto;
            height: 200px;
            object-fit: contain;
        }

        .product-info {
            padding: 15px;
        }

        .product h2 {
            margin: 0;
            font-size: 1.2em;
        }

        .product p {
            margin: 10px 0;
        }

        .product span {
            font-weight: bold;
            color: #333;
        }
        .fa-star {
            color: red;
        }

        .full-screen {
            position: fixed;
            top: 5%;
            left: 5%;
            width: 90%;
            height: 90%;
            z-index: 1000;
            background-color: #FFFFFF;
            display: none;
            align-items: center;
            justify-content: center;
            border-radius: 30px;
            cursor: pointer;
            flex-direction: column;
            text-align: center;
            border: 10px solid #c2c2c2;
        }

        .full-screen img {
            max-width: 80%;
            max-height: 40%;
			min-width: 50%;
            object-fit: contain;
        }

        .product-info-fullscreen {
            margin-top: 20px;
            text-align: left;
            padding: 20px;
        }
		
		/* Adicione este bloco de estilos ao seu arquivo CSS ou no bloco <style> dentro do cabeçalho HTML */
		.full-screen button {
		  background-color: #fd384f; /* Cor verde */
		  color: white;
		  padding: 15px 20px; /* Tamanho grande */
		  font-size: 18px;
		  border: none;
		  border-radius: 5px;
		  cursor: pointer;
		}

		.full-screen button:hover {
		  background-color: rgba(253, 56, 79, 0.8);
		}
		
		.cart-message {
		  position: fixed;
		  top: 20px;
		  left: 50%;
		  transform: translateX(-50%);
		  background-color: navy; /* Cor verde */
		  color: white;
		  padding: 15px 20px; /* Tamanho grande */
		  font-size: 18px;
		  border-radius: 5px;
		  animation: fadeOut 3s ease-in-out; /* Animação de fadeOut em 3 segundos */
		}

		@keyframes fadeOut {
		  0% {
			opacity: 1;
		  }
		  100% {
			opacity: 0;
		  }
		}

		/* Estilos para o ícone do carrinho */
		.cart-icon {
		  position: fixed;
		  top: 20px;
		  right: 20px;
		  font-size: 45px;
		  color: #fd384f;
		  cursor: pointer;
		  align-items: center;
		}

		/* Adicione esta regra para criar a animação */
		@keyframes jumpAnimation {
		  0%, 20%, 50%, 80%, 100% {
			transform: translateY(0);
		  }
		  40% {
			transform: translateY(-10px);
		  }
		  60% {
			transform: translateY(-5px);
		  }
		}

		/* Modifique a regra existente para aplicar a animação */
		#cartItemCount {
		  position: absolute;
		  top: 5px;
		  right: 15px;
		  color: white;
		  font-weight: bold;
		  font-size: 25px;
		  cursor: pointer;

		  /* Adicione a animação */
		  animation: jumpAnimation 0.5s ease; /* Ajuste a duração e a função de temporização conforme necessário */
		  animation-play-state: paused; /* Pausa a animação por padrão */
		}	
		
		/* Adicione a classe 'jump' para iniciar a animação */
		#cartItemCount.jump {
		  animation: jumpAnimation 0.5s ease; /* Inicia a animação quando a classe 'jump' está presente */
		}		
		
		/* Adicione ao seu arquivo de estilo CSS ou inclua no estilo da página */
		.even-background {
		  background-color: #ffffff; /* Cor de fundo para itens pares */
		}

		.odd-background {
		  background-color: #ffffff; /* Cor de fundo para itens ímpares */
		}	
		
		/* Adicione ao seu arquivo de estilo CSS ou inclua no estilo da página */
		.cart-item-border {
		  border-bottom: 1px solid #000;
		  border-left: 2px solid #000;
		  border-right: 2px solid #000;
		  border-top: 1px solid #000;
		  padding: 8px; /* Espaçamento interno para a borda */
		}		
				
		.product-cart {
		  position: fixed;
		  top: 0;
		  right: 0;
		  width: 0;
		  height: 85%;
		  background-color: #fff;
		  overflow-x: hidden;
		  padding-top: 20px;
		  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
		  font-family: 'Menlo', monospace;
		  
		}

		.product-cart span.close-btn {
		  position: absolute;
		  top: 10px;
		  right: 15px;
		  font-size: 54px;
		  cursor: pointer;
		}	

		/* Adicione este bloco de estilos ao seu arquivo CSS ou no bloco <style> dentro do cabeçalho HTML */
		#totalText {
		  color: navy;
		  font-size: 34px;
		  position: fixed;
		  bottom: 40px;
		  right: 0px;
		  visibility: hidden;
		  font-family: 'Arial', sans-serif;
		  font-weight: bold;
		  background-color: #FFFFFF;
		  width: 40%;		  
		  text-align: right;
		}	
		
		/* Adicione este bloco de estilos ao seu arquivo CSS ou no bloco <style> dentro do cabeçalho HTML */
		#finalizarPedidoBtn {
		  color: white;
		  background-color: #fd384f;
		  padding: 10px 230px;
		  font-size: 20px;
		  border: none;
		  border-radius: 5px;
		  cursor: pointer;		  
		  position: fixed;
		  bottom: 20px;
		  display: inline-block;		  
		}

		#finalizarPedidoBtn:hover {
		  background-color: rgba(253, 56, 79, 0.8);
		}
		
		/* Adicione este bloco de estilos ao seu arquivo CSS ou no bloco <style> dentro do cabeçalho HTML */
		#productPrice {
		  /* Estilos específicos para o preço do produto */
		  color: navy;
		  font-weight: bold;
		  font-size: 25px;
		  /* Adicione outros estilos conforme necessário */
		}	
		
		#nome-item {
		   color: navy;	
		   font-size: 25px;
		}	
		
		#nome-completo {
		   display: none;			
		
		}	
		
		.delete-icon {
		  color: red;
		  cursor: pointer;
		  margin-right: 15px;
		}

		.modal {
		  display: none;
		  position: fixed;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: 100%;
		  background-color: rgba(0, 0, 0, 0.7);
		  justify-content: center;
		  align-items: center;
		}

		.modal-content {
		  background-color: #fff;
		  padding: 50px;
		  border-radius: 20px;
		}

		/* Adicione outros estilos conforme necessário */
		.modal-content label,
		.modal-content input {
		  display: block;
		  margin-bottom: 10px; /* Adicione margem inferior para espaçamento entre os campos */
		  width: 300px;
		  font-size: 28px;
		}

		.modal-content button {
		  display: block;
		  margin-top: 10px; /* Adicione margem superior para espaçamento entre os campos e o botão */
		  color: white;
		  background-color: #fd384f;
		  padding: 10px 40px;
		  font-size: 30px;
		  border: none;
		  border-radius: 5px;
		  cursor: pointer;		  
		  bottom: 20px;	 		  
		}
		
		.modal-content button:hover {
		  background-color: rgba(253, 56, 79, 0.8);
		}	
		
		.premodal {
		  display: none; 
		  position: fixed; 
		  z-index: 1; 
		  left: 0;
		  top: 0;
		  width: 100%; 
		  height: 100%; 
		  overflow: auto; 
		  background-color: rgb(0,0,0); 
		  background-color: rgba(0,0,0,0.4); 
		}

		.premodal-content {
		  background-color: #fefefe;
		  margin: 15% auto; 
		  padding: 20px;
		  border: 1px solid #888;
		  width: 300px;
          height: 100px;		  
		}

		button {
		  margin: 5px;
		  padding: 5px 50px 5px 50px;
		  border: none;
		  background-color: #4CAF50;
		  color: white;
		  cursor: pointer;
		}

		button:hover {
		  background-color: #45a049;
		}
		


        @media (max-width: 768px) {
			#minhaImagem {
				width: 100%;
				height: auto;
				border-radius: 20px;
			}			
			#totalText {
				width: 100%;
			}	
			#finalizarPedidoBtn {
			   color: white;
			   background-color: #fd384f;
			   border: none;
			   border-radius: 5px;
			   padding: 20px 10px 20px 10px;
			   font-size: 30px;			   
			   cursor: pointer;
			   margin-top: 0px;
			   position: fixed;
			   bottom: 0px;
			   display: inline-block;
			   text-align: center; 
			   width: 100%;
			}	
			#nome-item {
			   color: navy;	
			   font-size: 15px;
			}			
			#productPrice {
			  /* Estilos específicos para o preço do produto */
			  color: navy;
			  font-weight: bold;
			  font-size: 15px;
			  /* Adicione outros estilos conforme necessário */
			}				
            .product {
                width: 48%; /* Mostrar 2 colunas em telas menores */
                display: layout;
            }
            .product img {
                width: 100%;
                max-width: 100%;
                max-height: 100%;
                object-fit: contain;
            }
			
        }
				
    </style>