@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

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

body{
  background: #dadada;
}

a{
  text-decoration: none;
  color: inherit;/*Inherit the text color from the parent */
}

nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #131921;
  padding:10px 20px;
  color: #ffff;
  position: sticky;
  top: 0;
  z-index: 99999;
}

#logo{
  width: 100%;
  cursor: pointer;
  margin-left: 5%;
}

.address{
  display: flex;
  align-items: center;
  color:#c4c4c4;
  font-size: 13px;
  margin-left: 3%;
}

#location-icon{
  height: 2rem;
}

.address h3{
  color: white;
  font-size: 14px;
}

.search-bar{
  flex: 1;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-left: 3%;
  background: #fff;
  color: gray;
  max-width: 1000px;
  border-radius: 10px;
  height: 45px;
  position: relative;
}
.search-category{
  height: 45px;
  padding: 20px;
  background: #e5e5e5;
  border-radius: 10px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-category #prod{
  background-color: #000000;
  color: #fff;

}

.search-bar input{
  border: none;
  outline: none;
  padding-left: 20px;
}
#search-icon{
  max-width: 42px;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0%;
  top: 0%;
  cursor: pointer;
  padding: 5px;
  background-color: #ffd64f;
  border-radius: 0 5px 5px 0;
}

.language{
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-left: 3%;
}

#dropdown_icon{
  height:1em;
  padding-top: 9%;
}

.nav-text{
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 4%;
  width: 150rem;
  text-align: left;
}

.accounts-lists{
  display: flex;
  flex-direction: row;
}

#drop-down{
  height: 1rem;
  padding-top: 5px;
}

.returns-orders{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2%;
  width: 60rem;
}

.shopping-cart{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  margin-left: 3%;
  margin-right: 5%;
}

.sub-nav{
  background-color: #232f3e;
  color: white;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1%;
}

#menu-icon{
  height: 40px;
}

.slider{
  position: relative;
}
.slider ul{
  display: flex;
  flex-direction: row;
  overflow-y: hidden;
}

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

.slider a{
  position: absolute;
  top: 20%;
  background: #ffffff4f;
  color: #0000007b;
  text-decoration: none;
  font-weight: 600;
  font-size: 50px;
  cursor: pointer;
  z-index: 1;
}

.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;
  background: #fff;
  max-width: 24%;
  min-height: 200px;
  z-index: 1;
}

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

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

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

.product-slider .products{
  display: flex;
  overflow-x: auto; /*gives horizontal scroll bar without wraping the container (can be overflow-x:scroll)*/ 
  white-space: nowrap;
  gap: 20px;
  margin-top: 10px;
}

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

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

.product-slider-with-price{
  background-color: #fff;
  margin: 0 30px;
  padding: 20px;
  margin-bottom: 15px;
}
.product-slider-with-price .products{
  display: flex;
  overflow-x: auto;
  gap: 50px;
  margin-top: 10px;
}

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

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

.product-card img{
  width: 200px;
  margin: 0 20px;
}

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

footer{
  background: #131921;
  color: white;
  text-align: center;
  position: sticky;
  bottom: 0;
  z-index: 99999;
}