nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 0px 40px 0px 40px;
  background-color: #000000ea;
  position: fixed;
  z-index: 1000 ;
  box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.2);
}
#logo{
  width: 250px;
  filter: drop-shadow(-10px 10px 30px #0000005b);
  font-family: 'Rachana Bold';
}
nav div{
  display: flex;
  align-items: center;
  gap: 60px;
}
nav div a{
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  transition: 0.3s;
}
nav div a:hover{
  /* color: #e34a3c; */
  border: 0px;
  border-bottom: 4px solid #e34a3c;
  padding-bottom: 6px;
  border-radius: 3px;
}
#cart{
  padding-right: 10px;
  width: 45px;
  opacity: .8;
  cursor: pointer;
}
#cart:hover{
  opacity: 1;
}