.style__button {
  display: flex;
  align-items: center;
  gap: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #2E303D;
  background-color: transparent;
  padding: 8px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
@media (max-width: 686px) {
  .style__button {
    font-size: 12.5px;
  }
}

.delete__product {
  display: flex;
  align-items: center;
  gap: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #2E303D;
  background-color: transparent;
  padding: 8px;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
}
@media (max-width: 686px) {
  .delete__product {
    font-size: 12.5px;
  }
}

.drop__down {
  width: 171px;
  position: absolute;
  top: 40px;
  right: 0px;
  display: none;
}
.drop__down.show-drop {
  width: 171px;
  display: flex;
}
.drop__down ul {
  background-color: hsla(0, 0%, 0%, 0.4);
  border-radius: 6px;
  overflow: hidden;
  list-style: none;
  padding: 0;
  width: 100%;
}
.drop__down ul li {
  font-size: 12px;
  color: #ffffff;
  padding: 8px 16px;
}
.drop__down ul li:hover {
  background-color: #2E303D;
}

.card__templante {
  width: 100%;
}
.card__templante .article__image {
  width: 100%;
}
.card__templante .card__container {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card__templante .card__container h3 {
  font-size: 14px;
  font-weight: 400;
  color: #2E303D;
}
.card__templante .card__container span {
  font-size: 12.5px;
  font-weight: 300;
  color: #67697e;
}
.card__templante .card__container p {
  font-size: 14px;
  font-weight: 400;
  color: #2E303D;
  margin: 8px 0;
}
.card__templante .card__container .color__hoodies {
  width: 100%;
  display: flex;
  gap: 2px;
}
.card__templante .card__container .color__hoodies img {
  width: 14.4px;
  border: 1px solid #d6d8e1;
}

.addToCart {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  color: #ffffff;
  background-color: #2E303D;
  width: 100%;
  padding: 8px;
}
.addToCart:hover {
  background-color: transparent;
  color: #2E303D;
  outline: 1px solid #2E303D;
}

label {
  color: #67697e;
  font-size: 12px;
  margin-bottom: 8px;
}

input {
  width: 100%;
  border: 1px solid #2E303D;
  padding: 8px;
}

select {
  width: 100%;
  border: 1px solid #2E303D;
  padding: 8px;
}

textarea {
  width: 100%;
  border: 1px solid #2E303D;
  padding: 8px;
}

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

main {
  width: 100%;
}
main section {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 45px;
}
main section span {
  font-size: 12px;
  color: #67697e;
}
main section .form__container {
  display: flex;
  gap: 200px;
  justify-content: space-between;
}
main section .form__container .text__copy {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main section .form__container .text__copy h1 {
  font-size: 24px;
  color: #2E303D;
}
main section .form__container .text__copy p {
  font-size: 14px;
  color: #67697e;
}
main section .form__container div {
  width: 50%;
}
main section .form__container div form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
main section .form__container div form div {
  width: 100%;
}

* {
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

header {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  position: fixed;
  z-index: 1;
  top: 0px;
}
header .top__bar-fixed {
  max-width: 1366px;
  margin: 0 auto;
  display: grid;
  grid-template-areas: "sidesLeft center sideRight";
  grid-template-columns: 1fr auto 1fr;
  padding: 32px 45px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 686px) {
  header .top__bar-fixed {
    padding: 20px 16px;
  }
}
header .top__bar-fixed .option__seccions {
  grid-area: sidesLeft;
}
header .top__bar-fixed .shopping__section {
  grid-area: sideRight;
  justify-content: end;
  position: relative;
}
header .top__bar-fixed .shopping__section .badge__btn {
  width: 12px;
  height: 12px;
  border-radius: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4px;
  font-size: 8px;
  background-color: #2E303D;
  color: #ffffff;
  position: absolute;
  right: -8px;
  top: -2px;
  /*&.showbadge {
      display: flex;
  }*/
}
@media (max-width: 686px) {
  header .top__bar-fixed .shopping__section .badge__btn {
    right: 4px;
    top: 3px;
  }
}
header .top__bar-fixed .option__seccions, header .top__bar-fixed .shopping__section {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .top__bar-fixed .option__seccions .icon__options, header .top__bar-fixed .shopping__section .icon__options {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
  padding: 12px;
  display: none;
}
@media (max-width: 686px) {
  header .top__bar-fixed .option__seccions .icon__options, header .top__bar-fixed .shopping__section .icon__options {
    display: flex;
    padding: 8px;
  }
}
header .top__bar-fixed .option__seccions .icon__options a, header .top__bar-fixed .shopping__section .icon__options a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-decoration: none;
}
header .top__bar-fixed .option__seccions .icon__options a img, header .top__bar-fixed .shopping__section .icon__options a img {
  width: 18px;
  height: 18px;
}
header .top__bar-fixed .option__seccions .options__text, header .top__bar-fixed .shopping__section .options__text {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
}
@media (max-width: 686px) {
  header .top__bar-fixed .option__seccions .options__text, header .top__bar-fixed .shopping__section .options__text {
    display: none;
  }
}
header .top__bar-fixed .option__seccions .options__text a, header .top__bar-fixed .shopping__section .options__text a {
  text-decoration: none;
  color: #67697e;
  font-size: 13px;
  font-weight: 300;
}
header .top__bar-fixed .option__seccions .options__text a:hover, header .top__bar-fixed .shopping__section .options__text a:hover {
  color: #2E303D;
}
header .top__bar-fixed .logo__main {
  width: 120px;
  grid-area: center;
}
@media (max-width: 686px) {
  header .top__bar-fixed .logo__main {
    width: 88px;
    margin-left: 8px;
  }
}
header .top__bar-fixed .logo__main img {
  width: 100%;
}

main {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-top: 89.87px;
  margin-bottom: 24px;
}
main .menu__mobile {
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 16px;
  position: fixed;
  background-color: hsla(0, 0%, 0%, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  left: -100%;
  transition: left 1s ease;
}
main .menu__mobile.Showmobile {
  left: 0px;
}
main .menu__mobile .container__options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
main .menu__mobile .container__options .title__close {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
main .menu__mobile .container__options .title__close h2 {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  color: #67697e;
  color: #ffffff;
}
main .menu__mobile .container__options ul {
  list-style: none;
  padding: 0;
}
main .menu__mobile .container__options ul li {
  font-size: 14px;
  padding: 24px 16px;
  color: #ffffff;
  border-bottom: 1px solid #d6d8e1;
}
main .menu__mobile .container__options ul li:hover {
  background-color: hsla(0, 0%, 0%, 0.4);
}
main .shopping__cart {
  z-index: 1;
  width: 40%;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  right: -42%;
  transition: all 0.023s ease;
  top: 89.87px;
}
@media (max-width: 686px) {
  main .shopping__cart {
    top: 79.87px;
    width: 100%;
    right: 1002%;
  }
}
main .shopping__cart.show-Cart {
  top: 89.87px;
  right: 0%;
}
@media (max-width: 686px) {
  main .shopping__cart.show-Cart {
    top: 79.87px;
  }
}
main .shopping__cart .cart__container {
  width: 100%;
  padding: 16px 24px;
}
main .shopping__cart .cart__container .title__cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
main .shopping__cart .cart__container .title__cart h2 {
  font-size: 16px;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 0;
}
main .shopping__cart .cart__container #cart-items .card__cart {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #d6d8e1;
}
main .shopping__cart .cart__container #cart-items .card__cart div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main .shopping__cart .cart__container #cart-items .card__cart div h3 {
  margin: 0;
  font-size: 14.4px;
  color: #2E303D;
  font-weight: 400;
}
main .shopping__cart .cart__container #cart-items .card__cart div p {
  font-size: 12px;
  color: #67697e;
  font-weight: 300;
}
main .main__container-body {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 45px;
}
@media (max-width: 1000px) {
  main .main__container-body {
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 686px) {
  main .main__container-body {
    width: 100%;
    padding: 0;
  }
}
main .main__container-body h1 {
  font-size: 28px;
  font-weight: 400;
  margin: 16px 0;
}
@media (max-width: 686px) {
  main .main__container-body h1 {
    font-size: 24px;
  }
}
main .main__container-body section {
  padding: 0;
}
main .main__container-body .options__ofProducts {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
main .main__container-body .options__ofProducts .numProducts {
  font-size: 14px;
  color: #67697e;
  font-weight: 300;
}
@media (max-width: 686px) {
  main .main__container-body .options__ofProducts .numProducts {
    font-size: 12.5px;
  }
}
main .main__container-body .options__ofProducts .filter__options {
  display: flex;
  gap: 8px;
  align-items: center;
}
main .main__container-body .container__product {
  width: 100%;
}
main .main__container-body .container__product .product__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 1000px) {
  main .main__container-body .container__product .product__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 686px) {
  main .main__container-body .container__product .product__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 686px) {
  main {
    padding: 0 16px;
  }
}

.footer {
  margin-top: 24px;
  padding: 32px 45px;
  background-color: #f5f6f8;
  margin: 0 auto;
}
@media (max-width: 686px) {
  .footer {
    padding: 32px 16px;
    background-color: #f5f6f8;
  }
}
.footer h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #2E303D;
}
.footer .colum__options {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 9rem;
  justify-content: space-between;
  margin-bottom: 24px;
}
@media (max-width: 686px) {
  .footer .colum__options {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.footer .colum__options .description p {
  font-size: 14px;
  color: #2E303D;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer .colum__options .description div p {
  font-size: 13px;
  color: #2E303D;
  margin: 0;
  font-weight: 500;
  text-decoration: underline;
}
.footer .colum__options .description div span {
  font-size: 13px;
  color: #67697e;
  margin: 0;
}
.footer .colum__options .Information p {
  font-size: 14px;
  color: #2E303D;
  margin: 0;
  font-weight: 500;
  text-decoration: underline;
}
.footer .colum__options .Information ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer .colum__options .Information ul li {
  font-size: 14px;
  color: #67697e;
}
.footer .colum__options .Information ul li a {
  text-decoration: none;
  color: #67697e;
}
.footer .colum__options .Information ul li a:hover {
  text-decoration: underline;
}
.footer .colum__options .forms p {
  font-size: 20px;
  color: #2E303D;
  margin-bottom: 24px;
}
.footer .colum__options .forms input {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 16px 0;
  background-color: transparent;
  border-bottom: 1px solid #2E303D;
}
.footer .polici-and-terms {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}
.footer .polici-and-terms p {
  font-size: 13px;
  color: #67697e;
  font-weight: 300;
}
.footer .polici-and-terms div {
  display: flex;
}
.footer .polici-and-terms div p {
  font-size: 13px;
  color: #67697e;
  font-weight: 300;
}/*# sourceMappingURL=styles.css.map */