
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500&display=swap');

:root{
    --main-color:#886337;
    --black:#13131a;
    --bg:#010103;
    --border:.1rem solid rgba(255,255,255,.3);


}
*{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;

}
.logo-1{
    border-radius: 50%;
    border:3px solid #fff;
    width: 70px;
}
html{
    font-size:62.5% ;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}
html::-webkit-scrollbar{
    width:.8rem ;
}
html::-webkit-scrollbar-track{
   background: transparent;
}
html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;

 }
 body{
    background: var(--bg);
 }
 section{
    padding: 2rem 7%;
 }
.heading{
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    padding-bottom: 3.5rem;
    font-size: 4rem;

}
.heading span{
    color: var(--main-color);
    text-transform: uppercase;
    
}
.btn{
    margin-top: 1rem;
    display: inline-block;
    padding: .9rem 3rem;
    font-size: 1.7rem;
    color: #fff;
    background: var(--main-color);
    cursor: pointer;
}
.btn:hover{
    letter-spacing:.2rem ;
}
.hidden{
    transform: scale(0.8);
    opacity: 0;
    transition: all .5s ease-out;
}
.mostrar{
   transform: scale(1);
   opacity: 1;
}
 /* header------------------------------------- */
 .header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 7%;
    border-bottom:var(--border) ;
    position: fixed;
    top:0;left:0;right:0;
    z-index: 1000;
}
.header .logo img{
    height: 6rem;
}
.header .navbar a{
    margin:0 1rem;
    font-size:1.7rem ;
    color: #fff;

}
.header .navbar a:hover{
    color: var(--main-color);
    border-bottom: .1rem solid var(--main-color);
    padding-bottom: .5rem;
}
.header .icons div{
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    margin-left: 2rem;

}
.header .icons div:hover{
    color: var(--main-color);
}
 #menu-btn{
    display: none;

} 
/* .header .search-form{
    position: absolute;
    top: 115%;right: 7%;
    background: #fff;
    width:50rem ;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scaleY(0);
    transform-origin: top;

}
.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem;
    text-transform: none;

}
.header .search-form.active{
    transform: scaleY(1);

}
.header .search-form label{
    cursor: pointer;
    font-size: 2.2rem;
    margin-right: 1.5rem;
    color: var(--black);


}
.header .search-form label:hover{
    color: var(--main-color);
}
.header .cart-items-container{
    position: absolute;
    top:100%; right: -100%;
    height: calc(100vh - 9.5rem);
    width: 35rem;
    background:#fff;
    padding: 0 1.5rem;
}
.header .cart-items-container.active{
    right: 0;
}

.cart{
    width: 75px;
    height: 75px;
    border-radius: 30%;
}
.header .cart-items-container .cart-item{
    position: relative;
    margin: 2rem 0 ;
    display: flex;
    align-items: center;
    gap:1.5rem;

}
.header .cart-items-container .cart-item .fa-times{
    position: absolute;
    top:1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);
}
.header .cart-items-container .cart-item .fa-times:hover{
    color: var(--main-color);

}
/* .header .cart-items-container .cart-item img{
     height: 7rem; 
    
} 
.header .cart-items-container .cart-item  .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}
.header .cart-items-container .cart-item .content .price{
    font-size: 1.5rem;
    color: var(--main-color);
  
}
.header .cart-items-container  .btn{
    width: 100%;
    text-align: center;

} */

 /* header ensd------------------------------- */
  /* home------------------------------- */

.home{
    min-height: 100vh;
    display:flex;
    align-items: center;
    background:url(/img/home.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    
}
.home .content{
    max-width: 60rem;

}
.home .content h3{
    font-size: 6rem;
    text-transform: uppercase;
    color:#fff;

}
.home .content p{
    font-size: 2rem;
    font-weight: unset ;
    line-height: 1.8;
    padding: 1rem 0;
    color:#eee;

}

  /* home ends------------------------------- */

  
  /* about------------------------------- */
.about .row{
    display: flex;
    align-items: center;
    background: var(--black);
    flex-wrap: wrap;
}
.about .row .image{
    flex: 1 1 45rem;
}
.about .row .image img{
    width:100% ;
}
.about .row .content{
    padding: 2rem;
    flex: 1 1 45rem;
}
.about .row .content h3{
    font-size: 3rem;
    color: #fff;
}
.about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
} /* about------------------------------- */
 /* menu------------------------------- */

.menu .box-container1{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
}
.menu .box-container1 .box1{
    padding: 5rem;
    text-align: center;
    border:var(--border)
}
/* .menu .box-container1 .box1:hover{
   border: 2px solid #fff;
} */
.menu .box-container1 .box1 img{
    height:10rem ;
}
.menu .box-container1 .box1 h3{
    color: #fff;
    font-size: 2rem;
    padding: .5rem 0;
}
.menu .box-container1 .box1 ul{
    color: #fff;
    text-align:center;
    padding-left: 3rem;
    font-size: 1.5rem;
    list-style: none;
    font-weight: lighter;

}
.menu .box-container1 .box1 .price{
    color: #fff;
    font-size: 2.5rem;
    padding: .5rem 0;
}
.menu .box-container1 .box1 .price span{
    color:var(--main-color);
    font-size: 1.5rem;
   text-decoration: line-through;
  
}
/* .menu .box-container .box:hover{
    background: #fff;
}
.menu .box-container .box:hover > *{
    color:var(--black)
} */
 /* menu fin------------------------------- */

  /* products------------------------------- */


  .products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
  }

.products .box-container .box{
    text-align: center;
    border: var(--border);
    padding: 2rem;
}
.products .box-container .box:hover{
  border:2px solid #fff ;
  transform: scale(.9);
  
}
/* .products .box-container .box .icons a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    border: var(--border);
    color: #fff;
    margin: .3rem;
}
.products .box-container .box .icons a:hover{
    background: var(--main-color); */
/* } */
.products .box-container .box .image{
    padding: 2.5rem 0 ;
}
.products .box-container .box .image img{
    height: 25rem;
    width: 25rem;
    border-radius: 25%;
}

.products .box-container .box .content h3{
    color: #fff;
    font-size:2.5rem ; 
}
.products .box-container .box .content .stars{
    padding: 1.5rem;
}
.products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--main-color);
}
.products .box-container .box .content .price{
    color: #fff;
    font-size: 2.5rem;
}
.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-size: 1.5rem;
    color: var(--main-color);
}
/* prudutos fin------------------------------- */
.vista-producto{
    position: fixed;
    top:0;left: 0;
    min-height: 100vh;
    width: 100%;
    background:rgba(0,0,0,.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;

}
.vista-producto .vista{
    display:none;
    padding: 2rem;
    text-align: center;
    background: #fff;
    position: relative;
    margin: 6rem;
    width:40rem ;

}
.vista-producto .vista.active{
    display: inline-block;
}
.vista-producto .vista img{
    height:25rem ;
    width: 25rem;
}
.vista-producto .vista img:nth-child(3){
    width: 200px;

}
.vista-producto .vista .fa-times{
    position: absolute;
    top: 1rem;right: 1.5rem;
    cursor: pointer;
    color:var(--black);
    font-size: 4rem;

}
.vista-producto .vista .fa-times:hover{
    color: var(--main-color);
    transform: scale(.9);
}
.vista-producto .vista h3{
    color: #444;
    padding: .5rem 0;
    font-size: 2.5rem ;
}
.vista-producto .vista .price{
    color:var(--bg);
    font-size: 2.5rem;
    padding: 1rem 0;
}
.vista-producto .vista .price span{
    text-decoration: line-through;
    font-size: 1.5rem;
    color: var(--main-color);
}
.vista-producto .vista p{
    line-height:1.5 ;
    padding: 1rem 0;
    font-size: 1.6rem;
    color: #777;
}
.vista-producto .vista 
/* pruduto fin------------------------------- */

/* review------------------------------- */

.review .box-container3{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;
}
.review .box-container3 .box3{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}
.review .box-container3 .box3 p{
    font-size: 1.6rem;
    line-height: 1.8;
    color: #ccc;
    padding: 2rem 0;
}
.review .box-container3 .box3 .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}
.review .box-container3 .box3 h3{
    padding:1rem 0;
    font-size: 2rem;
    color: #fff;
}
.review .box-container3 .box3 .stars i{
    font-size:1.5rem ;
    color: var(--main-color);


}
/* review fin------------------------------- */
/* contact ------------------------------- */

.contact .row{
    display: block;
    background: var(--black);
    flex-wrap: wrap;
    gap: 1rem;

   
}

.contact .row a{
    color: #eee;
    font-size: 1.5rem;
}
.contact .row .container-contacto{
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.contact .row .container-contacto span{
    color: #eee;
    font-size: 2rem;
    padding: .5rem;
    font-weight: lighter;
}
.contact .row .container-contacto a{
    color: #ccc;
    font-size: 1.5rem;
    padding: .5rem;

}


.contact .row .map{
    flex: 1 1 45rem;
    width: 100%;
    object-fit: cover;
   
}


/* .contact .row form{
    flex: 1 1 45rem;
    padding: 5rem 2rem;
    text-align: center;
}

 .contact .row form h3{
    text-transform: uppercase;
    font-size: 3.5rem;
    color: #fff;
}

.contact .row form .inputBox{
    display: flex;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: var(--bg);
    border: var(--border);
}

.contact .row form .inputBox span{
    color: #fff;
    font-size: 2rem;
    padding: 2rem;    
}
.contact .row form .inputBox textarea{
    background-color: transparent;
    max-height: 30rem;
    max-width: 40rem;
    color: #fff;
    font-size: 1.6rem;
    padding: 2rem;
}

.contact .row form .inputBox input{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #fff;
    text-transform: none;
    background: none;
} */
/* contact fin------------------------------- */
/* blog------------------------------- */
/* .blog .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(30rem,1fr));
    gap: 1.5rem;

}
.blog .box-container .box{
    border: var(--border);
}
.blog .box-container .box .image{
    height: 25rem;
    overflow: hidden;
    width: 100%;
}
.blog .box-container .box .image img{
    height:100%;
    object-fit: cover;
    width: 100%;
}
.blog .box-container .box:hover .image img{
    transform: scale(1.2);
}
.blog .box-container .box .content{
    padding: 2rem;
}
.blog .box-container .box .content .title{
    font-size: 2.5rem;
    line-height: 1.5;
    color: #fff;
}
.blog .box-container .box .content .title:hover{
    color: var(--main-color);
}
.blog .box-container .box .content span{
    color: var(--main-color);
    display:block;
    padding-top: 1rem;
    font-size: 2rem;
}
.blog .box-container .box .content p{
    font-size: 1.6rem;
    line-height: 1.8;
    color:#ccc ;
    padding:1rem 0 ;

} */
/* blog fin------------------------------- */
/* footer section------------------  */
.footer{
    background: var(--black);
    text-align: center;
}
.footer .shar a{
    height:5rem ;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: #fff;
    border: var(--border);
    margin: .3rem;
    border-radius:50% ;

}
.footer .shar a:hover{
    background-color: var(--main-color);
}
.footer .links{
    display: flex;
    justify-content: center;
    flex-wrap:wrap ;
    padding: 2rem 0;
    gap: 1rem;
}
.footer .links a{
    padding: .7rem 2rem;
    color: #fff;
    border: var(--border);
    font-size: 2rem;
}
.footer .links a:hover{
    background: var(--main-color);
}
.footer .credits{
    font-size: 2rem;
    color: #fff;
   
    padding: 1.5rem;
}
.footer .credits span{
    color:var(--main-color) ;
}
/* footer section fin------------------ */




  /* responsive header------------------------------- */
  @media (max-width: 991px) {
    html{
        font-size:55% ;
       
    }
    .header{
        padding: 1.5rem 2rem;
    }
    section{
        padding: 2rem;
     }
  }

  @media (max-width: 768px) {
    #menu-btn{
        display: inline-block;
    }
    .header .navbar{
        position: absolute;
        top: 100%;right: -100%;
        background: var(--bg);
        width: 40rem;
        height: 100vh;
        transition: 1s ease; 
    }
    .header .navbar.active{
        right: 0px;
        transition: .8s ease;

    }
    .header .navbar a{
        color:#ccc;
        display: block;
        margin: 3rem;
        padding: 1rem;
        font-size:2.5rem ;
        text-align:start;
    }
/*     
    .header .search-form{
        width: 90%;
        right: 2rem;
    } */
    .home{
        background-position: left;
        justify-content: center;
        text-align: center;
    }
    .home .content h3{
        font-size: 4.5rem;
    }
    .home .content p{
        font-size: 1.5rem;
    }

  }



  @media (max-width: 450px) {
    html{
        font-size:50% ;
       
    }
    .header .navbar{
        position: absolute;
        top: 100%;right: -100%;
        background: var(--bg);
        width: 100%;
        height: 100vh;
        transition: 1s ease; 
    }
    .header .navbar.active{
        right: 0px;
        transition: .8s ease;

    }
    .header .navbar a{
        color:#ccc;
        display: block;
        margin: 3rem;
        padding: 1rem;
        font-size:2.5rem ;
        text-align:center;
    }
    .vista-producto .vista img{
        height:15rem ;
        width: 15rem;
    }
    .vista-producto .vista .fa-times{
     font-size: 3rem;
     position: absolute;
     right: 1rem;
     top:.5rem;
  }   
  .vista-producto{
    margin-top: 3rem;

}
 }
