@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    
}

body{
    background: #dadada;
}

a{
    text-decoration: none;
    color: inherit;
}


/* navigation */
nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #131921;
    color: #fff;

}

.nav-country{
    display: flex;
    align-items: end;
    margin-left: 15px;
    font-size: 13px;
    color: #c4c4c4;
}

.nav-country h1{
    color: #fff;
    font-size: 14px;
}

.nav-search{
    flex: 1;
    display: flex;
    align-items: center;
    color: gray;
    background-color: #fff;
    max-width: 1000px;
    margin-left: 15px;
    border-radius: 4px;
}

.nav-search-category{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;background: #e5e5e5;
    border-radius: 4px 0 0 4px;
}

.nav-search-input{
    border: none;
    outline: none;
    padding-left: 20px;
    width: 100%;
    font-size: 15px;
}

.nav-search-icon{
    max-width: 41px;
    padding: 8px;
    background: #ffd64f;
    border: 0 4px 4px 0;
}

.nav-language{
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 15px;
    font-weight: 600;
}

.nav-text{
    margin-left: 15px;
}
.nav-text p{
    font-size: 10px;
}
.nav-text h1{
    font-size: 14px;
}

.nav-cart{
    margin:0 15px;
    display: flex;
    align-items: center;
    cursor: pointer;
}



/* bootom of nav bar */
.nav-bottom{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 12px;
    background: #232f2e;
    color: #fff;

}


.nav-bottom>div{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.header-slider ul{
    display: flex;
    overflow-y: hidden;
}

.header-img{
    max-width: 100%;
    mask-image: linear-gradient(to bottom, #000000 50%, transparent 100%);
}

.header-slider a{
    position: absolute;
    top: 20%;
    padding: 5vh 1vw;
    z-index: 1;
    background: #ffffff4f;
    color: #0000007b;
    text-decoration: none;
    cursor: pointer;
}

.control_next{
    right: 0;
}

/* Box-1 row  */
.box-row{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 30px;
}
.box-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    max-width: 23%;
    min-width: 200px;
    z-index: 1;
}

.box-col a{
    font-size: 13px;
    color: #009999;
    font-weight: 500;
}

.header-box{
    margin-top: -20vw;
}

/* products */

.product-slider{
    background: #fff;
    margin: 0 30px 15px 0px;
    padding: 20px;
}

.products{
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin: 10px;
}

.products img{
    max-width: 200px;
}

.product-slider ::-webkit-scrollbar{
    display: none;
}

.product-slider-with-price{
    padding: 20px;
    background: #fff;
    margin: 0px 30px 15px 30px;
}

.product-slider-with-price .products{
    display: flex;
    overflow-x: auto;
}

.product-slider-with-price .products::-webkit-scrollbar{
    display: none;
}
.product-card{
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-width: 210px;
    background: #fbfbfb;
}

.product-card img{
    width: 110px;
    margin: 0 50px;
}

.product-offer p{
    background: #be0b3b;
    color: #fff;
    padding: 2px 8px;
    display: inline-block;
    border-radius: 2px;
    margin: 8px 0;
}

.product-offer span{
    color: #be0b3b;
    font-weight: 500;
    font-size: 12px;
}

.product-price{
    color: gray;
    font-size: 13px;
}

.product-card h4{
    color: #525252;
    font-size: 15px;
    font-weight: 400;
}

footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    color: #fff;
    background-color: #131921;

}