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

:root{
  --primary-color: #0A6847;
}
*{
    padding: 0%;
    color: white;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
    
}
body{
    background-color: #0A6847;
    align-items: center;
}

nav{
    display: flex;
    justify-content: space-around;
}

.cartbar {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;


  margin-top: 120vh;
  opacity: 0%;

  /* margin-top: 90vh; */

  margin-top: 120vh;
  opacity: 0%;

  padding: 0 3rem;
  transition: .5s;
  z-index: 9999;
}

.cartbar.sticky-top {
  position: sticky;
  padding: 0;
  z-index: 9999;
}
.cartList{
  width: 100em;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.orderList h3,p,h4{
  color: var(--primary-color);
}
.bar{
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 25px;
  width: 80vw;
  padding: 1vh;
  background-color: #ffff;
  border-radius: 20px;
}
.bar p,span{
  color: var(--primary-color);
  text-decoration: none;
  margin-bottom: 0;
}

.ViewItem{
  padding: 1vh;
  border-radius: 25px;
  background-color: var(--primary-color);
  color: #ffff !important;
  cursor: pointer;

}
.logo-nav{
  width: 30vh;
  padding-top: 3vh;
  padding-bottom: 3vh;
}

.sortingBar{
  display: flex;
  /* justify-content: space-around; */
  align-items: center;
  margin-left: 3vh; 
  margin-right: 1vh; 
  margin-top: 2.5vh; 
  margin-bottom: .1vh;
  height: 4vh;
  overflow-x: scroll;
  overflow-y: hidden !important;
  /* overflow:visible; */
   
}
.category{
  margin: 1vh;
  height: 4vh;
  width: 15vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5vh;
  background-color: white;
  border-radius: 10px;
}
.category span{
  padding-top: .1vh;
  padding-left: .1vh;
  color: var(--primary-color);

}

#floating-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px; /* Adjust height as needed */
  background-color: #333;
  color: #fff;
  display: flex; /* Center content horizontally */
  justify-content: center;
  align-items: center;
  padding: 10px;
    
}

#floating-bar button {
  background-color: #fff;
  color: #333;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}
.offersection{
  display: flex;
  align-items: center;
  justify-content: center;
}   
.slidingbox{
    border-radius: 10px;
    /* border: red solid 1px; */
    width: 80vw;
    overflow: hidden;
}


  /*? side  */
  .slider-container {
    position: relative;
    width: 100%;
    height: 25vh;
    margin: auto;
    overflow: hidden;
    touch-action: pan-y;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.dot-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    background-color: #bbb;
    margin: 0 2vw;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}
.slide img {
    /* width: 200px; */
    height: 100 rem;
    object-fit:fill;
  }
  .menuSection img{
    width: 55%;
  }
  .menuList{
    display: flex;
    align-items: center;
  }
  
  .productBox{
    background: rgb(2,0,36);
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(255,255,255,1) 0%, rgba(186,45,37,1) 100%); 
    border: 1px solid white;
     margin: 2%;
    width: 40%;
    display: flex;
    align-items: center;    
  }
  .card-body{
    display: flex;
    flex-direction: column;
    text-align: start;
  }
  .card-body .priceAddbtn{
    display: flex;
    flex-direction: column;
    font-weight: 800;
    align-items: start;
    /* border: white solid 1px; */
  }

  .priceAddbtn .CartBtn{
    color: white;
    background-color: rgba(255, 255, 255, .4);
    word-wrap:break-word ;
    /* border: white solid 1px; */
  }
