body {
  overflow-x: hidden;
  font-family: "Montserrat", sans-serif;
}
.text-color{
  color:rgb(60, 149, 184);
  
}
.single-product{
  background-color:whitesmoke;
  border: 2px;
  margin: 10px;
  width: 310px;
  height: 540px;
  border-radius: 4px;
}
/* _____ icon style ____  */
.fas{
  color: steelblue;
}
.far{
  color: steelblue;
}
.exciting-place-color{
  color: rgb(91, 91, 238);
}
/* ____search field part ___ */
.search-box{
  position: absolute;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%,-50%);
  background-color:rgb(214, 208, 208);;
  height: 40px;
  border-radius: 40px;
  
}
.input-box{
  border: none;
  outline: none;
  background: none;
  float: left;
  padding: 15px;
  color:black;
  font-size: 16px;
  transition: 0.4s ;
  line-height: 40px;
  width: 0px ;
}

.button{
  background-color: rgb(46, 139, 175);
  color:black;
  float: right;
  text-decoration: none;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;

}
.search-box:hover .input-box{
  width: 240px;
  padding:0 6px ;

}
.search-box:hover .button{
  background:skyblue;
}
.search-field{
  margin: 40px 40px;
  padding: 20px;
}
 
/* _____ for all pruduct ___  */
#all-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* border: 1px solid black; */
  text-align: center;
  width: 100%;
  margin: auto;
  align-items: center;
  justify-content: center;
}
/* ____ for a single product  ____ */
.single-product:hover {
  padding: 10px;
  transition: 0.6s;
}
.single-product {
  box-shadow: 4px 4px 7px gray;
  border-radius: 10px;
  border: 1px solid cyan;
}
.product-image {
  width: 150px;
  height: 170px;
}
.cart {
  width: 350px;
  /* border: 1px solid green; */
  padding: 10px;
  background-color: rgb(186, 214, 225);
  box-shadow: 10px 10px 20px gray;
  border-radius: 5px;
  margin-right: 30px;
  position: fixed;
}
.cart-main {
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  #all-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .cart {
    width: 300px;
    /* border: 1px solid green; */
    padding: 10px;
    box-shadow: 10px 10px 20px gray;
    border-radius: 5px;
    margin-right: 30px;
    margin-bottom: 40px;
    /* padding-bottom: 40px; */
    position: fixed;
  }
  .cart-main {
    padding-right: 10px;
  }
} 
/* _____ media quary _____  */
@media only screen and (max-width: 468px) {
  #all-products {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
/* ____ footer style ____  */
.footer-style{
  background-color: black;
  color: white;
  margin-top: 40px;
  padding: 10px;
  
}
/* ______add  some color ____  */
.price{
  color: rgb(111, 111, 211);
}
.title-color{
  color: rgb(46, 139, 175);
}
.button-color{
  background-color: rgb(162, 141, 182);
}
.image{
  
  background-color:white;
  padding: 25px;
  border-radius: 5px;

}
.button-icon{
  color: black;
}
