.text-preset-1 {
  font-size: 44px;
  line-height: 48px;
  letter-spacing: 0px;
  font-weight: 700;
}

.text-preset-2 {
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0px;
  font-weight: 700;
}

.text-preset-3-bold {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 700;
}

.text-preset-3-regular {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
}

.text-preset-4 {
  font-size: 15px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 400;
}

.text-preset-5 {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 2px;
  font-weight: 700;
}

.text-preset-6 {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 1.85px;
  font-weight: 700;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.header_container {
  display: flex;
  align-items: center;
}
.header_perfil {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.header_perfil:hover {
  outline: 2px solid #FF7E1B;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .header_perfil {
    width: 50px;
    height: 50px;
    margin-left: 48px;
  }
}
.header_carro {
  margin-right: 24px;
  cursor: pointer;
}
.header_logo {
  margin-left: 16px;
}
.header_menu {
  cursor: pointer;
}
@media (min-width: 1220px) {
  .header_menu {
    display: none;
  }
}
.header_categories {
  display: none;
}
@media (min-width: 1220px) {
  .header_categories {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }
  .header_categories a {
    text-decoration: none;
    color: #69707D;
    cursor: pointer;
  }
}
@media (min-width: 1220px) {
  .header-logo {
    display: flex;
    gap: 56px;
    align-items: center;
  }
}

.hr {
  display: none;
}
@media (min-width: 768px) {
  .hr {
    display: block;
    margin-top: 32px;
    margin-bottom: 48px;
  }
}
@media (min-width: 1220px) {
  .hr {
    display: block;
    margin-top: 32px;
    margin-bottom: 96 px;
  }
}

.cart {
  padding: 24px;
  border-radius: 10px;
  position: absolute;
  top: 80px;
  right: 20px;
  z-index: 1;
  background-color: white;
  width: 80%;
  height: 220px;
  box-shadow: 0 8px 12px 10px rgba(105, 112, 125, 0.1);
}
.cart hr {
  color: #E4E9F2;
}
@media (min-width: 768px) {
  .cart {
    width: 45%;
    right: 20px;
    top: 100px;
  }
}
@media (min-width: 1220px) {
  .cart {
    width: 25%;
    right: 75px;
  }
}
.cart_title {
  color: #1D2026;
  margin-left: 12px;
  margin-right: 12px;
  margin-bottom: 23px;
}
.cart_aviso {
  color: #69707D;
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
.cart_producto {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  margin-top: 24px;
}
.cart_producto-img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}
.cart_producto-nombre {
  color: #69707D;
}
.cart_producto-price {
  display: flex;
  gap: 8px;
}
.cart_producto-cantidad {
  color: #69707D;
}
.cart_producto-total {
  color: #1D2026;
}
.cart_producto-button {
  background-color: #FF7E1B;
  border-radius: 10px;
  padding: 16px;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  border: none;
}
.cart_producto-eliminar {
  position: absolute;
  width: 16px;
  height: 18px;
  right: 40px;
  top: 118px;
  cursor: pointer;
}

.noti {
  background-color: #FF7E1B;
  width: 19px;
  height: 13px;
  border-radius: 7px;
  color: white;
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  right: 65px;
  top: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .noti {
    right: 190px;
    top: 40px;
  }
}
@media (min-width: 1220px) {
  .noti {
    right: 280px;
  }
}

@media (min-width: 1220px) {
  .main_producto {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.main_producto-img {
  width: 375px;
  height: 300px;
  position: relative;
  right: 24px;
  margin-bottom: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .main_producto-img {
    width: 100%;
    height: 290px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 65%;
       object-position: center 65%;
    border-radius: 15px;
    position: static;
    margin-bottom: 48px;
  }
}
@media (min-width: 1220px) {
  .main_producto-img {
    width: 448px;
    height: 445px;
  }
}
.main_producto .flecha-izq {
  width: 40px;
  height: 40px;
  background-color: white;
  position: absolute;
  left: 15px;
  top: 200px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .main_producto .flecha-izq {
    left: 95px;
    top: 270px;
  }
}
@media (min-width: 1220px) {
  .main_producto .flecha-izq {
    display: none;
  }
}
.main_producto .flecha-izq #left {
  position: relative;
  top: 11px;
  left: 13px;
}
.main_producto .flecha-der {
  width: 40px;
  height: 40px;
  background-color: white;
  position: absolute;
  right: 15px;
  top: 200px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .main_producto .flecha-der {
    right: 95px;
    top: 270px;
  }
}
@media (min-width: 1220px) {
  .main_producto .flecha-der {
    display: none;
  }
}
.main_producto .flecha-der #right {
  position: relative;
  top: 11px;
  left: 13px;
}
.main_producto-carrusell {
  display: none;
}
@media (min-width: 1220px) {
  .main_producto-carrusell {
    display: flex;
    gap: 32px;
  }
  .main_producto-carrusell-img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main_producto-carrusell-img:hover {
    border: 2px solid #FF7E1B;
    opacity: 50%;
  }
}
.main_info-subtitle {
  color: #69707D;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .main_info-subtitle {
    margin-bottom: 24px;
  }
}
.main_info-title {
  color: #1D2026;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .main_info-title {
    margin-bottom: 24px;
  }
}
.main_info-description {
  color: #69707D;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .main_info-description {
    margin-bottom: 24px;
  }
}
.main_info-price {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .main_info-price {
    display: block;
    margin-bottom: 24px;
  }
}
.main_info-price-container {
  display: flex;
  gap: 16px;
}
@media (min-width: 768px) {
  .main_info-price-container {
    gap: 24px;
  }
}
.main_info-price-number {
  color: #1D2026;
}
.main_info-price-descuento {
  background-color: #1D2026;
  color: white;
  padding: 3px 10px;
  border-radius: 6px;
}
.main_info-price-anterior {
  color: #69707D;
  text-decoration: line-through;
}
@media (min-width: 768px) {
  .main_info-price-anterior {
    margin-top: 8px;
  }
}
@media (min-width: 768px) {
  .main_info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1220px) {
  .main_info-container {
    grid-template-columns: 0.5fr 1fr;
    gap: 16px;
  }
}
.main_info-cantidad {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F6F8FD;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .main_info-cantidad {
    margin: 0;
  }
}
.main_info-cantidad .menos {
  width: 13px;
  height: 4px;
  cursor: pointer;
}
.main_info-cantidad .mas {
  width: 13px;
  height: 13px;
  cursor: pointer;
}
.main_info-cantidad-number {
  color: #1D2026;
}
.main_info-carro {
  display: flex;
  gap: 16px;
  background-color: #FF7E1B;
  border-radius: 10px;
  padding: 16px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 5px rgba(228, 233, 242, 0.3);
  margin-bottom: 70px;
  cursor: pointer;
}
.main_info-carro:hover {
  background-color: #FFAB6A;
}
@media (min-width: 768px) {
  .main_info-carro {
    margin: 0;
  }
}
.main_info-carro .carro {
  width: 18px;
  height: 16px;
  color: #1D2026;
}
.main_info-carro-add {
  color: #1D2026;
}

@media (min-width: 1220px) {
  .container {
    margin-right: 45px;
    margin-left: 45px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 128px;
  }
  .container_info {
    margin-top: 67px;
    max-width: 445px;
  }
}

.menu {
  background-color: white;
  height: 100vh;
  width: 50%;
  position: fixed;
  left: 0;
  top: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 56px;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
@media (min-width: 768px) {
  .menu {
    padding: 48px 80px;
    width: 20%;
  }
}
.menu_cerrar {
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.menu_secciones {
  color: #1D2026;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}

.menu.activo {
  transform: translateX(0);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.overlay.activo {
  display: block;
}

.vista_previa {
  display: none;
}
@media (min-width: 1220px) {
  .vista_previa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999;
    position: absolute;
    top: 90px;
    right: 445px;
  }
  .vista_previa-img {
    width: 550px;
    height: 550px;
    border-radius: 15px;
    margin-top: 24px;
    margin-bottom: 40px;
  }
  .vista_previa-carrusell {
    display: flex;
    gap: 32px;
  }
  .vista_previa-carrusell-img {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.3s ease;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .vista_previa-carrusell-img:hover {
    border: 2px solid #FF7E1B;
    opacity: 50%;
  }
}

.cerrar_producto {
  position: relative;
  right: -260px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.galleryOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 998;
  display: none;
}

.galleryOverlay.activo {
  display: block;
}

.right {
  width: 56px;
  height: 56px;
  background-color: white;
  position: absolute;
  right: -25px;
  top: 260px;
  border-radius: 50%;
  cursor: pointer;
}
.right #arrow-right {
  width: 18px;
  height: 18px;
  position: relative;
  top: 18px;
  left: 21px;
}

.left {
  width: 56px;
  height: 56px;
  background-color: white;
  position: absolute;
  left: -25px;
  top: 260px;
  border-radius: 50%;
  cursor: pointer;
}
.left #arrow-left {
  width: 18px;
  height: 18px;
  position: relative;
  top: 19px;
  left: 18px;
}
.left img {
  position: relative;
  top: 18px;
  left: 20px;
}

.right:hover svg {
  color: #FF7E1B;
}

.left:hover svg {
  color: #FF7E1B;
}

.cerrar_producto {
  color: white;
}

.close:hover svg {
  color: #FF7E1B;
}

html * {
  margin: 0;
}

body {
  overflow-x: hidden;
  font-family: "Kumbh Sans", sans-serif;
  margin: 20px 24px;
  z-index: 0;
}
@media (min-width: 768px) {
  body {
    margin: 28px 80px;
  }
}
@media (min-width: 1220px) {
  body {
    margin: 28px 165px 128px 165px;
  }
}/*# sourceMappingURL=style.css.map */