     /* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        html {
    scroll-behavior: smooth;
}


       /* Cabeçalho rosa hexadecimal, aqui está: #CFA2A8 e Tom mais escuro 1 (20% mais escuro): RGB (165, 129, 134) | Hexadecimal: #A58186
Tom mais escuro 2 (40% mais escuro): RGB (124, 97, 100) | Hexadecimal: #7C6164/ */
        header {
            background-color: #e8e8e8;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 2px solid #A58186;
        }

        header h1 {
            color: #A58186;
            font-size: 1.5em;
             font-family: 'Pristina', cursive; 
              font-weight: bold;
             
        }

        header .menu-toggle {
            display: none;
            font-size: 1.5em;
            cursor: pointer;
            color: #A58186;
        }

       
        header .search_mobile {
                display: none;
            }

          header .search {
    position: relative; /* Define como referência para posicionamento absoluto */
    width: 40%; /* Ajuste conforme necessário */
     }

            header .search i {
                position: absolute;
                top: 50%; /* Centraliza verticalmente o ícone no input */
                left: 10px; /* Distância do lado esquerdo */
                transform: translateY(-50%); /* Alinha perfeitamente ao centro vertical */
                color: #CFA2A8; /* Cor do ícone */
                font-size: 1.2em; /* Tamanho do ícone */
                pointer-events: none; /* Faz com que o clique passe pelo ícone diretamente ao input */
            }
            
            header .search input {
                padding: 5px 10px 5px 35px; /* Adiciona espaço à esquerda para o ícone */
                border: 1px solid #A58186; /* Borda do input */
                border-radius: 4px; /* Bordas arredondadas */
                font-size: 1em; /* Tamanho da fonte */
                width: 100%; /* Largura total do input */
                box-sizing: border-box; /* Inclui o padding na largura total */
            }
            
            
            header .search input:focus {
                border-color: #CFA2A8; /* Mantém a cor das bordas ao focar */
                outline: none; /* Remove a borda azul padrão do navegador */
            }

        header .icons {
            display: flex;
            align-items: center;
            gap: 20px;
            position: relative;
        }

        header .icons .dropdown {
            position: relative;
        }
        
        
        header .icons .dropdown i {
        font-size: 1.5em; /* Aumenta o tamanho para destacar */
        color: #CFA2A8; /* Cor azul */
        }

    
        header .icons #user-name {
        font-size: 1em;
        font-weight: bold;
        color: #CFA2A8;
        margin-left: 5px;
        cursor: pointer;
        }
        

        header .icons .dropdown-content {
            display: none;
            position: absolute;
            top: 30px;
            right: 0;
            background-color: #f9f9f9;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
        }

        header .icons .dropdown-content a {
            padding: 10px 20px;
            text-decoration: none;
            display: block;
            color: #CFA2A8;
        }

        header .icons .dropdown-content a:hover {
            background-color: #CFA2A8;
            color:#000;
        }

        header .icons .dropdown:hover .dropdown-content {
            display: block;
        }
  
  
         header .icons .dropdown_m-content_m a {
            display: none;
        }
        
        header .icons i {
            font-size: 1.2em;
            color: #CFA2A8;
            cursor: pointer;
        }

        header .icons span {
            margin-left: 5px;
            font-size: 1em;
            color: #CFA2A8;
			cursor: pointer;
        }
         
        header .cesta_desktop {
            position: relative;
            cursor: pointer;
        } 
         
         
        header .cesta_mobile {
           display:none; 
         
          } 
         
		@media (max-width: 768px) {
            header {
                flex-direction: column;
                align-items: flex-start;
            }

            header h1 {
                width: 100%;
            }

            header .menu-toggle {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }

         header .cesta_mobile {
            position: absolute; 
           display:block; 
           cursor: pointer;
           right: 60px;
          }
          
         header  .cesta_desktop {
           display:none; 
          } 
            
             header .search_mobile {
                 width: 100%;
                 display: block;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        
  
        header .search_mobile input {
            padding: 5px;
            border: 1px solid #CFA2A8;
            border-radius: 4px;
            font-size: 1em;
            width: 100%;
        }

        header .search_mobile i {
            font-size: 1.2em;
            color: #CFA2A8;
            cursor: pointer;
        }

      
       
       header .icons .dropdown-content {
           padding: 5px;
           border-top: 1px solid #CFA2A8;
            border-bottom: 1px solid #CFA2A8;
            border-radius: 4px;
            font-size: 1em;
            width: 100%;
            position: relative;
            float:left;
            top: 2px;
            right: 0;
            margin-bottom:10px;
            z-index: 1;
        }

        header .icons .dropdown-content a {
             max-width: 300px;
             border-bottom: 1px solid #CFA2A8;
            padding: 10px 20px;
            text-decoration: none;
            display: block;
            color: #CFA2A8;
        }

        header .icons .dropdown-content a:hover {
            background-color: #ddd;
        }

       
            
             header .search {
                display: none;
            }

            header .icons {
                display: none;
                flex-direction: column;
                gap: 10px;
                width: 100%;
                background-color: #e8e8e8;
                padding: 10px;
            }

            header .icons.active {
                display: flex;
            }
            
            
            header .search_mobile {
    position: relative; /* Define como referência para posicionamento absoluto */
    width: 100%; /* Ajuste conforme necessário */
}

        header .search_mobile i {
            position: absolute;
            top: 50%; /* Centraliza verticalmente o ícone no input */
            left: 10px; /* Distância do lado esquerdo */
            transform: translateY(-50%); /* Alinha perfeitamente ao centro vertical */
            color: #CFA2A8; /* Cor do ícone */
            font-size: 1.2em; /* Tamanho do ícone */
            pointer-events: none; /* Faz com que o clique passe pelo ícone diretamente ao input */
        }
        
        header .search_mobile input {
            padding: 5px 10px 5px 35px; /* Adiciona espaço à esquerda para o ícone */
            border: 1px solid #A58186; /* Borda do input */
            border-radius: 4px; /* Bordas arredondadas */
            font-size: 1em; /* Tamanho da fonte */
            width: 100%; /* Largura total do input */
            box-sizing: border-box; /* Inclui o padding na largura total */
        }
        
          header .search_mobile input:focus {
            border-color: #CFA2A8; /* Mantém a cor das bordas ao focar */
            outline: none; /* Remove a borda azul padrão do navegador */
        }
          
            
        } 
		 
        /* Modais */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 15% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px;
            border-radius: 10px;
        }

        .modal-content h2 {
            margin-bottom: 20px;
        }

        .modal-content input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .modal-content button {
            width: 100%;
            padding: 10px;
            background-color: #d3bfae;
            border: none;
            border-radius: 5px;
            color: #333;
            font-weight: bold;
            cursor: pointer;
        }

        .modal-content button:hover {
            background-color: #c5a994;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
		
		/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}
		
		
		/*cinza meio escuro: background-color: #aba8a8;   cinza bem claro background-color: #f2f2f2;*/
        nav {
            display: flex;
            justify-content: center;
            background-color: #ddd;
            padding: 10px;
        }

        nav a {
            margin: 0 10px;
            color: #A58186;
            text-decoration: none;
            font-weight: bold;
            border-bottom:#CFA2A8;
        }

        nav a:hover {
            text-decoration: underline;
            border-bottom:#CFA2A8;
        }

        /* Banner rotativo */
        .banner {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin-top: 10px;
        }

        .banner img {
            width: 100%;
			 height: 350px;
            display: none;
        }

        .banner img.active {
            display: block;
        }

       

        /* Ícones de informações */
        .info-section {
            display: flex;
            justify-content: space-around;
            align-items: center;
            background-color: #ddd;
            padding: 10px 0;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

        .info-section .info-item {
            text-align: center;
            max-width: 100px;
        }

        .info-section .info-item i {
            font-size: 1.3em;
            color: #A58186;
            margin-bottom: 5px;
        }

        .info-section .info-item p {
            font-size: 0.7em;
            color: #7C6164;
            margin: 2px 0;
        }

        .info-section .info-item p span {
            font-weight: bold;
        }

    	@media (max-width: 768px) {
    	   .info-section .info-item {
            text-align: center;
            max-width: 80px;
        }

        .info-section .info-item i {
            font-size: 1.0em;
            color: #A58186;
            margin-bottom: 2px;
        }

        .info-section .info-item p {
            font-size: 0.7.6em;
            color: #7C6164;
            margin: 2px 0;
        }

        .info-section .info-item p span {
            font-weight: bold;
        }
    	}    


        .container_categorias {
    max-width: 950px;
    margin: auto;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.categorias {
    display: flex;
    overflow-x: auto;
    padding: 30px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.categorias a {
    text-decoration: none;
    color: inherit;
}

.bloco_categoria {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.titulo_categoria {
    font-size: 0.8em;
    color: #7C6164;
    margin-top: 5px;
    text-align: center;
}

.categorias::-webkit-scrollbar {
    display: none;
}

.categoria {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    background-color: #e8e8e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.categoria:hover {
    transform: scale(1.1);
}

.categoria img {
    width: 80%;
    height: 80%;
    border-radius: 50%;
}
       
          /* Conteúdo principal */
        .container {
            max-width: 1200px;
            margin: auto;
            padding: 10px;
        }
        
       
         /* Slick Carousel Customization */
        .slick-slide {
            margin: 0 5px;
        }

        .slick-prev,
        .slick-next {
            background: #d3bfae;
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex !important;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .slick-prev:hover,
        .slick-next:hover {
            background: #d3bfae;
        }
        
	.slick-prev {
	left: -10px;
	}

	.slick-next {
	right: -10px;
	}

 .slick-prev:before,
 .slick-next:before {
    font-size: 30px;
    opacity: 0.75;
}

.slick-prev:hover:before,
.slick-next:hover:before {
    opacity: 1;
}

 		
        .produto {
			text-align:center;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .produto img {
            width: 100%;
            height: 380px;
        }
       
        .produto h2 {
            font-size: 1.2em;
            margin: 15px;
            color: #444;
          }
        
        .Titulo_pag_produto {
            font-size: 1.0em;
            margin: 5px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
		       
        .cor {
            font-size: 0.8em;
            font-weight:bold;
            margin: 2px 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #ddd;
        }
        
        .tamanho {
            font-size: 0.8em;
            font-weight:bold;
            margin: 2px 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #ddd;
        }
        
         .tecido {
            font-size: 0.8em;
            font-weight:bold;
            margin: 2px 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #ddd;
        }
        
        
         .Desc_pag_produto {
            font-size: 1.0em;
            margin: 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .produto p {
            margin: 15px;
            color: #666;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .produto .preco {
            font-size: 1.2em;
            font-weight: bold;
            margin: 2px 15px;
        }

        .produto button {
            display: block;
            width: 90%;
            margin: 15px auto;
            padding: 10px;
            background-color: #d3bfae;
            border: none;
            border-radius: 5px;
            color: #333;
            font-weight: bold;
            cursor: pointer;
        }

        .produto button:hover {
            background-color: #c5a994;
        }

        /* Carrossel de produtos redondos */
        .carrossel {
            display: flex;
            overflow-x: auto;
            padding: 20px;
            gap: 20px;
        }

        .carrossel::-webkit-scrollbar {
            display: none;
        }

        .carrossel-item {
            flex: 0 0 auto;
            width: 270px;
            height: 270px;
            background-color: #e8e8e8;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .carrossel-item img {
            width: 80%;
            height: 80%;
            border-radius: 50%;
        }

        /* Rodapé */
        footer {
            text-align: center;
            padding: 20px;
            background-color: #e8e8e8;
            margin-top: 20px;
        }

        footer p {
            color: #555;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            header h1 {
                font-size: 1.5em;
            }

            nav {
                flex-wrap: wrap;
            }
			
	

         .banner img {
            width: 100%;
			 height: 250px;
            display: block;
            }
            
            
             .produto img {
            width: 100%;
            height: 300px;
            display:block;
        }
            
            .Titulo_pag_produto {
            font-size: 1.3em;
            font-weight:bold;
            margin: 5px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        
        .cor {
            font-size: 0.8em;
            font-weight:bold;
            margin: 2px 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #ddd;
        }
        
        .tamanho {
            font-size: 0.8em;
            font-weight:bold;
            margin: 2px 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #ddd;
        }
        
         .tecido {
            font-size: 0.8em;
            font-weight:bold;
            margin: 2px 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            border-bottom: 1px solid #ddd;
        }
        
        
         .Desc_pag_produto {
            font-size: 1.0em;
            margin: 15px;
            color: #444;
             display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            display:block;
        }
        }