@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}
body{
    background-color: #dadada;
}
a{
    text-decoration: none;
    color: inherit;
}
nav{
    display: flex;
    align-items: center;
    justify-content:space-between;
    background-color: black;
    padding: 10px 20px;
    color: white;
}
.nav-country{
    display: flex;
    align-items:end;
    /* margin-left: 15px; */
    font-size: 13px;
    color: #c4c4c4;
}
.nav-country h1{
    color: white;
    font-size: 14px;
}
.nav-search{
    flex: 1;
    display: flex;
    align-items: center;
    background-color: rgb(255, 255, 255);
color: rgb(160, 159, 159);
max-width: 1000px;
border-radius: 4px;
margin-left: 15px;
}
.nav-search-gategory{
display: flex;
align-items: center;
padding: 10px 10px;
gap: 5px;
background-color: rgb(222, 222, 222);
/* object-fit: contain;- */
border-radius: 4px 0 0 4px;
}
.nav-search-input{
    padding-left:20px;
    border: none;
    outline: none;
    width: 100%;
}
.nav_search_icon{
    max-width: 41px;
    padding: 8px;
    background: #ffd64f;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}
.nav_language{
    display: flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
    margin-left: 15px;
}
.nav_text{
    margin-left: 15px;
}
.nav_text p{
    font-size: 10px;
    cursor: pointer;
}
.nav_text h1{
    font-size: 14px;
}
.nav_cart{
    display: flex;
    align-items: center;
    margin: 0px 15px;
}
.nav_bottom div{
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #232f3e;
    color: #fff;
    font-size: 15px;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 500;
}
.header-slider ul{
display: flex;
overflow-y: hidden;
}
.header-img{
    max-width:100%;
    /* image shadow */
    mask-image: linear-gradient(to bottom,#000000 50%,transparent);
}
.header-slider a{
    position: absolute;
    top: 20%;
    z-index: 1;
    padding: 5vh 1vw ;
    background-color: #ffffff4f;
    color:#0000007b;
    text-decoration: none;
    font-weight: 600;
    font-size: 45px;
}
.control_next{
    right: 0;
}
.box-row{
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    justify-content: space-between;
    margin: 20px 30px;
}
.box-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    max-width: 24%;
    min-height: 200px;
    z-index: 1;
    background-color: #fff;
}
.box-col a{
    text-decoration: none;
    font-size: 13px;
    color: #009999;
    font-weight: 500;
}
.header-box{
    margin-top: -20vw;
}
.product_slider{
    background-color: #fff;
    margin: 0 30px;
    padding: 20px;
    margin-bottom: 15px;
}
.product_slider .products{
display: flex;
overflow-x: auto;
gap: 20px;
margin-top: 10px;

}
.product_slider .products img{
    max-width: 200px;
    max-height: 200px;
}
.product_slider .products::-webkit-scrollbar{
    display: none;
}
.products-slider-with-price{
   background-color:#fff;
   margin: 0 30px;
   padding: 20px;
   margin-bottom: 15px;
}
.products-slider-with-price .products{

    display: flex;
    overflow-x: auto;
    gap: 30px;
    margin-top: 10px;
}
.products-slider-with-price .products::-webkit-scrollbar{
    display: none;
}
.product-card{
display: flex;
flex-direction: column;
justify-content: end;
min-width: 210px;
background-color: #fbfbfb;
}
.product-card img{
    width: 110px;
    margin: 0 50px;
}
.product-offer p{
   background-color: #be0b3b;
   color: white;
   width: 33%;
   display: inline-block;
   padding: 5px;
   border-radius: 3px;
   margin: 8px 0px;
}
.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{
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 20px;
}
.footer-para{
background-color: #050505;
color: white;
text-align: center;
font-weight: bold;
letter-spacing: 2px;
}


/* Media Query */
@media only screen and (max-width: 900px){
nav{
    flex-wrap: wrap;
}
.nav-search{
order: 7;
margin: 15px 0 5px;
min-width: 300px;
}
.box-col{
    max-width: 48%;
}
}
@media only screen and (max-width:600px) {
    .nav-country{
        display: none;
    }
    .nav_language{
        display: none;
    }
    .nav_text{
        display: none;
    }
.nav_bottom{
    font-size: 13px;
    gap: 10px;
    overflow-x: scroll;

}
.nav_bottom::-webkit-scrollbar{
display: none;
}
.nav_bottom p{
    text-wrap: nowrap;
}
.mobile-user-icon{
    display: flex !important;
    flex: 1;
    justify-content: flex-end;
}
.mobile-user-icon img{
    width: 25px;
}
.nav_cart h4{
    display: none;
}
.nav_cart img{
 width: 25px;   
}
.header-slider a{
top: 24%;
padding: 2vh 1vw;
font-size: 15px;
}
.box-col{
    max-width: 100%;
    width: 100%;

}
footer{
    justify-content: center;
    flex-direction: column;
    font-size: 14px;
}
}