@import url('https://fonts.googleapis.com/css2?family=Advent+Pro:wght@600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,500;1,600;1,700&family=Inter+Tight:wght@300;400&family=Jost:ital,wght@0,200;0,300;0,500;1,200;1,300;1,400;1,500&family=Montserrat+Alternates:wght@300;400&family=Montserrat:ital,wght@0,100;0,400;1,100;1,400&family=Poppins:ital,wght@0,100;0,300;0,400;0,500;1,200&family=Urbanist:ital,wght@0,400;1,300&display=swap');
:root{
    --orange: #ffa500;
}
*{
    font-family: 'Urbanist', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: capitalize;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s linear;
}
*::selection{
    background: var(--orange);
    color: #fff;
}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}
section{
    padding: 2rem 9%;

}
.btn{
    display: inline-block;
    margin-top: 1rem;
    background: var(--orange);
    color: #fff;
    padding: .9rem 4rem;
    padding: .2rem solid var(--orange);
    cursor: pointer;
    font-size: 2.3rem;
}
.btn:hover{
    background-color: rgba(255, 165, 0,.2);
    color: var(--orange);

}
header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #333;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 9%;

}
header .logo{
    font-size: 3.5rem;
    font-weight: bolder;
    color: #f2e8e8;
    text-transform: uppercase;
    margin-left: 10px;
}
header .logo span{
    color: var(--orange);
}
header .navbar a{
    color: #e2d7d7;
    font-size: 2rem;
    margin: 0.8rem;
    margin-left: 6px;
}
header .navbar a:hover{
    color: var(--orange);
}
header .icons i{
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    margin-right: 1rem;
}
header .icons i:hover{
    color: var(--orange);
}
header .search-bar-container{
    position: absolute;
    top: 100%; left: 0; right: 0;
    padding: 1.5rem 2rem;
    background: #333;
    border-top: .1rem solid rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0);
}
header .search-bar-container.active{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);

}
header .search-bar-container #search-bar{
    width: 100%;
    padding: 1rem;
    text-transform: none;
    color: #333;
    font-size: 1.7rem;
    border-radius: .5rem;
}
header .search-bar-container label{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    margin-left: 1.5rem;
}
header .search-bar-container label:hover{
    color: var(--orange);
}
body{
    height: 200rem;;
}
.login-form-container{
    position: fixed;
    top: -120%; left: 0;
    z-index: 10000;
    min-height: 100vh;
    width: 100%;
    background: rgba(0,0,0,.7);
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form-container.active{
    top: 0;
}
.login-form-container form{
    margin: 2rem;
    padding: 1.5rem 2rem;
    border-radius: .5rem;
    background: #fff;
    width: 60rem;
    justify-content: center;
}

.login-form-container form h3{
    font-size: 3rem;
    color: #444;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem 0;
}
.login-form-container form .box{
    width: 100%;
    padding: 2rem;
    font-size: 1.7rem;
    color: #333;
    margin: .6rem 0;
    border: .1rem solid rgba(0,0,0,.3);
    text-transform: none;
}
.login-form-container form .box:focus{
    border-color: var(--orange);
}
.login-form-container form #remember{
    margin: 3rem 0;
    margin-left: 7px;
}
.login-form-container form label{
    font-size: 1.5rem;
}
.login-form-container form .btn{
    display: block;
    width: 100%;
    height: 50px;
}
.login-form-container form p{
    padding: .5rem 0;
    font-size: 1.5rem;
    color: #666;
}
.login-form-container form p a{
    color: var(--orange);
}
.login-form-container form p a:hover{
    color: #333;
    text-decoration: underline;
}
.login-form-container #form-close{
    position: absolute;
    top: 2rem; right: 3rem;
    font-size: 5rem;
    color: #fff;
    cursor: pointer;
}
#menu-bar{
    color: #fff;
    border: .1rem solid #fff;
    border-radius: .5rem;
    font-size: 3rem;
    padding: .5rem 1.2rem;
    cursor: pointer;
    display: none;
}
.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    position: relative;
    z-index: 0;
}
.home .content{
    text-align: center;
}
.home .content h3{
    font-size: 4.5rem;
    color: #121111;
    text-transform: uppercase;
    text-shadow: 0 .3rem .5rem rgba(0,0,0,.1);
}
.home .content p{
    font-size: 2.5rem;
    color: #3b3535;
    padding: .5rem 0;
}
.home .video-container video{
    position: absolute;
    top: 0; left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home .controls{
    padding: 1rem;
    border-radius: 5rem;
    background: rgba(0,0,0,.7);
    position: relative;
    top: 10rem;
}
.home .controls .vid-btn{
    height: 2rem;
    width: 2rem;
    display: inline-block;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    margin: 0.5rem;
}
.home .controls .vid-btn.active{
    background-color: var(--orange);
}

h1{
    text-align: center;
    justify-content: center;
    font-size: 40px;
    padding-top: 55px;
    padding-bottom: 10px;
}
.Featured-Products .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;

}
.Featured-Products .box-container .box{
    flex: 1 1 40rem;
    border-radius: .5rem;
    overflow: hidden;
    box-shadow: 0 2rem 2rem rgba(9, 8, 8, 0.1);
}
.Featured-Products .box-container .box img{
    height: 50rem;
    width: 100%;
    object-fit: cover;
}
.Featured-Products .box-container .box .content{
    padding: 2rem;
}
.Featured-Products .box-container .box .content h3{
    font-size: 2rem;
    color: #333;
}
.Featured-Products .box-container .box .content .stars i{
    font-size: 1.7rem;
    color: var(--orange);
} 
.Featured-Products .box-container .box .content .price{
    font-size: 2rem;
    color: #333;
    padding-top: 1rem;
}
.Featured-Products .box-container .box .content .price span{
    color: #666;
    font-size: 1.5rem;
    text-decoration: line-through;

}
.product-category .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.product-category .box-container .box{
    overflow: hidden;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border: 1rem solid #fff;
    border-radius: .5rem;
    flex: 2 2 40rem;
    height: 50rem;
    position: relative;
}
.product-category .box-container .box img{
    height: 100%;
    font-weight: 100%;
    object-fit: cover;
}
.product-category .box-container .box .content{
    position: absolute;
    top: -100%; left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    justify-content: center;
    background: rgba(84, 75, 75, 0.7);
    padding: 2rem;
    padding-top: 5rem;
}
.product-category .box-container .box:hover .content{
    top: 0%;
}
.product-category .box-container .box .content h3{
    font-size: 2.8rem;
    color: var(--orange);
    padding: 1rem;
}
.product-category .box-container .box .content p{
    font-size: 1.8rem;
    color: #eee;
    padding-top: 7rem 0;
}
.Reviews .review-slider{
    padding-bottom: 2rem;
}
.Reviews .box{
    padding: 2rem;
    text-align: center;
    box-shadow: 0 1rem 2rem rgba(0,0,0,.1);
    border-radius: .5rem;
}
.Reviews .box img{
    height: 13rem;
    width: 13rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.Reviews .box h3{
    color: #333;
    font-size: 2.5rem;
}
.Reviews .box p{
    color: #666;
    font-size: 1.5rem;
    padding: 1rem 0;
}
.Reviews .box .stars i {
    color: var(--orange);
    font-size: 1.7rem;
}
.brand-container{
    text-align: center;
}
.footer{
    background: rgb(167, 152, 134);
}
.footer .box-container{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer .box-container .box{
    padding: 1rem 0;
    flex: 1 1 25rem;
}
.footer .box-container .box h3{
    font-size: 2.5rem;
    padding: .7rem 0;
    color: #222;
}
.footer .box-container .box p{
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #222;
}
.footer .box-container .box a{
    display: block;
    font-size: 1.5rem;
    padding: .7rem 0;
    color: #222;
}
.footer .box-container .box a:hover{
    color: rgb(57, 33, 4);
    text-decoration: underline;
}
.footer .credit{
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: normal;
    color: #160909;
}
.footer .credit span{
    color: rgb(121, 33, 202);
    font-weight: bold;
}





  










body{
    height: 300rem;;
}

/*Responsive calculations */
@media (max-width:991px){
    html{
        font-size: 55%;
    }
}
@media (max-width:991px){
    header{
        padding: 2rem;
    }
    section{
        padding: 2rem;
    }
}
@media (max-width:768px){
    #menu-bar{
        display: initial;
        
    }
    header .navbar{
        position: absolute;
        top: 150%; right: 0; left: 0;
        background-color: #333;
        border-top: .1rem solid rgba(255,255,255,.2);
        padding: 1rem 1rem;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }
    header .navbar.active{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    header .navbar a{
        display: block;
        border-radius: .5rem;
        padding: 1.5rem;
        margin: 1.5rem 0;
        background: #222;
    }
}
@media (max-width:450px){
    html{
        font-size: 50%;
    }
}




