/* [Kumbh Sans] */
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
/* map-get($primaryColors, Orange) 
map-get($neutralColors, GrayisBlue)
*/
/* Mixins media queries */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Kumbh Sans", sans-serif;
}
body ul {
  list-style-type: none;
}
body a {
  text-decoration: none;
}

button {
  border: none;
  background-color: inherit;
}

dialog:modal {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  max-width: 100vw;
  width: 100vw;
  height: 100dvh;
  border: none;
  background: none;
}

dialog::backdrop {
  background: hsla(0, 0%, 0%, 0.577);
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(26, 100%, 55%);
  color: white;
  box-shadow: none;
  border: none;
  width: 100%;
  height: 3rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  cursor: pointer;
}

/* body overflow for menu slider and lightbox */
.body-container__menu-hider--active {
  overflow: hidden;
}
@media (min-width: 860px) {
  .body-container__menu-hider--active {
    overflow: auto;
  }
}
.body-container__lightbox--active {
  overflow: auto;
}
@media (min-width: 860px) {
  .body-container__lightbox--active {
    overflow: hidden;
  }
}

/* Menu */
.menu {
  display: flex;
  align-items: center;
  position: fixed;
  background-color: white;
  width: 100%;
  height: 60px;
  padding: 1rem 0 0;
  z-index: 100;
  top: 0;
  /* menu slider */
  /* hider div when the menu mobile is opened */
  /* cart button and active in the menu */
  /* image in the menu */
}
@media (min-width: 860px) {
  .menu {
    height: 100px;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
  }
}
.menu__thumbnail {
  z-index: -1;
}
.menu__btn {
  display: flex;
  justify-content: center;
  width: 50px;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  z-index: 10;
}
@media (min-width: 860px) {
  .menu__btn {
    display: none;
  }
}
.menu__burger {
  background-color: black;
  align-self: center;
  width: 30px;
  height: 4px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
  /* animation burger menu button */
}
.menu__burger::before, .menu__burger::after {
  display: block;
  position: absolute;
  content: "";
  background-color: black;
  width: 30px;
  height: 4px;
  border-radius: 6px;
  transition: all 0.5s ease-in-out;
}
.menu__burger::before {
  transform: translateY(12px);
}
.menu__burger::after {
  transform: translateY(-12px);
}
.menu__burger--active {
  background: transparent;
}
.menu__burger--active::before {
  transform: rotate(45deg);
}
.menu__burger--active::after {
  transform: rotate(-45deg);
}
.menu__slider {
  position: absolute;
  left: 0;
  top: 0;
  padding-top: 100px;
  /* transition: all 0.3s ease-in-out; */
  transform: translateX(-100%);
}
@media (min-width: 860px) {
  .menu__slider {
    transition: none;
  }
}
.menu__slider--active {
  width: 65%;
  height: 100vh;
  background-color: white;
  transition: all 0.5s ease-in-out;
  transform: translateX(0);
}
@media (min-width: 860px) {
  .menu__slider--active {
    height: auto;
  }
}
@media (min-width: 860px) {
  .menu__slider {
    position: relative;
    left: auto;
    top: auto;
    padding-top: 2.6rem;
    transform: translateX(0);
  }
}
.menu__hider {
  display: none;
}
.menu__hider--active {
  display: block;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  background-color: hsla(0, 0%, 0%, 0.577);
}
@media (min-width: 860px) {
  .menu__hider--active {
    display: none;
  }
}
.menu__logo {
  font-size: 2rem;
  font-weight: bolder;
  padding-right: 2rem;
  padding-left: 1rem;
}
.menu__links {
  padding-left: 1rem;
}
@media (min-width: 860px) {
  .menu__links {
    display: flex;
    padding-left: 0;
  }
}
.menu__link {
  padding-bottom: 2rem;
  font-size: 1.5rem;
}
@media (min-width: 860px) {
  .menu__link {
    padding-bottom: 0rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    font-size: 1.1rem;
    height: 57px;
  }
}
@media (min-width: 860px) {
  .menu__link:hover {
    border-bottom: 3px solid hsl(26, 100%, 55%);
  }
}
.menu__link a {
  color: inherit;
  cursor: pointer;
}
.menu__shopping {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  right: 30px;
}
@media (min-width: 860px) {
  .menu__shopping {
    right: 170px;
  }
}
.menu__cart {
  cursor: pointer;
  border: none;
  background-color: inherit;
}
.menu__cart-total {
  display: none;
}
.menu__cart-total--active {
  display: block;
  position: absolute;
  top: 3px;
  left: 8px;
  width: 20px;
  height: 10px;
  background-color: hsl(26, 100%, 55%);
  border-radius: 5px;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.6rem;
  font-weight: bolder;
  text-align: center;
}
.menu__thumbnail {
  display: flex;
  justify-content: center;
}
.menu__thumbnail img {
  margin-left: 1rem;
  width: 40px;
  border: 1px solid hsl(26, 100%, 55%);
  border-radius: 100%;
  cursor: pointer;
}

.main-content {
  margin-top: 78px;
  position: relative;
}
@media (min-width: 860px) {
  .main-content {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    /* padding-top: 3rem; */
  }
}
@media (min-width: 1300px) {
  .main-content {
    padding-top: 6rem;
  }
}

/* lightbox */
.carousel__lightbox-container {
  display: none;
}
@media (min-width: 860px) {
  .carousel__lightbox-container {
    width: 70%;
    position: fixed;
    display: none;
    justify-content: center;
    top: 65px;
    z-index: 100;
  }
}
@media (min-width: 860px) {
  .carousel__lightbox-container--active {
    display: flex;
  }
}

.carousel__lightbox {
  /*  @include for-ultra-larger-desktop-up(){
     width: 30% ;
   } */
  /* hider div when the lightbox is actived */
  /*  @include for-larger-desktop-up(){
    width: 42%;
  } */
}
@media (min-width: 860px) {
  .carousel__lightbox {
    width: 30%;
    position: relative;
  }
}
.carousel__lightbox-hider {
  display: none;
}
.carousel__lightbox-hider--active {
  display: none;
}
@media (min-width: 860px) {
  .carousel__lightbox-hider--active {
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    background-color: hsla(0, 0%, 0%, 0.577);
    z-index: -10;
  }
}

/* buttons lightbox */
#prev-lightbox,
#next-lightbox {
  position: absolute;
  top: 40%;
}
#prev-lightbox:hover,
#next-lightbox:hover {
  color: hsl(26, 100%, 55%);
  cursor: pointer;
}

#prev-lightbox {
  left: -25px;
}

#next-lightbox {
  right: -25px;
}

/* Carousel -- include lightbox and the one when the lightbox is closed*/
.carousel {
  width: 100%;
  display: flex;
  position: relative;
  /* lightbox close button */
}
@media (min-width: 860px) {
  .carousel {
    justify-self: center;
    flex-wrap: wrap;
    margin-left: 4rem;
    margin-right: 4rem;
    width: 30%;
    height: 30%;
  }
}
.carousel__image.lightbox {
  pointer-events: none;
}
.carousel__close {
  display: none;
}
@media (min-width: 860px) {
  .carousel__close {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    color: hsl(26, 100%, 55%);
    width: 100%;
    height: 30px;
    text-align: right;
    font-size: 1.3rem;
    font-weight: bolder;
    margin-bottom: 0.5rem;
    cursor: pointer;
    z-index: 100;
  }
}
.carousel__nav, .carousel__nav-lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  font-size: 1.5rem;
  background-color: white;
  z-index: 10;
}
.carousel__nav#prev, .carousel__nav-lightbox#prev {
  left: 20px;
}
@media (min-width: 860px) {
  .carousel__nav#prev, .carousel__nav-lightbox#prev {
    display: none;
  }
}
.carousel__nav#next, .carousel__nav-lightbox#next {
  right: 20px;
}
@media (min-width: 860px) {
  .carousel__nav#next, .carousel__nav-lightbox#next {
    display: none;
  }
}
.carousel__list, .carousel__list-lightbox {
  display: none;
}
@media (min-width: 860px) {
  .carousel__list, .carousel__list-lightbox {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.carousel__thumbnails, .carousel__thumbnails-lightbox {
  display: flex;
  justify-content: space-around;
  margin-top: 4px;
}
.carousel__thumbnails picture {
  width: 20%;
}
.carousel__thumbnail, .carousel__tmb-lightbox {
  border-radius: 10px;
  width: 100%;
  cursor: pointer;
}
.carousel__thumbnail--active, .carousel__thumbnail:hover, .carousel__tmb-lightbox--active, .carousel__tmb-lightbox:hover {
  opacity: 0.5;
  border: 2px solid hsl(26, 100%, 55%);
}
.carousel__slider {
  pointer-events: none;
}
@media (min-width: 860px) {
  .carousel__slider {
    pointer-events: auto;
    cursor: pointer;
  }
}
.carousel__slider, .carousel__slider-lightbox {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.carousel__slider picture, .carousel__slider img, .carousel__slider-lightbox picture, .carousel__slider-lightbox img {
  min-width: 100%;
  width: 100%;
}
.carousel__slider img, .carousel__slider-lightbox img {
  transition: all 0.5s ease-in-out;
  transform: translateX(0);
  /* prevent click */
  pointer-events: none;
}
@media (min-width: 860px) {
  .carousel__slider img, .carousel__slider-lightbox img {
    border-radius: 20px;
    pointer-events: all;
    cursor: pointer;
  }
}

/* main content text */
.container {
  padding: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  /* buttons add remove items in the cart */
  /* logo in the button */
}
@media (min-width: 860px) {
  .container {
    width: 50%;
  }
}
.container h2 {
  color: hsl(26, 100%, 55%);
}
.container h1 {
  padding: 1rem 0;
}
@media (min-width: 860px) {
  .container h1 {
    width: 70%;
  }
}
.container__product-info {
  text-align: justify;
  color: hsl(220, 14%, 75%);
  padding-bottom: 2rem;
}
.container__product-price {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 2rem;
}
@media (min-width: 860px) {
  .container__product-price {
    flex-wrap: wrap;
  }
}
.container__discounted-price {
  font-size: 2rem;
  font-weight: bolder;
}
.container__discount {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25px;
  margin-left: 1rem;
  background-color: hsl(25, 100%, 94%);
  border-radius: 5px;
  padding: 0 4px;
  font-weight: bolder;
  color: hsl(26, 100%, 55%);
}
.container__original-price {
  margin-left: auto;
  color: rgb(160, 160, 160);
  font-size: 1.25rem;
  text-decoration: line-through;
}
@media (min-width: 860px) {
  .container__original-price {
    width: 100%;
  }
}
@media (min-width: 860px) {
  .container__add-products {
    display: flex;
  }
}
.container__product-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 3rem;
  font-size: 1rem;
  background-color: rgb(240, 245, 250);
  border-radius: 10px;
  margin-bottom: 1rem;
}
@media (min-width: 860px) {
  .container__product-cart {
    width: 60%;
  }
}
.container #less,
.container #more {
  color: rgb(255, 132, 0);
  font-weight: bolder;
  font-size: 1.3rem;
  cursor: pointer;
}
.container #less {
  padding-left: 1rem;
}
.container #more {
  padding-right: 1rem;
}
.container svg {
  /* padding: 0.4rem; */
  margin-right: 5px;
}
@media (min-width: 860px) {
  .container__btn {
    margin-top: 0;
    margin-left: 1rem;
  }
}

.cart {
  display: none;
  position: fixed;
  background-color: white;
  top: 90px;
  width: 93%;
  height: 280px;
  margin-left: 0;
  margin-right: 0;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem;
}
@media (min-width: 860px) {
  .cart {
    position: absolute;
    left: auto;
    height: 250px;
    right: 50px;
    top: 75px;
    width: 320px;
    transform: translateX(0);
    box-shadow: 0px 10px 20px 4px black;
  }
}
.cart--active {
  display: block;
}
.cart__title {
  font-weight: bolder;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  width: 100%;
  height: 2.5rem;
  border-bottom: 1px solid;
}
.cart__content {
  display: none;
}
.cart__content--active {
  display: flex;
  align-items: center;
  height: 120px;
  margin-top: 10px;
  margin-bottom: 15px;
}
.cart__content p {
  width: 100%;
  font-size: 1rem;
  line-height: 25px;
  margin-left: 10px;
  margin-right: 10px;
  /*  @include for-desktop-up() {
    line-height: 25px;
  } */
}
.cart__empty {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.cart__empty--active {
  display: none;
}
.cart__img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.cart__delete {
  margin-left: auto;
  cursor: pointer;
}
.cart__btn {
  display: none;
}
@media (min-width: 860px) {
  .cart__btn {
    margin-top: -10px;
  }
}

.attribution {
  font-size: 11px;
  text-align: center;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}/*# sourceMappingURL=style.css.map */