#background {
  position: fixed;
  float: left;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
}
header {
  position: fixed;
  float: left;
  width: 100%;
  z-index: 10;
}
header #btns {
  position: fixed;
  float: left;
  width: 100%;
  height: var(--h-header);
  background: #528403;
  z-index: 2;
}
header #btns .btn {
  position: relative;
  float: left;
  width: 20%;
  text-align: center;
  line-height: var(--h-header);
  font-weight: 700;
  z-index: 2;
}
header #btns .btn a {
  color: #fff;
}
header #btns .btn img {
  display: none;
}
header #btns .little-btn {
  position: relative;
  float: left;
  width: 10%;
  z-index: 2;
}
header #btns .little-btn img {
  position: relative;
  float: left;
  left: 50%;
  transform: translate(-50%);
}
header #btns .little-btn #n-products {
  position: absolute;
  float: left;
  left: 60%;
  width: 20px;
  height: 20px;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  top: 15px;
  background: #fff;
  border: 2px solid #528403;
  color: #528403;
  border-radius: 50%;
  z-index: 1;
}
header #btns #logo img {
  height: 80px;
}
header #btns #cart img {
  top: 20px;
  height: 40px;
}
header #category {
  position: fixed;
  float: left;
  width: 100%;
  background: var(--b-first-color);
  top: -100%;
  transition: var(--transition);
  z-index: 9;
  background: #fff;
  z-index: 1;
}
header #category.selected {
  top: var(--h-header);
}
header #category .section {
  position: relative;
  float: left;
  width: 15%;
  margin: 2.5%;
}
header #category .section .title {
  position: relative;
  float: left;
  font-size: 18px;
  font-weight: 600;
}
header #category .section .text {
  position: relative;
  float: left;
  width: 100%;
  font-size: 15px;
  font-weight: 100;
  transition: var(--transition);
}
header #category .section .text .subcategory {
  position: relative;
  float: left;
  width: 100%;
}
header #category .section .text .subcategory:hover {
  font-weight: 500;
}
header #added-to-cart {
  position: fixed;
  float: left;
  top: -100%;
  width: 100%;
  text-align: center;
  padding: 3% 0;
  background: rgba(133, 165, 4, 0.9);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  transition: var(--transition);
}
header #added-to-cart.down {
  top: 80px;
}
header #menu {
  position: relative;
  float: left;
  width: 40px;
  margin-top: 30px;
  margin-left: 15px;
  display: none;
}
header #menu .bar {
  position: relative;
  float: left;
  width: 100%;
  height: 4px;
  border-radius: 6px;
  background: #fff;
  transition: var(--transition);
}
header #menu .bar-2 {
  margin: 5px 0;
}
header #menu.click .bar-1 {
  margin-top: 8px;
  transform: rotate(45deg);
}
header #menu.click .bar-3 {
  margin-top: -4px;
  transform: rotate(-45deg);
}
header #menu.click .bar-2 {
  display: none;
}
@media (max-width: 800px) {
  header #added-to-cart {
    padding: 5% 0;
    font-size: 15px;
  }
  header #menu {
    display: block;
  }
  header #btns #btn {
    position: fixed;
    float: left;
    width: 40%;
    left: -100%;
    margin-top: 80px;
    height: calc(100% - 80px);
    background: var(--b-first-color);
    overflow-y: scroll;
    overflow-x: hidden;
    transition: var(--transition);
    z-index: 2;
  }
  header #btns #btn.show {
    left: 0;
  }
  header #btns #btn .btn {
    width: 100%;
  }
  header #btns .btn a {
    color: #000;
  }
  header #btns #btn .btn img {
    position: absolute;
    float: right;
    height: 20px;
    right: 10px;
    top: 50%;
    transform: translate(0, -50%);
    display: block;
  }
  header #btns #logo {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
  }
  header #btns #cart {
    float: right;
    margin-right: 15px;
  }
  header #category {
    width: 50%;
    height: calc(100% - 80px);
    left: -100%;
    top: 82px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  header #offert {
    padding-bottom: 5%;
  }
  header #category.selected {
    top: 82px;
    left: 40%;
  }
  header #category .section {
    width: 90%;
    margin: 5%;
  }
}
