*{
  padding: 0;
  margin: 0;
}
body{
  background: linear-gradient(pink, rgb(241, 227, 174));
}
/* Navbar Section */
#navbar{
  height: 60px;
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-around;
  /* border-bottom: 1px solid black; */
  position: sticky;
  top: 0;
  background-color: rgba(220, 216, 216, 0.712);
  z-index: 11;

}
.logo-box{
  height: 40px;
  margin-left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  font-size: 20px;
}

#navbar ul {  
  list-style: none;
  display: flex;
}
#navbar ul li {
  display: inline-block;
  padding: 0px 10px;
  line-height: 60px;
  position: relative;
}
#navbar ul li a{
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  color: black;
  font-size: 15px;
  /* border-radius: 10px; */
  padding: 5px 15px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
 
}
#navbar ul li a:hover{
  /* background-color: #036d59; */
  padding: 0px 5px 10px;
 transition: all .5s;
 color: blueviolet;
 border-bottom: 1px solid blueviolet;
 box-shadow: 0px 2px 0px 0px rgba(190, 183, 183, 0.413)
}

#checkbtn{
  float: left;
  font-size: 20px;
  color: white;
  line-height: 100px;
   display: none;
  
}
#check{
  display: none;
}
#check:checked ~ ul{
  left: 0;
}

.search-box{
  height:35px;
  width: 25%;
}
#search-product{
  height: 100%;
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 7px;
  outline: none;
}
.add-to-box{
  height: 40px;
  width: 120px;
  /* border: 1px solid black; */
  display: flex;
  justify-content: space-around;
  align-items: center;

}
.wishlist{
  height: 30px;
  width: 30px;
  /* border: 1px solid black; */
  position: relative;
}
.wishlist i{
 font-size: 30px;
 color: black;

}
.wishlist-count{
  height: 15px;
  width: 15px;
  position: absolute;
  left: 21px;
  top: -4px;
  border-radius: 50%;
  color: rgb(251, 250, 250);
  text-align: center;
  background-color: rgb(255, 149, 0);
  font-weight: 600;
  font-size: 15px;
  padding: 1px 2px;
}
.bag{
  height: 30px;
  width: 30px;
  /* border: 1px solid black; */
  position: relative;
}
.bag i{
  font-size: 30px;
  color: black;
  margin-left: 2px;
}
.bag-count{
  height: 15px;
  width: 15px;
  position: absolute;
  left: 15px;
  top: -4px;
  border-radius: 50%;
  color: rgb(251, 250, 250);
  text-align: center;
  background-color: rgb(255, 149, 0);
  font-weight: 600;
  font-size: 15px;
  padding: 1px 2px;
}
@media(max-width:1150px){
  #checkbtn{
       display: block;
    }
    #navbar ul{
       width: 100%;
       height: 100vh;
       background-color: rgb(16, 52, 53);
       position: absolute;
       top: 60px;
       left: -100%;
       transition: .5s;
       z-index: 5;
       display: flex;
       flex-direction: column;
       align-items: center; 
       transition: all .5s ease-in-out;
    }
    #navbar ul:hover{
      transition: all .5s ease-in-out;
    }
    #navbar ul{
      display: flex;
      align-items: start;
    }
    #navbar ul li a:hover{
      padding:5px 50px;
      transition: all .5s;
    }
 }



 .main-container{
  width: 100%;
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  /* border: 1px solid yellow; */
  gap: 10px;

 }
 .bags-container{
  width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
 }
 .bag-container{
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 10px;
  position: relative;
  gap: 40px;
  box-shadow: 1px 1px 4px 2px rgba(203, 201, 201, 0.881);
 }
 
 .image-container{
   width: 220px;
   height: 250px;
   padding: 5px;
 }
 .image-container img{
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
  /* border: 1px solid black; */
 }
 .info-contaner{
  margin-top: 10px;
 }
 .coupons{
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  padding: 5px;
  font-size: 15px;
  color: rgb(63, 62, 62);
 }
 .apply-coupons-box{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgb(218, 214, 214);
  padding: 10px;
 }
 .apply-coupons-box i{
  padding: 5px;
 }
 .apply-coupons{
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  padding: 10px 0px;
 }
 .apply{
  padding: 5px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  border: 1px solid rgb(255, 0, 140);
  margin-right: 5px;
  border-radius: 2px;
  color: rgb(255, 0, 140);
  cursor: pointer;
 }

 .company-name{
  color: rgb(135, 135, 135);
  display: block;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.item-name{
  color: rgb(33, 33, 33);
  margin-top: 2px;
  display: inline-block;
  font-size: 15px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  font-weight: 400;
}
.item-size{
width: 200px;
margin-top: 30px;
font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
}
#size-list{
  width: 50px;
  padding: 2px;
  background-color: rgb(251, 253, 254);
  border: 1px solid rgba(194, 192, 192, 0.58);
  border-radius: 5px;
  box-shadow: 1px 1px 4px 1px rgba(250, 247, 247, 0.401),
  inset -1px -1px 4px 3px rgba(244, 241, 241, 0.465);
}
.item-color{
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  margin-top: 10px;
  font-size: 15px;
}

.prise{
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.current-prise{
  color: rgb(33, 33, 33);
  display: inline-block;
  font-family: nter, -apple-system, Helvetica, Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-size-adjust: 100%;
  margin-top: 3px;
}

.original-prise{
  box-sizing: border-box;
  color: rgb(135, 135, 135);
  display: inline-block;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400px;
  text-decoration-color: rgb(135, 135, 135);
  text-decoration-line: line-through;
}
.discount{
  font-size: 15px;
  font-weight: 400px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  display: inline-block;
  color: blueviolet;
}
.cancle-button{
  padding: 5px 5px;
  border-radius: 50%;
  background-color: rgba(226, 223, 223, 0.5);
  border: 1px solid rgb(207, 205, 205);
  cursor: pointer;
  position: absolute;
  left: 95%;
  top: 7px;
}
.cancle-button:hover{
  background-color: rgb(255, 149, 0);
  color: rgb(243, 237, 237);
  transition: all .5s;
}
.item-Qty{
  width: 200px;
margin-top: 30px;
font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
}
#Qty-list{
  width: 50px;
  padding: 2px;
  background-color: rgb(251, 253, 254);
  border: 1px solid rgba(194, 192, 192, 0.58);
  border-radius: 5px;
  box-shadow: 1px 1px 4px 1px rgba(250, 247, 247, 0.401),
  inset -1px -1px 4px 3px rgba(244, 241, 241, 0.465);  
}

 .bags-info-container{
  width: 30%;

  height: 500px;
  margin-top: 10px;
 }

 .prise-detail{
  width: 100%;
  /* border: 1px solid black; */
  margin-top: 10px;
  display: flex;
 }
.prise-details{
  padding: 5px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  color: rgb(108, 108, 108);
}
.items{
  padding: 5px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  color: rgb(108, 108, 108);
}
.prise-container{
  width: 100%;
  /* border: 1px solid black; */
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.total-mrp-box{
  display: flex;
  justify-content: space-between;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  padding: 5px;
  font-weight: 200;

}
.box-discount{
  display: flex;
  justify-content: space-between;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  padding: 5px;
  font-weight: 200;
}
.discount-prise{
  color: rgb(0, 157, 255);
}
.convenience-fee-box{
  display: flex;
  justify-content: space-between;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  padding: 5px;
  font-weight: 200;
}
.total-amount-box{
  display: flex;
  justify-content: space-between;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  padding: 5px;
  font-weight: 600;
}
.coupon-box{
  display: flex;
  justify-content: space-between;
  padding: 10px;
  font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
  font-weight: 200;
  border-bottom: 1px solid rgb(218, 214, 214);
}
.apply-coupon{
  color: rgb(255, 0, 140);
  cursor: pointer;
}
.order-now{
  width: 100%;
  padding: 10px;
  margin-top:30px;
  cursor: pointer;
  background-color: rgb(255, 149, 0);
  color: white;
  font-size: 15px;
  border-radius: 5px;
  border: none;
  display: inline-block;
}
.order-now:hover{
  background-color: transparent;
  color: black;
  border: 1px solid gray;
  transition: all .5s;
}


#container16 {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 150px;
  background-color: rgba(108, 224, 247, 0.639);
}

/* #container16 .main-box1 & container16 .main-box2 & container16 .main-box3 */
#container16 .main-box1,
#container16 .main-box2,
#container16 .main-box3 {
  width: 30%;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#container16 .box2a {
  height: 40px;
  width: 90px;
  /* border: 1px solid white; */
  border-radius: 10px;
}

#container16 .box2a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

#container16 .main-box2 p {
  color: rgb(122, 11, 11);
  margin-top: 10px;
  font-size: 1vw;
}

#container16 .main-box2 h1 {
  color: rgb(122, 11, 11);
  margin-top: 30px;
  font-size: 2vw;
}

#container16 .box2b {
  height: 40px;
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  border-radius: 10px;
}

#container16 .box2b input {
  width: 250px;
  height: 65%;
  outline: none;
  text-align: center;
  box-shadow: 1px 2px 3px rgba(119, 117, 117, 0.286),
      0px 0px 2px 3px rgba(170, 166, 166, 0.22),
      inset 1px 2px 3px rgba(60, 59, 59, 0.278),
      inset 0px 0px 2px 3px rgba(99, 97, 97, 0.527);
  border-radius: 10px 0px 0px 10px;
  border: none;
}

#container16 .btn4 {
  height: 80%;
  width: 100px;
  border: none;
  background-color: rgb(245, 204, 151);
  border-radius: 0px 10px 10px 0px;
  box-shadow: 1px 2px 3px rgba(48, 47, 47, 0.528),
      0px 0px 2px 3px rgba(170, 166, 166, 0.487),
      inset 1px 2px 3px rgba(41, 40, 40, 0.278),
      inset 0px 0px 2px 3px rgba(31, 30, 30, 0.184);
}

#container16 .btn4:hover {
  background-color: transparent;
  color: rgb(122, 11, 11);
  transition: all .5s;
}

#container16 .main-box3 h1 {
  color: rgb(122, 11, 11);
  font-size: 2vw;
}

#container16 .main-box3 p {
  color: rgb(122, 11, 11);
  text-align: start;
  font-size: .8vw;
  width: 65%;
  margin-top: 10px;
}

#container16 .box3a {
  width: 90%;
  height: 60px;
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}

#container16 .circle1 {
  height: 6vh;
  width: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(111, 110, 110);
  border-radius: 50%;
  background-color: rgb(247, 199, 136);
  box-shadow: 1px 2px 3px rgba(48, 47, 47, 0.528),
      0px 0px 2px 3px rgba(170, 166, 166, 0.487),
      inset 1px 2px 3px rgba(41, 40, 40, 0.278),
      inset 0px 0px 2px 3px rgba(31, 30, 30, 0.184);
}

#container16 .circle1 i {
  font-size: 2vw;
  color: black;
}

#container16 .main-box1 h1 {
  color: rgb(122, 11, 11);
  font-size: 1.5vw;
  text-decoration: underline;
}

#container16 .main-box1 a {
  color: rgb(122, 11, 11);
  font-size: 1vw;
  text-decoration: none;
  margin-top: 20px;
}

