* {
  border: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  background-color: #eecfb6;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  justify-content: center;
  align-items: center;
}

header h1 {
  margin-left: auto;
  margin-right: auto;
  color: #894B1A;
}

.active-page {
  background-color: #7de757;
}

.active-page a {
color: #211f1c !important;
  font-weight: 600;
}

#headerlinks {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 50px;
  margin-left: auto;
}

#headerlinks a {
  background-color: #e29d07e3;
  color: #F0F5E8;
  padding: 5px 10px;
  text-decoration: none;
}

#headerlinks a:hover {
  text-decoration: underline;
  color: #51f04b;
}

#signup {
  margin-right: 20px;
}

#nav-banner {
  display: flex;
  width: auto;
}

#nav-banner-product {
  display:inline;
  width:100%;
}
nav {
  flex: 20%;
  margin-right: 20px;
}

nav ul li {
  list-style: none;
  background-color: #e29d07e3;
  display: block;
}

nav ul li:not(:last-child) {
  margin-bottom: 10px;
}

nav a,
header a {
  text-decoration: none;
  color: #F0F5E8;
  width: 100%;
  display: block;
}

nav ul li a {
  padding: 10px 10px;
}

nav ul li a:hover {
  color: #1e1206  !important;
  background-color: #ae9420;
}

.banner {
	width: 100%;
	height: 200px;
}

#banner {
  flex: 85%;
  background-color: #48da1b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1e1206 ;
  font-size: 40px;
  text-align: center;
}

#banner h2:first-child {
  color: #dd6b0d;
}

#banner h2:last-child {
  color: #894B1A;
}

main {
  height: auto;
  min-height: 500px;
  padding: 20px 20px;
  text-align: center;
}


.main-continer {display: flex; flex-direction: column;}


.product-list {
  display: flex;
  width: 80%;
  flex-wrap: wrap;
}

.product-list ul {
  display: flex;
  width: 80%;
  justify-content: space-between;
  margin: 0 auto;
  flex-wrap: wrap;
}

.product-list ul li {
  width: 47%;
  border: 4px solid #978221;
  list-style-type: none;
  padding: 10px 10px;
 }

.product-list ul li:hover {
  border: solid 4px #122018;
  opacity: 0.8;
}

.product-list ul li a {
  cursor: pointer;
  width: 80%;
  position: relative;
  text-decoration: none;
  color: #543F3F;
}

.footer {
  display: flex;
  height: 100px;
  /*flex-wrap: wrap;*/
  flex-direction: row;
  background-color: #2B3026;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: flex-start;
 /* align-items: center;*/
}

#footerlinks a:not(:last-child) {
margin-right: 50px;
}

#graytan {
  background-color: beige;
}

#footerlinks {
  margin-left: auto;
  padding-right: 50px;
}

#footerlinks a {
  color: #F0F5E8;
  text-decoration: none;
}

#footerlinks a:hover {
  text-decoration: underline;
  color: #F0D34B;
}

section ul li a img {
width: 200px;
}

#return-page {
  width:80%;
  overflow: auto;
  margin:auto;
}

pre {
  white-space: pre-wrap;
  word-break: keep-all;
  text-align: left;
}

#mobile-menu {
  display: none;
}

@media only screen and (max-width: 600px) {
  header h1,
  #wishlist {
  display: none;
  }

  #headerlinks {
    padding-right: 0;
  }

  #logo {
  margin-right: auto;
  }

  #nav-banner {
    flex-direction: column;
  }

  nav {
    margin-right: 0;
    margin-bottom: 20px;
  }

  #banner {
    font-size: 30px;
    padding: 20px 0;
  }

  #footerlinks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #footerlinks a {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }

  section ul li a img {
  width: 100px;
  }
}
.search-form {
  display: flex;
  align-items: center;
  margin-left:auto ;
}

.search-form input {
  padding: 10px;
  border: 2px solid #22d812;
  border-radius: 8px;
}

.search-form button {
  margin-left: 10px;
  padding: 10px 10px;
  cursor: pointer;
}

/* --- Add or update these styles --- */

#nav-banner {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 100vh;
}

nav {
  width: 20%;
  background-color: #eecfb6;
  padding: 20px;
  min-height: 100%;
}

#main-content {
  width: 80%;
  padding: 20px;
}

#banner {
  width: 100%;
  background-color: #18b504;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 20px;
}

.product-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
  list-style: none;
}

.product-list ul li {
  width: 48%;
  margin-bottom: 20px;
  border: 4px solid #978221;
  padding: 10px;
}
 body {
      background-color: #f5f1eb;
    }