@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.header {
  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;
  height: 68px;
  padding: 0 24px;
}
@media (min-width: 1115px) {
  .header {
    height: 112px;
    border-bottom: 1px solid hsl(220deg, 14%, 75%);
  }
}
.header__navegation {
  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;
  width: 175px;
  height: 100%;
}
@media (min-width: 1115px) {
  .header__navegation {
    width: 590px;
  }
}
.header .header__menu:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .header .header__menu {
    display: none;
  }
}
.header__cart-avatar {
  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;
  width: 70px;
}
@media (min-width: 1115px) {
  .header__cart-avatar {
    width: 125px;
  }
}
.header__cart {
  position: relative;
}
.header__cart--notification {
  position: absolute;
  top: -2px;
  right: -5px;
  display: none;
  width: 15px;
  height: 12px;
  font-size: 0.6em;
  text-align: center;
  border-radius: 16px;
  background-color: hsl(26deg, 100%, 55%);
  color: hsl(0deg, 0%, 100%);
}
.header__cart:hover {
  cursor: pointer;
}
.header__avatar {
  width: 24px;
}
@media (min-width: 1115px) {
  .header__avatar {
    width: 48px;
  }
}
.header__avatar:hover {
  cursor: pointer;
  border: 2px solid hsl(26deg, 100%, 55%);
  border-radius: 50%;
}

.navbar {
  display: none;
  width: 400px;
}
.navbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
}
.navbar__link {
  display: block;
  height: 112px;
  padding-top: 42px;
  text-decoration: none;
  color: hsl(219deg, 9%, 45%);
}
.navbar__link:hover {
  border-bottom: 4px solid hsl(26deg, 100%, 55%);
}
@media (min-width: 1115px) {
  .navbar {
    display: block;
  }
}

.modal-navbar {
  /* display: none;*/
  display: block;
  width: 250px;
  height: 100%;
  padding: 28px 24px;
  background-color: hsl(0deg, 0%, 100%);
}
.modal-navbar__background {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: hsla(0deg, 0%, 0%, 0.5);
  /* display: block;*/
}
.modal-navbar__items {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 200px;
  margin-top: 50px;
  list-style: none;
}
.modal-navbar__link {
  color: hsl(220deg, 13%, 13%);
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
}
.modal-navbar__close-icon:hover {
  cursor: pointer;
}

.gallery__image-container {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url("../images/image-product-1.jpg");
  background-position-y: -35px;
  background-size: cover;
  /*z-index: -1;*/
}
.gallery__previous {
  position: absolute;
  top: calc(50% - 20px);
  left: 15px;
  right: none;
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background-color: hsl(0deg, 0%, 100%);
}
.gallery__previous:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .gallery__previous {
    display: none;
  }
}
.gallery__next {
  position: absolute;
  top: calc(50% - 20px);
  left: none;
  right: 15px;
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background-color: hsl(0deg, 0%, 100%);
}
.gallery__next:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .gallery__next {
    display: none;
  }
}
.gallery__thunmails {
  display: none;
}
@media (min-width: 1115px) {
  .gallery {
    width: 446px;
    cursor: pointer;
  }
  .gallery__image-container {
    height: 446px;
    margin-bottom: 32px;
    background-position-y: 0;
    border-radius: 16px;
  }
  .gallery__thunmails {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gallery__thunmail {
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }
  .gallery__thunmail:hover {
    cursor: pointer;
    border: 2px solid hsl(26deg, 100%, 55%);
  }
}

.details {
  padding: 24px;
}
.details__company {
  margin-bottom: 12px;
  font-size: 0.8em;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: hsl(26deg, 100%, 55%);
}
.details__title {
  margin-bottom: 16px;
  font-size: 1.7em;
}
.details__description {
  margin-bottom: 24px;
  font-size: 0.94em;
  line-height: 24px;
  text-align: justify;
  color: hsl(219deg, 9%, 45%);
}
.details__prices {
  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;
  margin-bottom: 24px;
}
.details__now {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.8em;
  font-weight: 700;
}
.details__discount {
  padding: 4px;
  font-size: 0.5em;
  color: hsl(26deg, 100%, 55%);
  border-radius: 4px;
  background-color: hsl(25deg, 100%, 94%);
}
.details__before {
  font-size: 700;
  text-decoration: line-through;
  color: hsl(219deg, 9%, 45%);
}
.details__product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.details__button {
  width: 100%;
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 0.9em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(26deg, 100%, 55%);
}
.details__button:hover {
  cursor: pointer;
  opacity: 0.5;
}
@media (min-width: 1115px) {
  .details {
    width: 446px;
    padding-top: 60px;
  }
  .details__title {
    font-size: 2.7em;
    margin-bottom: 48px;
  }
  .details__description {
    font-size: 0.9em;
    margin-bottom: 37px;
  }
  .details__prices {
    -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;
  }
  .details__product-quantity {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}

.input {
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  background-color: hsl(223deg, 64%, 98%);
}
.input__minus {
  width: 25px;
  height: 100%;
  /*display: grid;
  place-content: center;*/
  padding: 24px 5px;
}
.input__minus:hover {
  cursor: pointer;
}
.input__number {
  width: 100%;
  font-family: "Kumbh Sans", sans-serif;
  font-size: 1.2em;
  text-align: center;
  border: none;
  outline: none;
  background-color: hsl(223deg, 64%, 98%);
}
.input__plus {
  width: 25px;
  height: 100%;
  /*display: grid;
  place-content: center;*/
  padding: 19px 3px;
}
.input__plus:hover {
  cursor: pointer;
}

.cart-modal {
  display: none;
  position: absolute;
  top: 75px;
  right: 8px;
  width: 360px;
  height: 260px;
  border-radius: 8px;
  -webkit-box-shadow: 3px 3px 10px;
          box-shadow: 3px 3px 10px;
  background-color: hsl(0deg, 0%, 100%);
}
.cart-modal__title {
  padding: 24px;
  font-weight: 700;
  border-bottom: 1px solid hsl(220deg, 14%, 75%);
}
.cart-modal__checkout-container {
  padding: 24px;
}
.cart-modal__details-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: hsl(219deg, 9%, 45%);
}
.cart-modal__image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}
.cart-modal__price span {
  color: hsl(0deg, 0%, 0%);
  font-weight: 700;
}
.cart-modal__delete:hover {
  cursor: pointer;
}
.cart-modal__checkout {
  width: 100%;
  height: 57px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 0.9em;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(26deg, 100%, 55%);
}
.cart-modal__checkout:hover {
  cursor: pointer;
  opacity: 0.5;
}

.show {
  display: block;
}

.cart-empty {
  margin-top: 30px;
  font-weight: 700;
  text-align: center;
  color: hsla(0deg, 0%, 0%, 0.5);
}

.modal-gallery {
  position: relative;
  width: 550px;
}
.modal-gallery__background {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: hsla(0deg, 0%, 0%, 0.5);
  /*display: grid;*/
  place-content: center;
}
.modal-gallery__close-container {
  height: 30px;
  text-align: right;
}
.modal-gallery__close {
  width: 16px;
}
.modal-gallery__close:hover {
  content: url("../images/icon-close-orange.svg");
  cursor: pointer;
}
.modal-gallery__image-container {
  position: relative;
  height: 446px;
  margin-bottom: 32px;
  background-image: url("../images/image-product-1.jpg");
  background-size: cover;
  border-radius: 16px;
}
.modal-gallery__previous {
  position: absolute;
  top: calc(50% - 20px);
  left: -15px;
  right: none;
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background-color: hsl(0deg, 0%, 100%);
}
.modal-gallery__previous:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .modal-gallery__previous {
    display: block;
  }
}
.modal-gallery__next {
  position: absolute;
  top: calc(50% - 20px);
  left: none;
  right: -15px;
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  background-color: hsl(0deg, 0%, 100%);
}
.modal-gallery__next:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .modal-gallery__next {
    display: block;
  }
}
.modal-gallery__thunmails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.modal-gallery__thunmail {
  width: 90px;
  height: 90px;
  border-radius: 16px;
}
.modal-gallery__thunmail:hover {
  cursor: pointer;
  border: 2px solid hsl(26deg, 100%, 55%);
}

.main-container {
  position: relative;
  width: 375px;
  margin: auto;
}
@media (min-width: 1115px) {
  .main-container {
    width: 1115px;
  }
}

@media (min-width: 1115px) {
  .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 124px;
    padding: 90px 50px;
  }
}