* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Kumbh Sans', sans-serif;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.6em 2.4em 2.4em 2em;
  position: relative;
}

header .hamburger-logo-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.6rem;
}

header .hamburger-logo-group .hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: .3rem;
  cursor: pointer;
}

header .hamburger-logo-group .hamburger .line {
  background-color: #68707d;
  width: 1.5rem;
  height: .3rem;
}

header .hamburger-logo-group .menu {
  background-color: rgba(0, 0, 0, 0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 10;
}

header .hamburger-logo-group .menu .slide-menu {
  background-color: white;
  height: 100%;
  width: 66vw;
  padding: 2.3rem;
}

header .hamburger-logo-group .menu .slide-menu img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

header .hamburger-logo-group .menu .slide-menu img:hover {
  cursor: pointer;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

header .hamburger-logo-group .menu .slide-menu ul {
  list-style-type: none;
  margin-top: 5rem;
  font-size: 1.8rem;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.3rem;
}

header .hamburger-logo-group .menu .slide-menu ul a, header .hamburger-logo-group .menu .slide-menu ul :active, header .hamburger-logo-group .menu .slide-menu ul :visited {
  color: #1d2025;
  text-decoration: none;
}

header .hamburger-logo-group .menu .slide-menu ul a:hover, header .hamburger-logo-group .menu .slide-menu ul :active:hover, header .hamburger-logo-group .menu .slide-menu ul :visited:hover {
  text-decoration: underline;
  opacity: .75;
}

header .hamburger-logo-group .hidden {
  display: none;
}

header .card-avatar-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.2em;
}

header .card-avatar-group .btnCart {
  cursor: pointer;
  position: relative;
}

header .card-avatar-group .btnCart .cart-count {
  position: absolute;
  top: -25%;
  right: -25%;
  background-color: #ff7d1a;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  padding: .1rem .6rem;
  border-radius: 1rem;
}

header .card-avatar-group .avatar {
  width: 2.5rem;
  cursor: pointer;
  border: 2px solid transparent;
}

header .card-avatar-group .avatar:hover {
  border: 2px solid #ff7d1a;
  border-radius: 50%;
}

header .cart {
  position: absolute;
  right: 1rem;
  top: calc(calc(100%) + 1rem);
  z-index: 1;
  background-color: white;
  width: 35.5rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1rem 1rem 1rem rgba(0, 0, 0, 0.1), 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 1rem 1rem 1rem rgba(0, 0, 0, 0.1), 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1);
}

header .cart .cart-header {
  border-bottom: 1px solid #b6bcc8;
  padding: 2.4rem 2rem;
  font-size: 1.6rem;
  font-weight: 700;
}

header .cart .products-in-cart .item {
  margin: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .cart .products-in-cart .item .product-img {
  width: 5rem;
  border-radius: .5rem;
}

header .cart .products-in-cart .item .details {
  color: #68707d;
  font-size: 1.6rem;
  line-height: 2.6rem;
}

header .cart .products-in-cart .item .details .price-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .6rem;
}

header .cart .products-in-cart .item .details .price-group .total-amount {
  font-weight: 700;
  font-size: 1.7rem;
  color: rgba(0, 0, 0, 0.75);
}

header .cart .products-in-cart .item #btnDelete {
  padding: .5rem;
  border-radius: .5rem;
}

header .cart .products-in-cart .item #btnDelete:hover, header .cart .products-in-cart .item #btnDelete:focus {
  cursor: pointer;
  background-color: #ffede0;
}

header .cart .msg-empty {
  color: #68707d;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 7.8rem 0;
}

header .cart .checkout {
  background-color: #ff7d1a;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 1.8rem;
  border-radius: 1rem;
  margin: 2.4rem;
  cursor: pointer;
}

header .cart .hidden {
  display: none;
}

header .hidden {
  display: none;
}

.lightbox {
  position: relative;
}

.lightbox .product-hero {
  width: 100%;
}

.lightbox .previous {
  left: 4%;
}

.lightbox .previous:hover {
  left: 3%;
}

.lightbox .next {
  right: 4%;
}

.lightbox .next:hover {
  right: 3%;
}

.lightbox .arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lightbox .thumb-gallery {
  display: none;
}

.product {
  padding: 2rem 2.4rem 4.4rem 2.4rem;
}

.product .company-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18rem;
  color: #ff7d1a;
}

.product .title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 118%;
  margin-top: 1.3rem;
  color: #1d2025;
}

.product .description {
  font-size: 1.5rem;
  line-height: 165%;
  color: #68707d;
  margin-top: 1.6rem;
}

.product .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}

.product .price-container .group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product .price-container .group .price {
  font-size: 3rem;
  font-weight: 700;
  color: #1d2025;
}

.product .price-container .group .discount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff7d1a;
  background-color: #ffede0;
  padding: .5rem 1rem;
  border-radius: .5rem;
  margin-left: 1.4rem;
}

.product .price-container .old-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: #b6bcc8;
  text-decoration: line-through;
}

.product .counter-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f7f8fd;
  padding: 1.2rem 2.4rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.product .counter-container .counter {
  font-size: 1.5rem;
  font-weight: 700;
}

.product .counter-container #btnMinus, .product .counter-container #btnPlus {
  cursor: pointer;
  padding: 1rem;
}

.product .counter-container #btnMinus:hover, .product .counter-container #btnMinus:focus, .product .counter-container #btnPlus:hover, .product .counter-container #btnPlus:focus {
  opacity: .5;
}

.product .btn {
  background-color: #ff7d1a;
  color: white;
  border-radius: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 1.9rem;
  margin-top: 1.5rem;
  -webkit-box-shadow: 0 20px 30px 0 #ffede0;
          box-shadow: 0 20px 30px 0 #ffede0;
  cursor: pointer;
  box-shadow: 0 20px 30px 0 #ffede0;
  cursor: pointer;
}

.product .btn:hover, .product .btn:focus {
  opacity: .5;
}

.product .btn img {
  -webkit-filter: brightness(300%);
          filter: brightness(300%);
  height: 1.5rem;
}

@media screen and (min-width: 1440px) {
  .container {
    width: 78%;
    margin: 0 auto;
  }
  header {
    padding: 0;
    border-bottom: 1px solid #b6bcc8;
  }
  header .hamburger-logo-group {
    gap: 5.5rem;
  }
  header .hamburger-logo-group .hamburger {
    display: none;
  }
  header .hamburger-logo-group .menu {
    display: block;
    position: unset;
    height: unset;
    z-index: unset;
  }
  header .hamburger-logo-group .menu .slide-menu {
    width: unset;
    padding: 0;
  }
  header .hamburger-logo-group .menu .slide-menu img {
    display: none;
  }
  header .hamburger-logo-group .menu .slide-menu ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 400;
    color: #68707d;
    gap: 3.4rem;
  }
  header .hamburger-logo-group .menu .slide-menu ul a {
    display: block;
    padding: 4rem 0;
    border-bottom: 3px solid transparent;
  }
  header .hamburger-logo-group .menu .slide-menu ul a:hover, header .hamburger-logo-group .menu .slide-menu ul a:focus {
    color: #1d2025;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 3px solid #ff7d1a;
    cursor: pointer;
  }
  header .card-avatar-group {
    padding: 4.5rem;
  }
  header .card-avatar-group .avatar {
    width: 5rem;
  }
  header .cart {
    right: -7rem;
    top: 90%;
  }
  .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10rem;
    padding: 9rem 5rem;
  }
  .lightbox {
    width: 100%;
  }
  .lightbox .product-hero {
    border-radius: 1.5rem;
  }
  .lightbox .previous, .lightbox .next {
    display: none;
  }
  .lightbox .thumb-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 3rem;
  }
  .lightbox .thumb-gallery .pic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 20%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    overflow: hidden;
    border-radius: 1rem;
    border: 2px solid transparent;
  }
  .lightbox .thumb-gallery .pic img {
    width: 100%;
  }
  .lightbox .thumb-gallery .pic img:hover, .lightbox .thumb-gallery .pic img:focus {
    opacity: .75;
  }
  .lightbox .thumb-gallery .active {
    border: 2px solid #ff7d1a;
  }
  .lightbox .thumb-gallery .active img {
    opacity: .5;
  }
  .product {
    width: 100%;
    padding: 3rem 0 3rem 3rem;
  }
  .product .title {
    font-size: 4.4rem;
    margin-top: 1.8rem;
  }
  .product .description {
    margin-top: 3.5rem;
    font-size: 1.6rem;
  }
  .product .price-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: .8rem;
    margin-top: 2.4rem;
  }
  .product .count-btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
  .product .count-btn-group .counter-container {
    width: 62%;
    border-radius: 1rem;
    padding: 1.2rem .5rem;
  }
  .product .count-btn-group .btn {
    width: 100%;
  }
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.overlay .btnClose {
  width: 57rem;
  text-align: end;
  padding: 2rem 0;
}

.overlay .btnClose img {
  cursor: pointer;
  -webkit-filter: brightness(300%);
          filter: brightness(300%);
}

.overlay .lightbox {
  max-width: 57rem;
}

.overlay .lightbox .next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

.overlay .lightbox .previous {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.overlay .lightbox .arrow {
  top: 40%;
}

.hidden {
  display: none;
}
/*# sourceMappingURL=style.css.map */