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

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

.header {
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 24px;
}
@media (min-width: 1115px) {
  .header {
    height: 112px;
  }
}
.header__logo {
  transform: scale(0.5);
  width: 300px;
}
@media (min-width: 1115px) {
  .header__logo {
    transform: scale(0.9);
  }
  .header__logo:hover {
    transform: scale(1.2);
    transition: all 1s ease;
  }
}
.header__navigation {
  width: 175px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1115px) {
  .header__navigation {
    width: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.header__menu:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .header__menu {
    display: none;
  }
}
.header__cart-avatar {
  /* border: 1px solid blue; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70px;
}
@media (min-width: 1115px) {
  .header__cart-avatar {
    width: 125px;
  }
}
.header__cart {
  position: relative;
}
.header__cart--notification {
  display: none;
  background-color: #00b7ff;
  width: 15px;
  height: 12px;
  border-radius: 16px;
  position: absolute;
  top: -2px;
  right: -5px;
  font-size: 0.6em;
  text-align: center;
  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 #00b7ff;
  border-radius: 50%;
}

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

.modal-navbar {
  background-color: hsl(0deg, 0%, 100%);
  width: 250px;
  height: 100%;
  padding: 28px 24px;
}
.modal-navbar__background {
  background-color: rgba(0, 0, 0, 0.568627451);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: none;
}
.modal-navbar__items {
  /* border: 1px solid red; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  list-style: none;
  margin-top: 50px;
}
.modal-navbar__link {
  text-decoration: none;
  color: hsl(220deg, 13%, 13%);
  font-weight: 700;
  font-size: 1.1em;
}
.modal-navbar__close-icon:hover {
  cursor: pointer;
}

.gallery__image-container {
  height: 300px;
  width: 359px;
  background-size: cover;
  position: relative;
  margin-top: 9px;
}
@media (min-width: 1115px) {
  .gallery__image-container {
    background-position-y: -35px;
    border-radius: 5px;
    height: 446px;
    width: 579px;
    margin-bottom: 32px;
    background-position-y: 0px;
  }
}
.gallery__previous {
  background-color: hsl(0deg, 0%, 100%);
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  top: 125px;
  left: 3px;
}
.gallery__previous:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .gallery__previous {
    display: none;
  }
}
.gallery__next {
  background-color: hsl(0deg, 0%, 100%);
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  top: 125px;
  left: 316px;
}
.gallery__next:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .gallery__next {
    display: none;
  }
}
.gallery__thumnail {
  width: 90px;
  border-radius: 4px;
}
.gallery__thumnail:hover {
  cursor: pointer;
  border: 2px solid #00b7ff;
}
.gallery__thumnails {
  display: none;
}
@media (min-width: 1115px) {
  .gallery__thumnails {
    display: flex;
    justify-content: space-between;
  }
}
.gallery__text {
  font-size: 2.2em;
  color: rgba(255, 255, 255, 0.555);
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.details {
  padding: 24px;
}
.details__company {
  color: #00b7ff;
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.details__title {
  font-size: 1.7em;
  margin-bottom: 16px;
}
.details__description {
  font-size: 0.94em;
  color: hsl(219deg, 9%, 45%);
  line-height: 24px;
  margin-bottom: 24px;
}
.details__prices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 1.5em;
  font-weight: 700;
}
.details__now {
  font-size: 1.4em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 18px;
}
.details__discount {
  font-size: 0.7em;
  background-color: hsl(25deg, 100%, 94%);
  color: #00b7ff;
  padding: 4px;
  border-radius: 4px;
}
.details__before {
  text-decoration: line-through;
  color: hsl(219deg, 9%, 45%);
  font-size: 0.9em;
  font-weight: 700;
}
.details__button {
  background-color: #00b7ff;
  height: 57px;
  width: 100%;
  border: none;
  border-radius: 5px;
  color: hsl(0deg, 0%, 100%);
  font-size: 0.9em;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  font-size: 1.1em;
  background-color: #1bd741;
}
.details__button:hover {
  cursor: pointer;
  opacity: 0.5;
}
.details__button a {
  text-decoration: none;
  font-size: 1.2em;
  color: white;
}
.details__product--quantity {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.details__product--quantity img {
  width: 50px;
  height: 50px;
}
@media (min-width: 1115px) {
  .details {
    padding-top: 60px;
    width: 446px;
  }
  .details__title {
    font-size: 2.7em;
    margin-bottom: 48px;
  }
  .details__description {
    font-size: 0.9em;
    margin-bottom: 37px;
  }
  .details__prices {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.5em;
    font-weight: 700;
  }
  .details__product--quantity {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
  }
  .details__product--quantity img {
    width: 50px;
    height: 50px;
  }
}

.input {
  height: 57px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: hsl(223deg, 64%, 98%);
  /* border: 1px solid; */
  border-radius: 5px;
}
.input__minus {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
}
.input__minus:hover {
  cursor: pointer;
}
.input__number {
  width: 100%;
  height: 100%;
  border: none;
  background-color: hsl(223deg, 64%, 98%);
  font-size: 1.2em;
  font-weight: 700;
  font-family: "Kumbh Sans", sans-serif;
  text-align: center;
  outline: none;
}
.input__plus {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-user-select: none;
}
.input__plus:hover {
  cursor: pointer;
}

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

.modal-gallery {
  width: 550px;
}
.modal-gallery__close-container {
  text-align: right;
  height: 30px;
}
.modal-gallery__close {
  width: 16px;
}
.modal-gallery__close:hover {
  cursor: pointer;
  content: url("./images/icon-close-orange.svg");
}
.modal-gallery__background {
  background-color: rgba(0, 0, 0, 0.568627451);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal-gallery__image-container {
  height: 446px;
  background-size: cover;
  border-radius: 16px;
  margin-bottom: 32px;
  position: relative;
}
.modal-gallery__thumnails {
  display: flex;
  justify-content: space-between;
  width: 450px;
  margin: auto;
}
.modal-gallery__thumnail {
  width: 90px;
  border-radius: 16px;
}
.modal-gallery__thumnail:hover {
  cursor: pointer;
  border: 2px solid #00b7ff;
}
.modal-gallery__previous {
  background-color: hsl(0deg, 0%, 100%);
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  top: 190px;
  left: -15px;
}
.modal-gallery__previous:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .modal-gallery__previous {
    display: block;
  }
}
.modal-gallery__next {
  background-color: hsl(0deg, 0%, 100%);
  width: 40px;
  height: 40px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  top: 190px;
  left: 520px;
}
.modal-gallery__next:hover {
  cursor: pointer;
}
@media (min-width: 1115px) {
  .modal-gallery__next {
    display: block;
  }
}
.modal-gallery__text {
  font-size: 2.2em;
  color: rgba(245, 245, 245, 0.38);
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  height: 430px;
  border: 1px solid rgb(243, 243, 243);
  padding: 20px;
  border-radius: 7px;
}
.card__categoria {
  align-self: flex-start;
  color: #00b7ff;
  font-weight: 300;
}
.card__title {
  color: black;
  font-weight: 700;
  font-size: 1.8em;
}
.card__image-thumbnail {
  width: 100%;
  height: 190px;
  border-radius: 3px;
}
.card__description {
  text-justify: auto;
  margin-bottom: 15px;
}
.card__btn {
  background-color: #00b7ff;
  height: 57px;
  width: 100%;
  border: none;
  border-radius: 5px;
  color: hsl(0deg, 0%, 100%);
  font-size: 0.9em;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.card__btn:hover {
  cursor: pointer;
  opacity: 0.5;
}
@media (min-width: 1115px) {
  .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 310px;
    height: 430px;
    border: 1px solid rgb(243, 243, 243);
    padding: 20px;
    border-radius: 5px;
  }
  .card__categoria {
    align-self: flex-start;
    color: #00b7ff;
    font-weight: 300;
  }
  .card__title {
    color: black;
    font-weight: 700;
    font-size: 1.8em;
  }
  .card__image-thumbnail {
    width: 100%;
    height: 190px;
    border-radius: 3px;
  }
  .card__description {
    text-justify: auto;
    margin-bottom: 15px;
  }
  .card__btn {
    background-color: #00b7ff;
    height: 57px;
    width: 100%;
    border: none;
    border-radius: 5px;
    color: hsl(0deg, 0%, 100%);
    font-size: 0.9em;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }
  .card__btn:hover {
    cursor: pointer;
    opacity: 0.5;
  }
  .card:hover {
    transition: all 0.7s ease;
    transform: scale(1.05);
  }
}

.search {
  /* border: 1px solid red; */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #02b8ff;
  z-index: 100;
}
.search__input {
  height: 80%;
  border: 1px solid hsl(220deg, 14%, 75%);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 10px;
  outline: none;
  width: 50%;
  color: black;
}
.search__input:focus {
  border: 1px solid #00b7ff;
}
.search__container {
  height: 80%;
  width: auto;
}
.search__btn {
  height: 100%;
  width: 60px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border: none;
  background-color: white;
  font-weight: 300;
}
.search__btn:hover {
  cursor: pointer;
}

.footer {
  width: 375px;
  font-size: 0.9em;
  margin: auto;
  background-color: hsl(223deg, 64%, 98%);
  padding: 20px;
}
.footer__logo {
  transform: scale(0.4);
}
.footer__title {
  font-size: 0.9em;
  text-align: center;
  text-justify: distribute;
}
.footer__info {
  text-align: center;
}
.footer__info-title {
  font-size: 1.2em;
}
.footer__subtitles-containers {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__subtitles-containers div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.footer__subtitles-containers div p {
  text-align: justify;
}
.footer__dev {
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
@media (min-width: 1115px) {
  .footer {
    width: 98%;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__subtitles-containers div {
    width: 300px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer__title {
    font-size: 2.5em;
    text-align: center;
    text-justify: distribute;
    margin: 80px;
  }
  .footer__subtitles-containers {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    margin-bottom: 100px;
  }
  .footer__dev {
    font-size: 0.9em;
  }
}

.nav-search {
  display: none;
}
@media (min-width: 1115px) {
  .nav-search {
    width: 20%;
    min-height: 500px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
    margin-right: 15px;
    border-right: 2px solid #5c5c5c;
  }
}
.nav-search__item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 90%;
  margin-bottom: 15px;
}
.nav-search__item-quality {
  text-decoration: none;
}
.nav-search__item-quality:hover {
  color: #00b7ff;
}
.nav-search__image {
  text-align: center;
  width: 50px;
  height: 30px;
}
.nav-search__title {
  /* border: 1px solid blue; */
  width: 100%;
  background-color: #00b7ff;
  font-size: 1.1em;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  text-align: center;
  padding: 5px;
}
.nav-search__group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

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

.content {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.content__btn-close {
  width: 30px;
  height: 30px;
  top: 41px;
  right: 0;
  z-index: 100;
  background-color: #00b7ff;
  border-radius: 50%;
  padding: 10px;
  position: sticky;
}
@media (min-width: 1115px) {
  .content {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 90px 50px;
    gap: 124px;
    position: relative;
  }
  .content__btn-close {
    width: 30px;
    height: 30px;
    top: 27px;
    right: 25px;
    z-index: 1;
    background-color: #00b7ff;
    border-radius: 50%;
    padding: 10px;
    position: absolute;
    cursor: pointer;
  }
}

.content-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 450px;
}
@media (min-width: 1115px) {
  .content-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 420px;
    width: 100%;
  }
  .content-list__no-results {
    font-size: 1.8em;
    color: #b1b1b1;
    text-align: center;
  }
}
.content-list__no-results {
  font-size: 1.2em;
  color: #b1b1b1;
  text-align: center;
}

.group-main {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media (min-width: 1115px) {
  .group-main {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    width: 98%;
    padding: 5px;
  }
}

.show {
  display: block;
}

/*# sourceMappingURL=styles.css.map */
