/* CSS for Navbar */
#logo{
    transition-duration: 0.5s;
}

#logo:hover{
    transform: scale(1.09);
}

.fa-solid{
    margin-right: 8px;
}

#nav_a{
	color: #ffffff;
  position: relative;
  text-decoration: none;
  margin-left: 15px;
  margin-right: 15px;
  font-weight: bold;
  padding-left: 0px;
  padding-right: 0px;
}

#nav_a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

#nav_a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

#login{
	color: #ffffff;
  position: relative;
  text-decoration: none;
  margin-left: 15px;
  margin-right: 15px;
  font-weight: bold;
  padding-left: 0px;
  padding-right: 0px;
}

#login::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #ffffff;
  bottom: 0;
  left: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

#login:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* CSS for show product */
#show_places{
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 5px;
}
#div_img{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

#img1{
  height: 250px;
  width: 200px;
  border-radius: 5px;
  transition-duration: 0.5s;
}

#img1:hover{
  transform: scale(1.04);
}

#div_btn{
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}

#btnn{
  font-size: 25px;
  cursor: pointer;
}

#box{
  border-style: groove;
  padding: 15px;
  border-radius: 0px 10px 0px 10px;
}

#filter{
  display: flex;
  margin: 10px;
}

.filter{
  margin-left: 20px;
  text-decoration: underline;
  font-weight: bold;
  color: blue;
  cursor: pointer;
}

#div_like{
  display: flex;
  justify-content: center;
  align-items: center;
}