@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');
:root{
    --main-color:#feab2e;
    --black:#13131a;
    --bg:#010103;
    --border:.1rem solid rgba(255,255,255,.3);
}
*{
    font-family: 'Roboto', sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    outline: none; border: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    
    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;
}

.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;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
}

.header .logo img{
    height: 6rem;
}

.header .navbar a{
    margin: 0 1rem;
    font-size: 1.6rem;
    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-color: #fff;
    width: 50rem;
    height: 5rem;
    display: flex;
    align-items: center;
    transform: scaleY(0);
    transform-origin: top;
}
.header .search-form.active{
    transform: scaleY(1);
}
.header .search-form input{
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    color: var(--black);
    padding: 1rem;
    text-transform: none;
}
.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;
    overflow-y: auto; /* Optional: scroll if content overflows */
}

.header .cart-items-container.active{
    right: 0;
}

.header .cart-items-container .cart-items {
    position: relative;
    display: flex;
     /* Stack vertically */
    align-items: center;
    gap: 1.5rem; /* Vertical spacing */
    margin: 2rem 0;
}

.header .cart-items-container .cart-items img {
    width: 100px;  /* Set a fixed width */
    height: 100px; /* Set a fixed height */
    object-fit: cover; /* Prevent distortion */
    border-radius: 0.5rem; /* Optional: rounded corners */
}
.header .cart-items-container .cart-items .fa-times{
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--black);

}
.header .cart-items-container .cart-items .fa-times:hover{
    color: var(--main-color);
}
.header .cart-items-container .cart-items img{
    height: 7rem;
}
.header .cart-items-container .cart-items .content h3{
    font-size: 2rem;
    color: var(--black);
    padding-bottom: .5rem;
}
.header .cart-items-container .cart-items .content .price{
    font-size: 1.5rem;
    color: var(--main-color);
}
.header .cart-items-container .btn{
    width: 100%;
    text-align: center;
}


.home{
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url(./images/Picsart_2.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 70px;
}
.home .content{
    max-width: 60rem;
    margin-top: -3rem;
}
.home .content h3{
    font-size: 5rem;
    text-transform: uppercase;
    color: #fff;
}

.home .content p{
    font-size: 2rem;
    font-weight:lighter;
    line-height: 1.8;
    padding: 1rem 0;
    color: #eee;
}


.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%;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
}
.about .row .content{
    flex: 1 1 45rem;
    padding: 2rem;
    
}
.about .row .content h3{
    font-size: 3rem;
    color: #fff;
    margin-left: 1rem;
}
.about .row .content p{
    font-size: 1.6rem;
    color: #ccc;
    padding: 1rem 0;
    line-height: 1.8;
    margin-left: 1rem;
}
.about .row .content .btn{
    margin-left: 1rem;
}

.menu .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
}
.menu .box-container .box{
    padding: 5rem;
    text-align: center;
    border: var(--border);
}
.menu .box-container .box img{
    height: 10rem;
}
.menu .box-container .box h3{
    color: #fff;
    font-size: 2rem;
    padding: 1rem 0;
}
.menu .box-container .box .price{
    color: #fff;
    font-size: 2.5rem;
    padding: .5rem 0;
}
.menu .box-container .box .price span{
    font-weight: lighter;
    font-size: 1.5rem;
    text-decoration: line-through;
}
.menu .box-container .box:hover{
    background-color: #ccc;
}
.menu .box-container .box:hover > *{
    color: var(--black);
}


.products .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
}
.products .box-container .box{
    text-align: center;
    border: var(--border);
    padding: 2rem;
}
.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;
}
.products .box-container .box .image img{
    height: 25rem;
}
.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{
    color: #fff;
}
.products .box-container .box .content .price{
    color: #fff;
    font-size: 2.5rem;
    
}
.products .box-container .box .content .price span{
    text-decoration: line-through;
    font-weight: lighter;
    font-size: 1.5rem;
}



.reviews .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
}
.reviews .box-container .box{
    border: var(--border);
    text-align: center;
    padding: 3rem 2rem;
}
.reviews .box-container .box p{
    font-size: 1.5rem;
    line-height: 1.8rem;
    color: #ccc;
    padding: 2rem 0;
}

.reviews .box-container .box .quote {
    width: 50px; /* or adjust as needed */
    height: auto;
    margin-bottom: 1rem;
    
}
.reviews .box-container .box .user{
    height: 7rem;
    width: 7rem;
    border-radius: 50%;
    object-fit: cover;
}
.reviews .box-container .box h3{
    padding: 1rem 0;
    font-size: 2rem;
    color: #fff;
}
.reviews .box-container .box .stars i{
    width: 1.5rem;
    color: var(--main-color);
}


:root {
    --main-color: #feab2e;
    --black: #0a0a0a;
    --white: #ffffff;
    --border: 1px solid rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    margin: 0;
    padding: 0;
}

.heading {
    text-align: center;
    font-size: 3rem;
    padding: 2rem 0;
    color: var(--white);
}

.heading span {
    color: var(--main-color);
}


.contact {
    padding: rem 2rem;
    background: var(--black);
}

.contact .row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact .row form {
    background: #111;
    padding: 2.5rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
    width: 100%;
    max-width: 500px;
}

.contact .row form h3 {
    text-transform: uppercase;
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.contact .row form .inputBox {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: var(--border);
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
}

.contact .row form .inputBox span {
    color: var(--main-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}

.contact .row form .inputBox input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--white);
    font-size: 1rem;
    width: 100%;
}

.contact .row form .btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--main-color);
    border: none;
    border-radius: 0.5rem;
    color: var(--black);
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact .row form .btn:hover {
    background: #ffb84d;
}


.footer{
    background: var(--black);
    text-align: center;
    
}
.footer .share{
    padding: 1rem 0;
}
.footer .share a{
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    color: #fff;
    border: var(--border);
    margin: .3rem;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(254, 171, 46, 0.2);
}
.footer .share 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-color: var(--main-color);
}
.footer .credit{
    font-size: 2rem;
    color: #fff;
    font-weight: lighter;
    padding: 1.5rem;
}
.footer .credit span{
    color: var(--main-color);
}






@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: #fff;
        width: 30rem;
        height: calc(100vh - 9.5rem);
    }
     .header .navbar.active{
        right: 0;
     }
    .header .navbar a{
        color: var(--black);
        display: block;
        margin: 1.5rem;
        padding: .5rem;
        font-size: 2rem;
    }
    .header .search-form{
        width: 90%;
        height: 3rem;
    }
    .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: 55%;
    }
    
}