header {
  background-color: #eed1a4;
    border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 4px 8px #00000033;
  direction: rtl;
}
.header {
display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.style-menu{
      display: flex;
        align-items: center;
        width: 20%;
        justify-content: space-between;
}
#cart-button{
margin-top: 5px;
}
.logo img {
  max-width: 120px;
  height: auto;
}
.search-bar {
    display: flex;
      width: 50%;
      flex-direction: row-reverse;
      margin-left: 8%;
}
.search-bar input {
  background-color: #f4efea;
  text-align: right;
  width: 100%;
  padding: 5px 7px;
  border: 1px solid #30431d;
  border-radius: 1rem;
}
.search-bar button {
  background-color: #f4efea;
  padding: 4px 6px 2px;
  margin: 0 5px;
  border: 1px solid #30431d;
  border-radius: 10rem;
}
#search-input {
  direction: rtl;
}
#search-results {
  padding: 0%;
  margin: 0%;
  text-align: right;
}
#search-results > li {
  list-style: none;
  margin: 20px 5px 2px 0;
}
#search-results > li > a {
  text-decoration: none;
  color: #30431d;
}
#popup {
  z-index: 10;
  position: fixed;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  padding: 20px;
  background-color: #f4efea;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: top 0.5s ease-in-out;
  border-radius: 0.5rem;
}

#popup.hidden {
  top: -100%;
}

#popup.visible {
  top: 20%;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}

.shopping-user a {
  text-decoration: none;
  color: #30431d !important;
}

.shopping-user {
  display: flex;
  padding: 5px;
}

.user-options a {
  margin-right: 15px;
  text-decoration: none;
  color: #30431d;
}

.menu {
  display: flex;
  list-style: none;
  padding: 0;

  margin: 0;
}
.menu li {
  margin: 10px 25px 10px 0;
  position: relative;
}
.menu li a {
  text-decoration: none;
  color: #30431d;
}
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
/* .hamburger-menu div {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 4px 0;
} */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #f4efea;
  padding-top: 60px;
  box-shadow: 1px 0px 5px #555555;
  z-index: 10;
}
.mobile-menu a {
  text-align: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #30431d;
}
.mobile-menu .menu-item {
  cursor: pointer;
}
.mobile-menu .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .menu {
    display: none;
  }
  .hamburger-menu {
    display: flex;
  }
    .hamburger-menu svg{
margin-top:5px;
    }
  .header {
    display: flex;
    flex-direction: column;
    width:100%;
  }
  .style-menu{
        display: flex;
          flex-direction: row-rivers;
          width: 100%;
          align-items: center;
          /* margin-bottom: 4px; */
  }
  #cart-button{
    margin-top: 10px;
  }
    .shopping-user {
      display: flex;
      padding: 5px;
      margin-left: 5%;
    }
        .search-bar {
          display: flex;
          width: 100%;
          flex-direction: row-reverse;
          margin-left: 0;
          justify-content: center;
        }
  .logo {
    margin-left: auto;
  }
  .mobile-menu {
    display: none;
  }
  .logo img {
    width: 100px;
    height: auto;
  }
}
/* //////////////////////////////////////////////////// */
.footer {
  background-color: #eed1a4;
  color: #30431d;
  margin-top: 15px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-evenly;
  direction: rtl;

  box-shadow: 3px 1px 20px #8d8d8d;
}
.footer-column {
  padding: 10px;

  text-align: right;
  box-sizing: border-box;
}
.footer-column > p {
  display: block;
  font-size: 1.17em;
  font-weight: bold;
  unicode-bidi: isolate;
  margin-bottom: 10px;
}
.footer-column ul {
  list-style-type: none;
  padding: 0;
}
.footer-column li {
  margin: 0 0 10px 0 !important;
}
.footer-column a {
  color: #30431d;
  text-decoration: none;
}
.footer-column a:hover {
  text-decoration: underline;
}
.credits {
  background-color: #eed1a4;
  color: #30431d;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  border: 1px solid #77550c;
}
.credits img {
  max-width: 100px;
  margin: 10px auto;
}
@media (max-width: 768px) {
  .footer {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-column {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
