@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

a:focus,
button:focus,
input:focus,
text:focus,
textarea:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }
}

.flex {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.nav-opened {
  overflow: hidden;
}

html {
  font-size: 62.5%;
}

html,
body {
  font-family: "Jost", sans-serif;
  color: #1E1E1E;
}

a {
  text-decoration: none;
  color: inherit;
}

.image {
  overflow: hidden;
  position: relative;
}
.image img {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}
.image:after {
  content: "";
  display: block;
}

.btn {
  padding: 0.8rem;
  border-radius: 0.6rem;
  text-align: center;
  line-height: 1.7;
  height: 5rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2rem;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
.btn-main {
  background: #581908;
  color: #fff;
}
.btn-main:hover {
  color: #581908;
  background: #FFF;
  border-color: #581908;
}
.btn-main-w {
  background: #fff;
  color: #581908;
  border: 1px solid transparent;
}
.btn-main-w:hover {
  background: #581908;
  color: #fff;
}

.select-wrapper {
  position: relative;
  width: 14rem;
}
.select-wrapper::after {
  content: "Unidades";
  position: absolute;
  right: 3.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  font-weight: 600;
  padding-left: 1.5rem;
  border-left: 1px solid #e5e5e5;
  pointer-events: none;
}
.select-wrapper select {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #D1D1D1;
  border-radius: 12px;
  background-color: #F9F9F9;
  font-size: 14px;
  color: #D1D1D1;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.60986 4.89999L5.66486 6.955C5.75854 7.04812 5.88527 7.10039 6.01736 7.10039C6.14946 7.10039 6.27618 7.04812 6.36986 6.955L8.36986 4.95499' stroke='%23151515' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='bevel'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}
.select-wrapper select:focus {
  outline: none;
}
.select-wrapper select option {
  color: #000;
}
.select-wrapper .select-arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}

.section-title {
  font-size: 6rem;
  font-weight: 500;
  color: #361C1C;
  line-height: 1.2;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 6.5rem;
  }
}
@media (max-width: 767px) {
  .section-title {
    font-size: 3rem;
    line-height: 1.2;
  }
  .section-title ~ p {
    font-size: 1.6rem;
  }
}

.breadcrumbs {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.breadcrumbs .list {
  display: flex;
}
.breadcrumbs .list .item > a {
  font-size: 1.2rem;
  color: #A9A;
}
.breadcrumbs .list .item.-current > a {
  color: #151515;
}
.breadcrumbs .list .item > span {
  margin: 0 0.8rem;
}

.checkout {
  margin-bottom: 10rem;
}
.checkout .title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.4;
}
.checkout .subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  color: #A9A9A9;
  margin-bottom: 2rem;
}
.checkout .checkout-products .product {
  border: 1px solid #D1D1D1;
  border-radius: 1.2rem;
  padding: 2.6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .checkout .checkout-products .product {
    gap: 0;
    flex-direction: row;
  }
}
.checkout .checkout-products .product .product-image {
  width: 10rem;
  border-radius: 1.2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .checkout .checkout-products .product .name {
    margin-left: 1.6rem;
  }
}
.checkout .checkout-products .product .name .title {
  font-size: 1.5rem;
  font-weight: 500;
}
.checkout .checkout-products .product .attributes {
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) {
  .checkout .checkout-products .product .attributes {
    margin-left: auto;
  }
}
.checkout .checkout-products .product .attributes .attribute {
  font-size: 1.2rem;
  font-weight: 400;
  color: #A9A9A9;
}
.checkout .checkout-products .product .attributes .attribute span:last-child {
  color: #151515;
}
.checkout .checkout-products .product .price {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .checkout .checkout-products .product .price {
    margin-left: 8.6rem;
  }
}
.checkout .checkout-products .product .price .old-price {
  color: #A9A9A9;
  text-decoration: line-through;
  margin-right: 1rem;
}
.checkout .checkout-products .product .price .sale-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0075FF;
  text-decoration: none;
}
@media (min-width: 768px) {
  .checkout .checkout-products .product .select-wrapper {
    margin-left: 5.5rem;
  }
}
.checkout .checkout-products .product .btn-remove {
  background-color: transparent;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  color: #A9A9A9;
}
@media (min-width: 768px) {
  .checkout .checkout-products .product .btn-remove {
    margin-left: auto;
  }
}
.checkout .checkout-products .product .btn-remove svg {
  margin-right: 0.5rem;
}
.checkout .checkout-products .btn-payment {
  margin-left: auto;
  background: #0075FF;
  border-color: #015BC6;
  border-width: 2px;
  border-radius: 12px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  letter-spacing: 0.02em;
  padding-left: 4.4rem;
  padding-right: 4.4rem;
}
.checkout .checkout-products .btn-payment:hover {
  background: #015BC6;
  border-color: #015BC6;
}