@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;

}
body{
    background: #dadada;
}


a{
    text-decoration: none;
    color: inherit;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #131921;
    padding: 10px 20px;
    color: #fff;
}

.nav-countary{
    display: flex;
    align-items: end;
    margin-left: 15px;
    font-size: 13px;
    color: #c4c4c4;
}
.nav-countary h1{
    font-size: 14px;
    color: #fff;

}

.nav-search{
flex: 1;
display: flex;
align-items: center;
margin-left: 20px;
background: #fff;
color: grey;
max-width: 1150px;
border-radius: 4px;
}

.nav-searc-category{
    display: flex;
    align-items: center;
    padding: 10px 15px;
    gap: 5px;
    background: #e5e5e5;
    border-radius: 5px 0 0 5px;
    border-right: 1px solid #cfcfcf;
}

.nav-search-input{
    border: none;
    outline: none;
    padding-left: 10px;
    width: 100%;
}
.nav-search-icon{
    max-width: 40px;
    background: #fbbb4c;
    border-radius: 0 5px 5px 0px;
    padding: 8px;
    cursor: pointer;
}

.nav-language{
    display: flex;
    align-items: center;
    gap: 2px;
    font-weight: 500;
    margin-left: 15px;
}
.nav-text{
    margin-left: 15px;
}
.nav-text p{
    font-size: 10px;
}
.nav-text h1{
    font-size: 14px;
}

.nav-cart{
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 15px;
}

.nav-bottom{
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    background: #1d1d1d;
    color: #fff;
    font-size: 15px;

}

.nav-bottom div{
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.nav-bottom div img{
width: 25px;
}


.header-slider{
    max-width: 1510px;
margin: auto;
position: relative;
}

.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%;
z-index: 1;
padding: 2vh 1vw;
background: #ffffff4f;
color: #0000007b;
text-decoration: none;
font-weight: 600;
font-size: 18px;
cursor: pointer;
}

.control_next{
    right: 0;
    
}

.box-row{
display: flex;
flex-wrap: wrap;
row-gap: 20px;
justify-content: space-between;
max-width: 1470px;
margin: auto;
margin-top: 20px;

}


.box-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    background: #fff;
    max-width: 24%;
    min-height: 200px;
    z-index: 1;
}

.box-col a{
 font-size: 13px;
 color: #569dd6;
}

.header-box{
    margin-top: -14vw;
}





.products-slider{
    background: #fff;
  max-width: 1470px;
  margin: auto;
  padding: 20px;
  margin-bottom: 20px;
   margin-top: 20px;
}


.products-slider .products{
  display: flex;
  overflow-x: auto;
  gap: 20px;
  margin-top: 10px;
}
.products-slider .products img{
max-width: 200px;
max-height: 200px;
  }



  .products-slider-with-price{
    background: #fff;
    margin: auto;
    max-width: 1470px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;

  }



  .products-slider-with-price .products{
    display: flex;
    overflow-x: auto;
    gap: 20px;
    margin-top: 10px;
 
  }


.product-card{
    display: flex;
    flex-direction: column;
    justify-content: end;
    min-width: 200px;
    background: #fbfbfb;
    margin-bottom: 10px;
    padding: 10px;
}


.product-card img{
    width: 120px;
    margin: 0 40px;
}

.product-offer p{
    background: #be0b3b;
    color: #fff;
    display: inline-block;
    padding: 2px 5px;
    font-size: 13px;
    border-radius: 2px;
    margin: 8px 0;

}

.product-offer span{
color: #be0b3b;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
}

.product-card p{
    font-size: 13px;

}

.product-card p span{
    font-size: 15px;

}


.product-card h4{
    color: #525252;
}


footer{
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: space-between;
    padding: 20px 60px;
    background: #131921;

}

