@charset "UTF-8";
@font-face {
  font-family: "Glamore";
  src: url("./fonts/Glamore/Glamore-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Salma-alfasans";
  src: url("./fonts/Salma-alfasans/SalmaAlfasans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Salma-alfasans";
  src: url("./fonts/Salma-alfasans/SalmaAlfasans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg-color-green: #2BD6BA;
  --bg-color-blue: #4988DE;
  --bg-color-blueblack: #242F40;
  --bg-color-white: #fff;
  --bg-color-gradient-green-blue: linear-gradient(180deg, #2BD6BA 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-blue: linear-gradient(180deg, #000 0%, #4988DE 100%);
  --bg-color-gradient-blueblack-green: linear-gradient(180deg, #242F40 0%, #2BD6BA 100%);
  --header-height: 100px;
}
@media (max-width: 1050px) {
  :root {
    --header-height: 68px;
  }
}

*,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Salma-alfasans", sans-serif;
}

/*
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-gutter: stable;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}
  */
li {
  list-style: none;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.color-white {
  color: white;
}

.shadow {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.3);
}
.shadow-1 {
  box-shadow: 0px 4.492px 4.492px 0px rgba(0, 0, 0, 0.1);
}

.w-100 {
  width: 100%;
}
.w-full {
  width: 100vw;
}
.wh-100 {
  width: 100%;
  height: 100%;
}
.wh-full {
  width: 100vw;
  height: calc(100vh - 140px);
}

.h-100 {
  height: 100%;
}
.h-full {
  height: calc(100vh - 140px);
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}

.flex {
  display: flex;
}
.flex.col {
  flex-direction: column;
}
.flex.row {
  flex-direction: row;
}
.flex.around {
  justify-content: space-around;
}
.flex.between {
  justify-content: space-between;
}
.flex.evenly {
  justify-content: space-evenly;
}
.flex-1 {
  flex: 1;
}
.flex.wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
}

.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-5 {
  gap: 5rem;
}

.center {
  justify-content: center;
  align-items: center;
}
.center-x {
  justify-content: center;
}
.center-y {
  align-items: center;
}

.start {
  justify-content: flex-start;
  align-items: flex-start;
}
.start-x {
  justify-content: flex-start;
}
.start-y {
  align-items: flex-start;
}

.end {
  justify-content: flex-end;
  align-items: flex-end;
}
.end-x {
  justify-content: flex-end;
}
.end-y {
  align-items: flex-end;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.3;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}
#overlay.active {
  opacity: 0.3;
}

.hidden {
  display: none;
}

.contenedor {
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}

section {
  width: 100%;
  min-height: 85vh;
  padding: 2.5rem 0;
}

.cabecera {
  position: sticky;
  top: 0;
  z-index: 100;
}
.cabecera .bannerPublicidad {
  background-color: #F3F1EA;
  width: 100%;
  max-width: 100%;
  padding: 5px 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
  max-height: 100px;
  opacity: 1;
}
.cabecera .bannerPublicidad.is-closing {
  max-height: 0;
  padding: 0;
  opacity: 0;
}
.cabecera .bannerPublicidad.is-closed {
  display: none;
}
.cabecera .bannerPublicidad .contenedor {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .cabecera .bannerPublicidad .contenedor {
    font-size: 12px;
  }
}
.cabecera .bannerPublicidad .contenedor .publicidad {
  font-weight: 300;
  display: flex;
  gap: 5px;
}
.cabecera .bannerPublicidad .contenedor .publicidad strong {
  font-weight: 700;
}
.cabecera .bannerPublicidad .contenedor .btn-publicidad {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: opacity 0.2s ease;
}
.cabecera .bannerPublicidad .contenedor .btn-publicidad:hover {
  opacity: 0.7;
}
.cabecera .logo {
  background: white;
  padding: 15px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
@media (max-width: 768px) {
  .cabecera .logo {
    padding: 15px 0;
    flex-direction: column;
  }
}
.cabecera .logo .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: visible;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor .buscador {
    display: none;
  }
}
.cabecera .logo .contenedor .buscador .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  position: relative;
}
.cabecera .logo .contenedor .buscador .search-form::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1D1D1D;
  transition: width 0.5s ease-in-out;
}
.cabecera .logo .contenedor .buscador .search-form.is-active::after {
  width: 100%;
}
.cabecera .logo .contenedor .buscador .search-form .search-submit {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cabecera .logo .contenedor .buscador .search-form .search-field {
  border: none;
  outline: none;
  flex: 1;
}
.cabecera .logo .contenedor .logo-principal {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor .logo-principal {
    width: 135px;
    height: 35px;
  }
}
.cabecera .logo .contenedor .logo-principal a {
  display: flex;
  width: 100%;
  height: auto;
}
.cabecera .logo .contenedor .logo-principal a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.cabecera .logo .contenedor .menu-opciones {
  display: flex;
  gap: 25px;
  position: relative;
  z-index: 1001;
  overflow: visible;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor .menu-opciones {
    gap: 20px;
  }
}
.cabecera .logo .contenedor .menu-opciones .buscador-mobile {
  display: none;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor .menu-opciones .buscador-mobile {
    display: block;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}
.cabecera .logo .contenedor .menu-opciones button {
  position: relative;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
}
.cabecera .logo .contenedor .menu-opciones button svg {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor .menu-opciones button {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
  }
  .cabecera .logo .contenedor .menu-opciones button svg {
    width: 100% !important;
    height: 100% !important;
    min-width: 20px !important;
    min-height: 20px !important;
  }
}
.cabecera .logo .contenedor .menu-opciones button .cart-count-badge {
  position: absolute;
  top: -11px;
  right: -13px;
  background: #9B6F4D;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  z-index: 1004;
  min-width: 18px;
}
.cabecera .logo .contenedor .menu-opciones button .tooltip {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  display: inline-flex;
  padding: 3px 7px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #F3F1EA;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(5px);
  pointer-events: none;
  z-index: 1003;
}
.cabecera .logo .contenedor .menu-opciones button .tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #000;
}
.cabecera .logo .contenedor .menu-opciones button:hover svg {
  opacity: 0.7;
}
.cabecera .logo .contenedor .menu-opciones button:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.cabecera .logo .contenedor .menu-opciones .menu {
  height: 0;
  width: 0;
  overflow: hidden;
  transform: translate(0);
  transition: height 0.3s ease-in-out;
  display: none;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor .menu-opciones .menu {
    height: 100% !important;
    width: 100% !important;
    display: block !important;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger {
    position: relative;
    width: 23px;
    height: 20px;
    background: transparent;
    cursor: pointer;
    display: block;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger input {
    display: none;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: black;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger span:nth-of-type(1) {
    top: 0px;
    transform-origin: left center;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
    transform-origin: left center;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger span:nth-of-type(3) {
    top: 100%;
    transform-origin: left center;
    transform: translateY(-100%);
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger input:checked ~ span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 0px;
    left: 0px;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger input:checked ~ span:nth-of-type(2) {
    width: 0%;
    opacity: 0;
  }
  .cabecera .logo .contenedor .menu-opciones .menu .burger input:checked ~ span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 17px;
    left: 0px;
  }
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor.search-mobile-open .contenedor .menu-opciones .buscador-mobile {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.cabecera .logo .contenedor-mobile {
  display: none;
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  transform: translate(0);
  transition: all 0.5s;
}
@media (max-width: 768px) {
  .cabecera .logo .contenedor-mobile {
    display: block;
  }
  .cabecera .logo .contenedor-mobile.is-open {
    height: var(--target-height);
  }
}
.cabecera .logo .contenedor-mobile .buscador-mobile-oculto {
  padding-top: 10px;
}
.cabecera .logo .contenedor-mobile .buscador-mobile-oculto .search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  position: relative;
}
.cabecera .logo .contenedor-mobile .buscador-mobile-oculto .search-form::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #1D1D1D;
  transition: width 0.5s ease-in-out;
}
.cabecera .logo .contenedor-mobile .buscador-mobile-oculto .search-form.is-active::after {
  width: 100%;
}
.cabecera .logo .contenedor-mobile .buscador-mobile-oculto .search-form .search-submit {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.cabecera .logo .contenedor-mobile .buscador-mobile-oculto .search-form .search-field {
  border: none;
  outline: none;
  flex: 1;
}
.cabecera .menu-principal {
  background: black;
  padding: 10px 50px;
  max-height: 200px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out, transform 0.3s ease-out, visibility 0.3s ease-out;
  transform: translateY(0);
  visibility: visible;
  will-change: max-height, opacity, transform;
}
@media (max-width: 768px) {
  .cabecera .menu-principal {
    display: none;
  }
}
.cabecera .menu-principal .contenedor .menu-categorias {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.cabecera .menu-principal .contenedor .menu-categorias__item a {
  position: relative;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cabecera .menu-principal .contenedor .menu-categorias__item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: white;
  transition: width 0.5s ease-in-out;
}
.cabecera .menu-principal .contenedor .menu-categorias__item a:hover::after {
  width: 100%;
}
.cabecera .contenedor-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  background: white;
  padding: 15px 50px;
  border-top: 1px solid #e0e0e0;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  z-index: 99;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.cabecera .contenedor-menu.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 768px) {
  .cabecera .contenedor-menu {
    display: none !important;
  }
}
.cabecera .contenedor-menu .contenedor {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cabecera .contenedor-menu .contenedor .menu-categorias {
  flex: 0 0 auto;
  min-width: 200px;
}
.cabecera .contenedor-menu .contenedor .menu-categorias ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cabecera .contenedor-menu .contenedor .menu-categorias__item {
  position: relative;
}
.cabecera .contenedor-menu .contenedor .menu-categorias__item a {
  color: #1D1D1D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  transition: color 0.3s ease;
  display: block;
  padding: 5px 10px;
}
.cabecera .contenedor-menu .contenedor .menu-categorias__item a:hover {
  color: #9B6F4D;
}
.cabecera .contenedor-menu .contenedor .menu-categorias__item.active a {
  color: #9B6F4D;
  background-color: #F3F1EA;
  border-radius: 4px;
}
.cabecera .contenedor-menu .contenedor .menu-categorias__item .category-image-data {
  display: none;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
  border-left: 1px solid #1D1D1D;
  height: 100%;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-titulo {
  font-size: 14px;
  font-weight: 700;
  color: #1D1D1D;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-titulo {
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  color: #1D1D1D;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item {
  margin: 0;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item a {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1D1D1D;
  transition: width 0.5s ease-in-out;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item a:hover::after {
  width: 100%;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-ver-todos {
  color: #000;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 18px;
  transition: opacity 0.3s ease;
  display: inline-block;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-lista .subcategoria-item {
  color: #1D1D1D;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: color 0.3s ease;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .subcategorias-lista .subcategoria-item:hover {
  color: #9B6F4D;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .ver-todos {
  color: #9B6F4D;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
  transition: opacity 0.3s ease;
}
.cabecera .contenedor-menu .contenedor .menu-subcategorias .subcategorias-contenido .ver-todos:hover {
  opacity: 0.7;
}
.cabecera .contenedor-menu .contenedor .imagen-categoria {
  flex: 0 0 auto;
  width: 282px;
  height: 328px;
  overflow: hidden;
  border-radius: 4px;
}
.cabecera .contenedor-menu .contenedor .imagen-categoria .imagen-categoria-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: none;
}
.cabecera.active .menu-principal {
  max-height: 0;
  opacity: 0;
  padding: 0 50px;
  transform: translateY(-10px);
  visibility: hidden;
  pointer-events: none;
}
.cabecera.active .logo {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.05);
  padding: 15px 50px !important;
}
@media (max-width: 768px) {
  .cabecera.active .logo {
    padding: 15px 0 !important;
  }
}
.cabecera.active .logo .contenedor {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}
.cabecera.active .logo .menu-opciones {
  display: flex !important;
  gap: 25px !important;
}
@media (max-width: 768px) {
  .cabecera.active .logo .menu-opciones {
    gap: 20px !important;
  }
}
.cabecera.active .logo .menu-opciones button {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
}
.cabecera.active .logo .menu-opciones button svg {
  width: 100% !important;
  height: 100% !important;
  min-width: 20px !important;
  min-height: 20px !important;
}
.cabecera.active .logo .menu {
  height: 100% !important;
  width: 100% !important;
  display: block !important;
}
.cabecera.active .logo .menu .burger {
  position: relative;
  width: 23px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  display: block;
}
.cabecera.active .logo .menu .burger input {
  display: none;
}
.cabecera.active .logo .menu .burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: black;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.cabecera.active .logo .menu .burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}
.cabecera.active .logo .menu .burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}
.cabecera.active .logo .menu .burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}
.cabecera.active .logo .menu .burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 0px;
}
.cabecera.active .logo .menu .burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;
}
.cabecera.active .logo .menu .burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 17px;
  left: 0px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none;
}
@media (max-width: 768px) {
  .mobile-overlay {
    display: block;
  }
}
.mobile-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 245px;
  height: 100dvh;
  background: white;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: none;
}
@media (max-width: 768px) {
  .mobile {
    display: block;
  }
}
.mobile.is-open {
  transform: translateX(0);
}
.mobile .mobile-cerrar-btn {
  position: absolute;
  top: 30px;
  right: 15px;
  background: none;
  border: none;
  color: #1D1D1D;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 10;
}
.mobile .mobile-cerrar-btn svg {
  width: 24px;
  height: 24px;
}
.mobile .mobile-cerrar-btn:hover {
  opacity: 0.7;
}
.mobile.subcategorias-active > .mobile-cerrar-btn:first-child {
  display: none;
}
.mobile .mobile-vista {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background: white;
  overflow: hidden;
}
.mobile .mobile-vista.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20px);
}
.mobile .mobile-vista-categorias {
  z-index: 1;
}
.mobile .mobile-vista-subcategorias {
  z-index: 2;
  transform: translateX(100%);
}
.mobile .mobile-vista-subcategorias.is-active {
  transform: translateX(0);
}
.mobile .mobile-subcategorias-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  padding: 60px 20px 30px 20px;
  position: relative;
  margin-bottom: 105px;
}
.mobile .mobile-subcategorias-wrapper .mobile-cerrar-btn {
  position: absolute;
  top: 30px;
  right: 15px;
  background: none;
  border: none;
  color: #1D1D1D;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 11;
}
.mobile .mobile-subcategorias-wrapper .mobile-cerrar-btn svg {
  width: 24px;
  height: 24px;
}
.mobile .mobile-subcategorias-wrapper .mobile-cerrar-btn:hover {
  opacity: 0.7;
}
.mobile .mobile-subcategorias-header {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}
.mobile .mobile-subcategorias-header .mobile-volver-btn {
  background: none;
  border: none;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.3s ease;
}
.mobile .mobile-subcategorias-header .mobile-volver-btn:hover {
  opacity: 0.7;
}
.mobile .mobile-categoria-activa {
  padding: 5px 10px;
  background: #F3F1EA;
  margin-bottom: 5px;
}
.mobile .mobile-categoria-activa .mobile-categoria-activa-nombre {
  color: #9B6F4D;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mobile .mobile-categoria-activa .mobile-categoria-activa-nombre svg {
  width: 5px;
  height: 9px;
  flex-shrink: 0;
}
.mobile .mobile-categoria-activa .mobile-categoria-activa-nombre svg path {
  fill: #9B6F4D;
}
.mobile .contenido {
  flex: 1;
  padding: 60px 20px 100px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}
.mobile .contenido h2 {
  font-size: 18px;
  font-weight: 600;
  color: #1D1D1D;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
.mobile .contenido .menu-categorias ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mobile .contenido .menu-categorias__item:last-child {
  border-bottom: none;
}
.mobile .contenido .menu-categorias__item a {
  color: #1D1D1D;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  transition: color 0.3s ease;
}
.mobile .contenido .menu-categorias__item a svg.flecha-icon {
  width: 5px;
  height: 9px;
  flex-shrink: 0;
}
.mobile .contenido .menu-categorias__item a:hover {
  color: #9B6F4D;
}
.mobile .mobile-subcategorias {
  flex: 1;
  padding: 0 15px;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile .mobile-subcategorias::-webkit-scrollbar {
  display: none;
}
.mobile .mobile-subcategorias .custom-scrollbar {
  position: fixed;
  left: 90%;
  width: 3px;
  background: #E5E5E5;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10001;
}
.mobile .mobile-subcategorias .custom-scrollbar.visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile .mobile-subcategorias .custom-scrollbar .scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 20px;
  background: #1D1D1D;
  border-radius: 2px;
  cursor: grab;
  transition: background 0.2s ease;
}
.mobile .mobile-subcategorias .custom-scrollbar .scrollbar-thumb:hover {
  background: #000;
}
.mobile .mobile-subcategorias .custom-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna {
  width: 100%;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-titulo {
  color: #9B6F4D;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item {
  margin: 0;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item a {
  color: #1D1D1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-productos .subcategoria-producto-item a:hover {
  color: #9B6F4D;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-ver-todos {
  color: #000;
  font-size: 13px;
  font-style: italic;
  font-weight: 300;
  line-height: 18px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  display: inline-block;
}
.mobile .mobile-subcategorias .subcategorias-contenido .subcategorias-columnas .subcategoria-columna .subcategoria-ver-todos:hover {
  opacity: 0.7;
}
.mobile .redes-sociales-mobile {
  padding: 0 20px 20px 20px;
  background: white;
  flex-shrink: 0;
  position: fixed;
  bottom: 0;
  left: auto;
  right: 0;
  width: 100%;
  max-width: 245px;
  z-index: 10000;
}
.mobile .redes-sociales-mobile h3 {
  color: #1D1D1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin: 0 0 15px 0;
}
.mobile .redes-sociales-mobile .redes-sociales-links {
  display: flex;
  gap: 25px;
  align-items: center;
}
.mobile .redes-sociales-mobile .redes-sociales-links a {
  display: flex;
}
.mobile .redes-sociales-mobile .redes-sociales-links a img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.mobile .redes-sociales-mobile .redes-sociales-links a:hover {
  opacity: 0.7;
}

.pie-pagina {
  border-top: 1px solid #E7D7C7;
  background: #FFF;
  display: flex;
  flex-direction: column;
  padding: 50px 50px 20px 50px;
  gap: 25px;
}
@media (max-width: 768px) {
  .pie-pagina {
    padding: 50px 0 20px 0;
  }
}
.pie-pagina .contenedor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}
.pie-pagina .contenedor .izquierda {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 396px;
}
.pie-pagina .contenedor .izquierda .logo {
  max-width: 250px;
}
.pie-pagina .contenedor .izquierda .logo a {
  width: 100%;
  height: auto;
}
.pie-pagina .contenedor .izquierda .logo a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.pie-pagina .contenedor .izquierda .redes-sociales {
  display: flex;
  gap: 25px;
}
.pie-pagina .contenedor .izquierda .redes-sociales a {
  display: flex;
}
.pie-pagina .contenedor .izquierda .redes-sociales a:hover svg rect {
  fill: black;
  stroke: black;
}
.pie-pagina .contenedor .izquierda .redes-sociales a:hover svg path {
  fill: white;
}
.pie-pagina .contenedor .derecha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .pie-pagina .contenedor .derecha {
    gap: 50px;
  }
}
.pie-pagina .contenedor .derecha .lista-menu {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pie-pagina .contenedor .derecha .lista-menu p {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.pie-pagina .contenedor .derecha .lista-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pie-pagina .contenedor .derecha .lista-menu ul li a {
  color: #1D1D1D;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.pie-pagina .contenedor .derecha .lista-menu ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1D1D1D;
  transition: width 0.5s ease-in-out;
}
.pie-pagina .contenedor .derecha .lista-menu ul li a:hover {
  color: #9B6F4D;
}
.pie-pagina .contenedor .derecha .lista-menu ul li a:hover::after {
  width: 100%;
}
.pie-pagina .contenedor .derecha .menu-categorias {
  min-width: 151px;
}
.pie-pagina .pie-pagina-inferior .contenedor {
  padding: 15px 0 20px;
  border-top: 1px solid #1D1D1D;
  gap: 15px;
  justify-content: space-between;
}

.whatsapp-button {
  display: flex;
  position: fixed;
  right: 1rem;
  z-index: 999;
  bottom: 2rem;
}

.card-producto {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.card-producto__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card-producto__imagen {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 404px;
  overflow: hidden;
  background: #F3F1EA;
}
.card-producto__imagen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: opacity 0.3s ease;
}
.card-producto__imagen-principal {
  opacity: 1;
  z-index: 1;
}
.card-producto__imagen-hover {
  opacity: 0;
  z-index: 2;
}
.card-producto__categoria {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  padding: 5px 8px;
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  z-index: 3;
}
.card-producto .btn-favorito {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}
.card-producto .btn-favorito .ti_card_product__wishlist {
  position: relative;
}
.card-producto .btn-favorito .yith-wcwl-add-to-wishlist {
  position: relative;
}
.card-producto .btn-favorito .yith-wcwl-add-to-wishlist a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.card-producto .btn-favorito .yith-wcwl-add-to-wishlist a:hover {
  transform: scale(1.1);
}
.card-producto .btn-favorito .yith-wcwl-add-to-wishlist svg {
  width: 24px;
  height: 24px;
  display: block;
}
.card-producto .btn-favorito .yith-wcwl-add-button.hidden,
.card-producto .btn-favorito .yith-wcwl-wishlistaddedbrowse.hidden {
  display: none;
}
.card-producto .btn-favorito .yith-wcwl-add-button.show,
.card-producto .btn-favorito .yith-wcwl-wishlistaddedbrowse.show {
  display: block;
}
.card-producto .btn-favorito .loading {
  opacity: 0.6;
  pointer-events: none;
}
.card-producto__contenido {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  padding: 0 10px;
  gap: 6px;
  min-height: 80px;
}
.card-producto__descuento {
  display: inline-block;
  display: flex;
  padding: 1px 6px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  align-self: flex-start;
  min-height: 20px;
}
.card-producto__nombre {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #1D1D1D;
  line-height: 1.4;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}
.card-producto__precio {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 23px;
}
.card-producto__precio-regular {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  text-decoration-line: line-through;
  order: 2;
}
.card-producto__precio-actual {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  order: 1;
}
.card-producto:hover .card-producto__imagen-principal {
  opacity: 0;
}
.card-producto:hover .card-producto__imagen-hover {
  opacity: 1;
}

.banner {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
  padding: 97px 0;
  background-image: var(--banner-desktop);
}
@media (max-width: 768px) {
  .banner {
    background-image: var(--banner-mobile);
  }
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #FFF 24.04%, rgba(255, 255, 255, 0) 77.88%);
  z-index: 1;
  top: 0;
  bottom: 0;
  pointer-events: none;
}
.banner .contenedor {
  position: relative;
  z-index: 1;
}
.banner .contenedor .contenido {
  max-width: 31.25rem;
}
.banner .contenedor .contenido .titulo-banner {
  color: #000;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 5px;
}
.banner .contenedor .contenido .parrafo-banner {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 30px;
}
.banner .contenedor .contenido .boton-banner {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--1, #F3F1EA);
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
}
.banner .contenedor .contenido .boton-banner:hover {
  background: #2C2C2C;
}

.banner-paginas {
  min-height: auto;
  padding: 0;
  position: relative;
}
.banner-paginas::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mix-blend-mode: multiply;
}
.banner-paginas picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.banner-paginas picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-paginas .contenedor {
  z-index: 3;
  min-height: 145px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding-bottom: 20px;
}
.banner-paginas .contenedor .banner-paginas__titulo {
  color: #F3F1EA;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
.banner-paginas .contenedor .banner-paginas__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #F3F1EA;
  font-size: 10px;
}
.banner-paginas .contenedor .banner-paginas__breadcrumb a {
  color: #F3F1EA;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
}
.banner-paginas .contenedor .banner-paginas__breadcrumb span {
  color: #F3F1EA;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

.card-post {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.card-post__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card-post__imagen {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 302px;
  overflow: hidden;
  background: #F3F1EA;
}
.card-post__imagen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: all 0.5s ease;
}
.card-post__imagen-principal {
  opacity: 1;
  z-index: 1;
}
.card-post__contenido {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  height: 50%;
  transition: all 0.5s ease;
  padding: 84px 16px 18px 16px;
  bottom: 0;
  z-index: 2;
}
.card-post .post-ocultar {
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.card-post__titulo {
  color: #F3F1EA;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 5px;
}
.card-post__excerpt {
  color: #F3F1EA;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 15px;
}
.card-post__button {
  display: flex;
  justify-content: start;
}
.card-post__button .btn-leer-mas {
  display: flex;
  padding: 5px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: white;
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  text-decoration: none;
}
.card-post__button .btn-leer-mas:hover {
  background: #DEDEDE;
}
.card-post:hover .card-post__contenido {
  height: 100%;
}
.card-post:hover .card-post__contenido .post-ocultar {
  height: var(--target-height);
  overflow: visible;
}
.card-post:hover .card-post__imagen img {
  transform: scale(1.1);
}

.aside-carrito {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 429px;
  height: 100dvh;
  background-color: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .aside-carrito {
    max-width: 329px;
  }
}
.aside-carrito.is-open {
  transform: translateX(0);
}
.aside-carrito .contenido {
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding: 50px 30px 0 30px;
}
.aside-carrito .contenido h2 {
  color: #1D1D1D;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}
.aside-carrito .contenido .btn-cerrar-carrito {
  cursor: pointer;
}
.aside-carrito .productos {
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  padding: 0 30px;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.aside-carrito .productos::-webkit-scrollbar {
  display: none;
}
.aside-carrito .productos .custom-scrollbar {
  position: fixed;
  width: 3px;
  background: #E5E5E5;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 9999;
}
.aside-carrito .productos .custom-scrollbar.visible {
  opacity: 1;
  pointer-events: auto;
}
.aside-carrito .productos .custom-scrollbar .scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 20px;
  background: #1D1D1D;
  border-radius: 2px;
  cursor: grab;
  transition: background 0.2s ease;
}
.aside-carrito .productos .custom-scrollbar .scrollbar-thumb:hover {
  background: #000;
}
.aside-carrito .productos .custom-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
}
.aside-carrito .productos .producto {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  margin-right: 15px;
  border-bottom: 1px solid #E5E5E5;
  position: relative;
}
.aside-carrito .productos .producto:last-child {
  border-bottom: none;
}
.aside-carrito .productos .producto .producto-imagen {
  flex-shrink: 0;
  max-width: 84px;
  height: 109px;
  aspect-ratio: 84/109;
  overflow: hidden;
  position: relative;
}
.aside-carrito .productos .producto .producto-imagen .cantidad-producto {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: 20px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background: #1D1D1D;
  color: #FFF;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}
.aside-carrito .productos .producto .producto-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aside-carrito .productos .producto .producto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.aside-carrito .productos .producto .producto-info .producto-nombre {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  margin: 0;
  margin-right: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aside-carrito .productos .producto .producto-info .producto-atributos {
  color: #000;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.aside-carrito .productos .producto .producto-info .producto-atributos .producto-atributo-item {
  display: block;
}
.aside-carrito .productos .producto .producto-info .producto-atributos .producto-atributo-item strong {
  font-weight: 700;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  flex-wrap: wrap;
  gap: 15px;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad {
  display: flex;
  align-items: center;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-btn {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E4E4E4;
  border: 1px solid #E4E4E4;
  cursor: pointer;
  padding: 0;
  color: #1D1D1D;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-btn svg {
  width: 16px;
  height: 16px;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-btn:hover {
  background: #D0D0D0;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-btn:hover svg path {
  stroke: #000;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-input {
  width: 25px;
  text-align: center;
  border: none;
  background: transparent;
  color: #1D1D1D;
  border: 1px solid #1D1D1D;
  min-height: 25px;
  padding: 0;
  pointer-events: none;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-input::-webkit-inner-spin-button, .aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-cantidad .cantidad-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-precio {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-precio .precio-actual {
  color: #1D1D1D;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  white-space: nowrap;
}
.aside-carrito .productos .producto .producto-info .producto-cantidad-precio .producto-precio .precio-original {
  color: #1D1D1D;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  white-space: nowrap;
  text-decoration-line: line-through;
  text-decoration: line-through;
  align-self: flex-start;
}
.aside-carrito .productos .producto .btn-eliminar-producto {
  position: absolute;
  top: 26px;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aside-carrito .productos .producto .btn-eliminar-producto svg {
  width: 7.5px;
  height: 9px;
}
.aside-carrito .productos .producto .btn-eliminar-producto:hover {
  opacity: 0.7;
}
.aside-carrito .productos .carrito-vacio {
  padding: 40px 0;
  text-align: center;
}
.aside-carrito .productos .carrito-vacio p {
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 300;
}
.aside-carrito .footer-carrito {
  flex-shrink: 0;
  margin-top: 50px;
  display: flex;
  padding: 20px 30px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D;
}
.aside-carrito .footer-carrito .subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
}
.aside-carrito .footer-carrito .subtotal .subtotal-texto {
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.aside-carrito .footer-carrito .subtotal .subtotal-precio {
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.aside-carrito .footer-carrito .botones {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.aside-carrito .footer-carrito .botones .btn-comprar {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #FFF;
  color: #1D1D1D;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.aside-carrito .footer-carrito .botones .btn-comprar:hover {
  opacity: 0.9;
}
.aside-carrito .footer-carrito .botones .btn-comprar p {
  margin: 0;
}
.aside-carrito .footer-carrito .botones .btn-continuar-comprando {
  background: transparent;
  border: none;
  color: #F3F1EA;
  text-align: center;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  padding: 0;
}
.aside-carrito .footer-carrito .botones .btn-continuar-comprando:hover {
  opacity: 0.8;
}
.aside-carrito .footer-carrito .botones .btn-continuar-comprando p {
  margin: 0;
}

body.carrito-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  pointer-events: all;
}

.modal-login {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-login.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.modal-login .modal-login-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.modal-login .modal-login-content {
  position: relative;
  background-color: #ffffff;
  border-radius: 0px;
  padding: 30px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease, max-width 0.3s ease;
}
.modal-login.active .modal-login .modal-login-content {
  transform: scale(1);
}
.modal-login .modal-login-content .modal-login-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.modal-login .modal-login-content .modal-login-close:hover {
  opacity: 0.7;
}
.modal-login .modal-login-content .modal-login-close svg {
  width: 24px;
  height: 24px;
}
.modal-login .modal-login-content .modal-view {
  display: none;
}
.modal-login .modal-login-content .modal-view.active {
  display: block;
}
.modal-login .modal-login-content h2 {
  color: #1D1D1D;
  font-family: Glamore;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 10px;
}
.modal-login .modal-login-content .modal-login-subtitle {
  color: #1D1D1D;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 20px;
}
.modal-login .modal-login-content .modal-login-form {
  margin-bottom: 20px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-username,
.modal-login .modal-login-content .modal-login-form #loginform .login-password,
.modal-login .modal-login-content .modal-login-form #loginform .login-email,
.modal-login .modal-login-content .modal-login-form #loginform .login-fullname,
.modal-login .modal-login-content .modal-login-form #loginform .login-phone,
.modal-login .modal-login-content .modal-login-form #registerform .login-username,
.modal-login .modal-login-content .modal-login-form #registerform .login-password,
.modal-login .modal-login-content .modal-login-form #registerform .login-email,
.modal-login .modal-login-content .modal-login-form #registerform .login-fullname,
.modal-login .modal-login-content .modal-login-form #registerform .login-phone,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-username,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-password,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-email,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-fullname,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-phone {
  margin-bottom: 20px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-username label,
.modal-login .modal-login-content .modal-login-form #loginform .login-password label,
.modal-login .modal-login-content .modal-login-form #loginform .login-email label,
.modal-login .modal-login-content .modal-login-form #loginform .login-fullname label,
.modal-login .modal-login-content .modal-login-form #loginform .login-phone label,
.modal-login .modal-login-content .modal-login-form #registerform .login-username label,
.modal-login .modal-login-content .modal-login-form #registerform .login-password label,
.modal-login .modal-login-content .modal-login-form #registerform .login-email label,
.modal-login .modal-login-content .modal-login-form #registerform .login-fullname label,
.modal-login .modal-login-content .modal-login-form #registerform .login-phone label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-username label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-password label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-email label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-fullname label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-phone label {
  display: none;
}
.modal-login .modal-login-content .modal-login-form #loginform input[type=text],
.modal-login .modal-login-content .modal-login-form #loginform input[type=email],
.modal-login .modal-login-content .modal-login-form #loginform input[type=tel],
.modal-login .modal-login-content .modal-login-form #loginform input[type=number],
.modal-login .modal-login-content .modal-login-form #loginform input[type=password],
.modal-login .modal-login-content .modal-login-form #loginform input#user_email_reg,
.modal-login .modal-login-content .modal-login-form #loginform select,
.modal-login .modal-login-content .modal-login-form #loginform textarea,
.modal-login .modal-login-content .modal-login-form #registerform input[type=text],
.modal-login .modal-login-content .modal-login-form #registerform input[type=email],
.modal-login .modal-login-content .modal-login-form #registerform input[type=tel],
.modal-login .modal-login-content .modal-login-form #registerform input[type=number],
.modal-login .modal-login-content .modal-login-form #registerform input[type=password],
.modal-login .modal-login-content .modal-login-form #registerform input#user_email_reg,
.modal-login .modal-login-content .modal-login-form #registerform select,
.modal-login .modal-login-content .modal-login-form #registerform textarea,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=text],
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=email],
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=tel],
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=number],
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=password],
.modal-login .modal-login-content .modal-login-form #lostpasswordform input#user_email_reg,
.modal-login .modal-login-content .modal-login-form #lostpasswordform select,
.modal-login .modal-login-content .modal-login-form #lostpasswordform textarea {
  width: 100%;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #1D1D1D;
  box-sizing: border-box;
  background-color: transparent;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #1D1D1D;
}
.modal-login .modal-login-content .modal-login-form #loginform input[type=text]:focus,
.modal-login .modal-login-content .modal-login-form #loginform input[type=email]:focus,
.modal-login .modal-login-content .modal-login-form #loginform input[type=tel]:focus,
.modal-login .modal-login-content .modal-login-form #loginform input[type=number]:focus,
.modal-login .modal-login-content .modal-login-form #loginform input[type=password]:focus,
.modal-login .modal-login-content .modal-login-form #loginform input#user_email_reg:focus,
.modal-login .modal-login-content .modal-login-form #loginform select:focus,
.modal-login .modal-login-content .modal-login-form #loginform textarea:focus,
.modal-login .modal-login-content .modal-login-form #registerform input[type=text]:focus,
.modal-login .modal-login-content .modal-login-form #registerform input[type=email]:focus,
.modal-login .modal-login-content .modal-login-form #registerform input[type=tel]:focus,
.modal-login .modal-login-content .modal-login-form #registerform input[type=number]:focus,
.modal-login .modal-login-content .modal-login-form #registerform input[type=password]:focus,
.modal-login .modal-login-content .modal-login-form #registerform input#user_email_reg:focus,
.modal-login .modal-login-content .modal-login-form #registerform select:focus,
.modal-login .modal-login-content .modal-login-form #registerform textarea:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=text]:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=email]:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=tel]:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=number]:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=password]:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input#user_email_reg:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform select:focus,
.modal-login .modal-login-content .modal-login-form #lostpasswordform textarea:focus {
  outline: none;
}
.modal-login .modal-login-content .modal-login-form #loginform input[type=text]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform input[type=email]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform input[type=tel]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform input[type=number]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform input[type=password]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform input#user_email_reg::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform select::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #loginform textarea::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform input[type=text]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform input[type=email]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform input[type=tel]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform input[type=number]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform input[type=password]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform input#user_email_reg::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform select::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #registerform textarea::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=text]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=email]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=tel]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=number]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=password]::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform input#user_email_reg::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform select::-moz-placeholder, .modal-login .modal-login-content .modal-login-form #lostpasswordform textarea::-moz-placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.modal-login .modal-login-content .modal-login-form #loginform input[type=text]::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform input[type=email]::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform input[type=tel]::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform input[type=number]::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform input[type=password]::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform input#user_email_reg::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform select::placeholder,
.modal-login .modal-login-content .modal-login-form #loginform textarea::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform input[type=text]::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform input[type=email]::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform input[type=tel]::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform input[type=number]::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform input[type=password]::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform input#user_email_reg::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform select::placeholder,
.modal-login .modal-login-content .modal-login-form #registerform textarea::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=text]::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=email]::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=tel]::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=number]::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input[type=password]::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform input#user_email_reg::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform select::placeholder,
.modal-login .modal-login-content .modal-login-form #lostpasswordform textarea::placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-remember,
.modal-login .modal-login-content .modal-login-form #registerform .login-remember,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-remember label,
.modal-login .modal-login-content .modal-login-form #registerform .login-remember label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-remember label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-remember label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #registerform .login-remember label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-remember label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-remember .modal-switch-view,
.modal-login .modal-login-content .modal-login-form #registerform .login-remember .modal-switch-view,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-remember .modal-switch-view {
  color: #1D1D1D;
  font-family: Salma-alfasans;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-terms,
.modal-login .modal-login-content .modal-login-form #loginform .login-newsletter,
.modal-login .modal-login-content .modal-login-form #registerform .login-terms,
.modal-login .modal-login-content .modal-login-form #registerform .login-newsletter,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-terms,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-newsletter {
  margin-bottom: 15px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-terms label,
.modal-login .modal-login-content .modal-login-form #loginform .login-newsletter label,
.modal-login .modal-login-content .modal-login-form #registerform .login-terms label,
.modal-login .modal-login-content .modal-login-form #registerform .login-newsletter label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-terms label,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-newsletter label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  color: #1D1D1D;
  cursor: pointer;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-terms label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #loginform .login-newsletter label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #registerform .login-terms label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #registerform .login-newsletter label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-terms label input[type=checkbox],
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-newsletter label input[type=checkbox] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-submit,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit,
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit-register,
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit-lost,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit-register,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit-lost,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit-register,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit-lost {
  padding: 10px 15px;
  background-color: #1D1D1D;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #F3F1EA;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit:hover,
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit-register:hover,
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit-lost:hover,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit:hover,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit-register:hover,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit-lost:hover,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit:hover,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit-register:hover,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit-lost:hover {
  background-color: #333;
}
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit:active,
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit-register:active,
.modal-login .modal-login-content .modal-login-form #loginform .login-submit #wp-submit-lost:active,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit:active,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit-register:active,
.modal-login .modal-login-content .modal-login-form #registerform .login-submit #wp-submit-lost:active,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit:active,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit-register:active,
.modal-login .modal-login-content .modal-login-form #lostpasswordform .login-submit #wp-submit-lost:active {
  transform: scale(0.98);
}
.modal-login .modal-login-content .modal-login-links {
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.modal-login .modal-login-content .modal-login-links p {
  margin: 8px 0;
}
.modal-login .modal-login-content .modal-login-links p a {
  color: #1D1D1D;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s ease;
  cursor: pointer;
}
.modal-login .modal-login-content .modal-login-links p a span {
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}
.modal-login .modal-login-content .modal-login-links p a:hover {
  color: #333;
}
.modal-login.view-login .modal-login-content {
  max-width: 29rem;
}
.modal-login.view-register .modal-login-content {
  max-width: 36.375rem;
}
.modal-login.view-lostpassword .modal-login-content {
  max-width: 29rem;
}
.modal-login.view-resetpassword .modal-login-content {
  max-width: 29rem;
}
.modal-login .modal-view-resetpassword h2 {
  color: #1D1D1D;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 20px;
  font-family: Salma-alfasans;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-password {
  margin-bottom: 20px;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-password input[type=password] {
  width: 100%;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #1D1D1D;
  box-sizing: border-box;
  background-color: transparent;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #1D1D1D;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-password input[type=password]:focus {
  outline: none;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-password input[type=password]::-moz-placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-password input[type=password]::placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.modal-login .modal-view-resetpassword .modal-login-form .password-requirements {
  margin-bottom: 20px;
}
.modal-login .modal-view-resetpassword .modal-login-form .password-requirements .password-requirements-title {
  margin-bottom: 10px;
  color: #575756;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}
.modal-login .modal-view-resetpassword .modal-login-form .password-requirements ul {
  padding-left: 20px;
}
.modal-login .modal-view-resetpassword .modal-login-form .password-requirements ul li {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  list-style: disc !important;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-login .modal-view-resetpassword .modal-login-form .login-submit input[type=submit] {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
}
@media (max-width: 768px) {
  .modal-login .modal-login-content {
    padding: 32px 24px;
    width: 95%;
    max-height: 95vh;
  }
  .modal-login .modal-login-content h2 {
    font-size: 24px;
  }
  .modal-login .modal-login-content .modal-login-subtitle {
    font-size: 14px;
  }
}

.menu-opciones .login {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.gracias {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gracias::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: linear-gradient(180deg, #000 0%, #000 100%);
  mix-blend-mode: multiply;
}
.gracias picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.gracias picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gracias .contenedor {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gracias .contenedor .gracias-titulo {
  color: #F3F1EA;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 20px;
}
.gracias .contenedor .gracias-texto {
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 30px;
}
.gracias .contenedor .btn-volver {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  background: #FFF;
}
.gracias .contenedor .btn-volver:hover {
  background: #DEDEDE;
}
.gracias .reclamo-texto {
  width: 1012px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  bottom: 32px;
  z-index: 3;
  color: #F3F1EA;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  align-self: flex-start;
}

.banner-inicial {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.banner-inicial.is-active {
  opacity: 1;
  visibility: visible;
}
.banner-inicial.is-closing {
  opacity: 0;
  visibility: hidden;
}
.banner-inicial.is-closed {
  display: none;
}
.banner-inicial .modal-banner-inicial {
  position: relative;
  width: 100%;
  max-width: 42.813rem;
  height: auto;
  max-height: 24.188rem;
  overflow: hidden;
  background-color: #fff;
  display: flex;
}
@media (max-width: 768px) {
  .banner-inicial .modal-banner-inicial {
    width: 95%;
    flex-direction: column;
    max-height: 37.938rem;
  }
}
.banner-inicial .modal-banner-inicial .imagen {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.banner-inicial .modal-banner-inicial .imagen picture {
  display: block;
  width: 100%;
  height: 100%;
}
.banner-inicial .modal-banner-inicial .imagen picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial {
  background: white;
  padding: 40px;
  color: #000;
}
@media (max-width: 768px) {
  .banner-inicial .modal-banner-inicial .contenido-banner-inicial {
    padding: 30px 20px 20px;
  }
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__titulo {
  color: #000;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 5px;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__parrafo {
  color: #000;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 30px;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__parrafo h2 {
  font-size: 40px !important;
  line-height: 45px;
  font-weight: 300;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__parrafo h3 {
  font-size: 30px !important;
  line-height: 35px;
  font-weight: 300;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__parrafo h4 {
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 5px;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__parrafo p {
  font-size: 15px !important;
  font-weight: 300;
  line-height: 20px;
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__boton {
  display: inline-block;
  padding: 12px 30px;
  background-color: #1D1D1D;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  border: 1px solid #1D1D1D;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 768px) {
  .banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__boton {
    padding: 10px 25px;
    font-size: 14px;
  }
}
.banner-inicial .modal-banner-inicial .contenido-banner-inicial .contenido__boton:hover {
  background-color: transparent;
  color: #1D1D1D;
  border-color: #1D1D1D;
}
.banner-inicial .modal-banner-inicial .boton-banner-cerrar {
  position: absolute;
  top: 9px;
  right: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 768px) {
  .banner-inicial .modal-banner-inicial .boton-banner-cerrar {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
  }
}
.banner-inicial .modal-banner-inicial .boton-banner-cerrar:hover {
  background-color: #fff;
  transform: rotate(90deg);
}
.banner-inicial .modal-banner-inicial .boton-banner-cerrar svg {
  width: 23px;
  height: 21px;
}
@media (max-width: 768px) {
  .banner-inicial .modal-banner-inicial .boton-banner-cerrar svg {
    width: 20px;
    height: 18px;
  }
}

body.banner-inicial-open {
  overflow: hidden;
}

.modal-favoritos-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-favoritos-overlay.is-active {
  display: flex;
  opacity: 1;
}
.modal-favoritos-overlay .modal-favoritos {
  position: relative;
  width: 100%;
  max-width: 29rem;
  height: auto;
  max-height: 90vh;
  overflow-y: auto;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}
.modal-favoritos-overlay.is-active .modal-favoritos-overlay .modal-favoritos {
  transform: scale(1);
}
@media (max-width: 768px) {
  .modal-favoritos-overlay .modal-favoritos {
    width: 95%;
    padding: 2rem 1.5rem;
    max-height: 85vh;
  }
}
.modal-favoritos-overlay .modal-favoritos__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
}
.modal-favoritos-overlay .modal-favoritos__close:hover {
  opacity: 0.7;
  background-color: rgba(0, 0, 0, 0.05);
}
.modal-favoritos-overlay .modal-favoritos__close svg {
  width: 24px;
  height: 24px;
  display: block;
}
.modal-favoritos-overlay .modal-favoritos__title {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 768px) {
  .modal-favoritos-overlay .modal-favoritos__title {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }
}
.modal-favoritos-overlay .modal-favoritos__description {
  color: #1D1D1D;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 10px;
}
.modal-favoritos-overlay .modal-favoritos__button {
  display: inline-block;
  padding: 10px 15px;
  background-color: #1D1D1D;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  border: 1px solid #1D1D1D;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: center;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .modal-favoritos-overlay .modal-favoritos__button {
    padding: 10px 25px;
    font-size: 14px;
  }
}
.modal-favoritos-overlay .modal-favoritos__button:hover {
  background-color: transparent;
  color: #1D1D1D;
  border-color: #1D1D1D;
}
.modal-favoritos-overlay .modal-favoritos__button:active {
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .modal-favoritos-overlay .modal-favoritos__button {
    width: 100%;
    align-self: stretch;
  }
}
.modal-favoritos-overlay .modal-favoritos__register {
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #1D1D1D;
  text-align: center;
}
.modal-favoritos-overlay .modal-favoritos__register a {
  font-weight: 700;
  line-height: 20px;
  color: #1D1D1D;
}
.modal-favoritos-overlay .modal-favoritos__register a:hover {
  opacity: 0.7;
}

.guia-medidas-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.guia-medidas-overlay.active {
  display: flex;
}

.guia-medidas-container {
  position: relative;
  background: #fff;
  max-width: 670px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-close-guia-medidas {
  position: absolute;
  top: 9px;
  right: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.btn-close-guia-medidas:hover {
  opacity: 0.7;
}
.btn-close-guia-medidas svg {
  width: 23px;
  height: 21px;
}

.guia-medidas-content {
  width: 100%;
}

.guia-medidas-table {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin: 0;
}
.guia-medidas-table[data-columns="3"] {
  grid-template-columns: 2fr 1fr 1fr;
}
.guia-medidas-table[data-columns="2"] {
  grid-template-columns: 2fr 1fr;
}
.guia-medidas-table[data-columns="1"] {
  grid-template-columns: 1fr;
}
.guia-medidas-table thead {
  display: contents;
}
.guia-medidas-table thead tr {
  display: contents;
}
.guia-medidas-table thead tr th {
  padding: 10px 17px;
  color: #F3F1EA;
  font-size: 18px;
  text-align: left;
  font-weight: 700;
  line-height: 23px;
  background: #1D1D1D;
  border-right: 1px solid #F3F1EA;
}
.guia-medidas-table tbody {
  display: contents;
  border: 1px solid #F3F1EA;
}
.guia-medidas-table tbody tr {
  display: contents;
}
.guia-medidas-table tbody tr td {
  padding: 10px;
  font-size: 16px;
  text-align: center;
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  border-right: 1px solid #1D1D1D;
}
.guia-medidas-table tbody tr:last-child td {
  border-bottom: none;
}

.guia-medidas-empty {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 16px;
}

@media (max-width: 768px) {
  .guia-medidas-container {
    padding: 40px 15px;
    max-height: 95vh;
  }
  .guia-medidas-table thead tr th {
    padding: 5px;
    font-size: 12px;
  }
  .guia-medidas-table tbody tr td {
    font-size: 13px;
  }
}
.bannersPrincipal {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0;
}
.bannersPrincipal .hero-splide {
  width: 100%;
  height: 85vh;
  position: relative;
}
.bannersPrincipal .hero-splide .splide__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  pointer-events: none;
  display: block !important;
}
.bannersPrincipal .hero-splide .splide__arrows .hero-arrow--prev,
.bannersPrincipal .hero-splide .splide__arrows .hero-arrow--next {
  background: transparent;
  display: flex;
  padding: 9px 6.5px;
  width: 40px;
  height: 30px;
}
.bannersPrincipal .hero-splide .splide__arrows .hero-arrow--prev:focus,
.bannersPrincipal .hero-splide .splide__arrows .hero-arrow--next:focus {
  outline: none;
}
.bannersPrincipal .hero-splide .splide__arrows .hero-arrow--prev,
.bannersPrincipal .hero-splide .splide__arrows .hero-arrow--next {
  display: block !important;
}
.bannersPrincipal .hero-splide .hero-arrow {
  position: absolute;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.bannersPrincipal .hero-splide .hero-arrow:hover {
  opacity: 0.7;
}
.bannersPrincipal .hero-splide .hero-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.bannersPrincipal .hero-splide .hero-arrow img {
  width: 100%;
  height: auto;
  display: block;
}
.bannersPrincipal .hero-splide .hero-arrow--prev {
  left: 20px;
}
.bannersPrincipal .hero-splide .hero-arrow--next {
  right: 20px;
}
.bannersPrincipal .hero-splide .splide__arrow {
  display: none !important;
}
.bannersPrincipal .hero-splide .splide__track {
  height: 100%;
}
.bannersPrincipal .hero-splide .hero-slide {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: end;
  justify-content: center;
}
.bannersPrincipal .hero-splide .hero-slide__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 1;
}
.bannersPrincipal .hero-splide .hero-slide__image {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 0;
  min-height: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.bannersPrincipal .hero-splide .hero-slide__image--desktop {
  display: block;
}
.bannersPrincipal .hero-splide .hero-slide__image--mobile {
  display: none;
}
@media (max-width: 768px) {
  .bannersPrincipal .hero-splide .hero-slide__image--desktop {
    display: none;
  }
  .bannersPrincipal .hero-splide .hero-slide__image--mobile {
    display: block;
  }
}
.bannersPrincipal .hero-splide .hero-slide.hero-single .hero-slide__image {
  width: 100%;
  height: 100%;
}
.bannersPrincipal .hero-splide .hero-slide.hero-double .hero-slide__image {
  width: 50%;
  height: 100%;
}
.bannersPrincipal .hero-splide .hero-slide.hero-triple .hero-slide__image {
  width: 33.333%;
  height: 100%;
}
@media (max-width: 768px) {
  .bannersPrincipal .hero-splide .hero-slide.hero-mobile-single .hero-slide__image--mobile {
    width: 100%;
    height: 100%;
  }
  .bannersPrincipal .hero-splide .hero-slide.hero-mobile-double .hero-slide__image--mobile {
    width: 50%;
    height: 100%;
  }
  .bannersPrincipal .hero-splide .hero-slide.hero-mobile-triple .hero-slide__image--mobile {
    width: 33.333%;
    height: 100%;
  }
  .bannersPrincipal .hero-splide .hero-slide:not(.hero-mobile-single):not(.hero-mobile-double):not(.hero-mobile-triple).hero-single .hero-slide__image--desktop {
    width: 100%;
    height: 100%;
  }
  .bannersPrincipal .hero-splide .hero-slide:not(.hero-mobile-single):not(.hero-mobile-double):not(.hero-mobile-triple).hero-double .hero-slide__image--desktop {
    width: 50%;
    height: 100%;
  }
  .bannersPrincipal .hero-splide .hero-slide:not(.hero-mobile-single):not(.hero-mobile-double):not(.hero-mobile-triple).hero-triple .hero-slide__image--desktop {
    width: 33.333%;
    height: 100%;
  }
}
.bannersPrincipal .hero-splide .hero-slide__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  margin-bottom: 53px;
}
.bannersPrincipal .hero-splide .hero-slide__text {
  margin: 0 0 5px 0;
  color: #F3F1EA;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.bannersPrincipal .hero-splide .hero-slide__title {
  margin: 0 0 30px 0;
  color: #F3F1EA;
  text-align: center;
  font-family: Glamore;
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
}
.bannersPrincipal .hero-splide .hero-slide__button {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: white;
  display: inline-block;
  text-decoration: none;
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}

.categorias {
  width: 100%;
  min-height: auto;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.categorias .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.categorias .contenedor .texto-categorias {
  color: #1D1D1D;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}
.categorias .contenedor .titulo-categorias {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.categorias .categorias-splide {
  width: 100%;
}
.categorias .categorias-splide .categoria {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.categorias .categorias-splide .categoria::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.categorias .categorias-splide .categoria.has-dynamic-height:hover .categoria__imagen {
  transform: scale(1.05);
}
.categorias .categorias-splide .categoria.has-dynamic-height:hover .categoria__contenido .categoria__boton {
  height: var(--target-height);
  padding-top: 7px;
  padding-bottom: 7px;
}
.categorias .categorias-splide .categoria__contenido {
  z-index: 2;
  position: absolute;
  bottom: 27px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.categorias .categorias-splide .categoria__contenido .categoria__titulo {
  color: #F1F1F0;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
.categorias .categorias-splide .categoria__contenido .categoria__boton {
  display: flex;
  padding: 7px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #F1F1F0;
  color: #1D1D1D;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  transition: height 0.5s ease, padding-top 0.5s ease, padding-bottom 0.5s ease;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.categorias .categorias-splide .categoria__imagen {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .categorias .categorias-splide .categoria__imagen {
    height: 100%;
  }
}
.categorias .categorias-splide .categoria__titulo {
  margin: 0;
  display: block;
  visibility: visible;
  opacity: 1;
}
.categorias .categorias-splide .categoria__descripcion {
  margin: 0;
  display: block;
}
.categorias .categorias-splide .categoria__boton {
  display: inline-block;
  text-decoration: none;
}
@media (max-width: 768px) {
  .categorias .splide .splide__track .splide__list {
    height: 467px;
  }
  .categorias .splide__pagination {
    bottom: -20px !important;
  }
  .categorias .splide__pagination li .splide__pagination__page {
    background: #937860;
    opacity: 0.2;
    transition: opacity 0.3s ease;
  }
  .categorias .splide__pagination li .splide__pagination__page.is-active {
    opacity: 1;
    transform: scale(1);
  }
}

.banner-producto {
  min-height: auto;
  display: flex;
  position: relative;
  padding: 98px 100px 96px 100px;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 60.23%, #F8F8F8 70.76%);
}
.banner-producto .contenedor .contenido {
  display: flex;
  max-width: 22.438rem;
  flex-direction: column;
}
@media (max-width: 768px) {
  .banner-producto .contenedor .contenido {
    position: relative;
  }
}
.banner-producto .contenedor .contenido p {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.banner-producto .contenedor .contenido h2 {
  margin-top: 5px;
  color: #000;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
}
.banner-producto .contenedor .contenido a {
  margin-top: 30px;
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  align-self: flex-start;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .banner-producto .contenedor .contenido a {
    align-self: center;
  }
}
.banner-producto .imagen {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  display: flex;
}
.banner-producto .imagen .banner-imagen {
  width: 100%;
  height: 100%;
  display: block;
}
.banner-producto .imagen .banner-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-producto .boton-banner {
  position: absolute;
  display: flex;
  background: white;
  top: 50%;
  left: 65%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
}
.banner-producto .boton-banner__tooltip {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  padding: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  max-width: 250px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(10px);
  pointer-events: none;
  z-index: 100;
}
.banner-producto .boton-banner__tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}
.banner-producto .boton-banner:hover .boton-banner__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.banner-producto .boton-banner .tooltip-imagen {
  width: 100%;
  margin-bottom: 10px;
}
.banner-producto .boton-banner .tooltip-imagen img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.banner-producto .boton-banner .tooltip-contenido .tooltip-nombre {
  color: #1D1D1D;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}
.banner-producto .boton-banner .tooltip-contenido .tooltip-precio {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 5px;
}
.banner-producto .boton-banner .tooltip-contenido .tooltip-precio .precio-regular {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  text-decoration-line: line-through;
}
.banner-producto .boton-banner .tooltip-contenido .tooltip-precio .precio-actual {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
@media (max-width: 768px) {
  .banner-producto {
    padding: 0;
    flex-direction: column;
  }
  .banner-producto::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(248, 248, 248, 0) 45.38%, #F8F8F8 60.93%);
    z-index: 1;
    top: 0;
    bottom: 0;
    pointer-events: none;
  }
  .banner-producto .contenido {
    width: 1350px;
    justify-content: center;
    text-align: center;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    padding: 39px 0;
    z-index: 2;
  }
  .banner-producto .contenido a {
    align-self: center;
  }
  .banner-producto .imagen {
    position: relative;
    width: 100%;
  }
  .banner-producto .boton-banner {
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.productos-destacados {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.productos-destacados .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.productos-destacados .contenedor .contenido {
  display: flex;
  max-width: 37.313rem;
  flex-direction: column;
}
.productos-destacados .contenedor .contenido p {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}
.productos-destacados .contenedor .contenido h2 {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.productos-destacados .contenedor .contenido .parrafo-productos-destacados {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.productos-destacados .contenedor .boton-productos-destacados {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.productos-destacados__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(341px, 1fr));
  grid-row-gap: 30px;
  grid-column-gap: 1px;
}
@media (max-width: 768px) {
  .productos-destacados__grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.banner-video {
  min-height: 359px;
  display: flex;
  position: relative;
}
@media (max-width: 768px) {
  .banner-video {
    flex-wrap: wrap;
  }
}
.banner-video::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(248, 248, 248, 0) 26.19%, #F8F8F8 49.51%);
  z-index: 1;
}
.banner-video .contenedor {
  align-items: center;
  display: flex;
}
.banner-video .contenedor .contenido {
  width: 50%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 30.375rem;
  position: relative;
}
@media (max-width: 768px) {
  .banner-video .contenedor .contenido {
    width: 100%;
  }
}
.banner-video .contenedor .contenido p {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.banner-video .contenedor .contenido h2 {
  margin-top: 5px;
  color: #000;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
}
.banner-video .contenedor .contenido a {
  margin-top: 30px;
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  align-self: flex-start;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .banner-video .contenedor .contenido a {
    align-self: center;
  }
}
.banner-video .video {
  width: 60%;
  max-height: 22.438rem;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media (max-width: 768px) {
  .banner-video .video {
    width: 100%;
    position: relative;
  }
}
.banner-video .video .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.banner-video .video .video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner-video .video .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.banner-video .video .video-thumbnail .video-poster {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.banner-video .video .video-thumbnail .video-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  background: #1D1D1D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-video .video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.banner-video .video .video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.banner-video .video .video-play-button svg {
  width: 100%;
  height: 100%;
}
.banner-video .video .video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.banner-video .video .video-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner-video .video .video-popup .video-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.banner-video .video .video-popup .video-popup-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10000;
}
.banner-video .video .video-popup .video-popup-content .video-popup-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.banner-video .video .video-popup .video-popup-content .video-popup-close:hover {
  transform: scale(1.1);
}
.banner-video .video .video-popup .video-popup-content .video-popup-close svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.banner-video .video .video-popup .video-popup-content .video-popup-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.banner-video .video .video-popup .video-popup-content .video-popup-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .banner-video {
    padding: 0;
  }
  .banner-video::before {
    background: linear-gradient(0deg, rgba(248, 248, 248, 0) 26.19%, #F8F8F8 39.36%);
  }
  .banner-video .contenido {
    width: 100%;
    width: 1350px;
    justify-content: center;
    text-align: center;
    align-items: center;
    max-width: 95%;
    margin: 0 auto;
    padding: 39px 0;
    z-index: 2;
  }
  .banner-video .contenido a {
    align-self: center;
  }
}

.carrusel-productos {
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.carrusel-productos .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.carrusel-productos .contenedor .contenido {
  display: flex;
  max-width: 37.313rem;
  flex-direction: column;
}
.carrusel-productos .contenedor .contenido p {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}
.carrusel-productos .contenedor .contenido h2 {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.carrusel-productos .contenedor .contenido .parrafo-carrusel-productos {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.carrusel-productos .contenedor .boton-carrusel {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.carrusel-productos .carrusel-productos-sale .splide .splide__pagination {
  bottom: -20px !important;
}
.carrusel-productos .carrusel-productos-sale .splide .splide__pagination li .splide__pagination__page {
  background: #937860;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.carrusel-productos .carrusel-productos-sale .splide .splide__pagination li .splide__pagination__page.is-active {
  opacity: 1;
  transform: scale(1);
}

.categoria-header {
  min-height: auto;
  padding: 0;
  position: relative;
}
.categoria-header::before {
  content: "";
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mix-blend-mode: multiply;
}
.categoria-header picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.categoria-header picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.categoria-header .contenedor {
  z-index: 3;
  min-height: 145px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding-bottom: 20px;
}
.categoria-header .contenedor .categoria-header__titulo {
  color: #F3F1EA;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
.categoria-header .contenedor .categoria-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #F3F1EA;
  font-size: 10px;
}
.categoria-header .contenedor .categoria-header__breadcrumb a {
  color: #F3F1EA;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
}
.categoria-header .contenedor .categoria-header__breadcrumb span {
  color: #F3F1EA;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}

.subcategorias-productos {
  min-height: auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .subcategorias-productos {
    padding: 50px 15px;
  }
}
@media (max-width: 768px) {
  .subcategorias-productos .splide .splide__track .splide__list {
    height: 247px;
  }
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item {
  position: relative;
  transition: all 0.5s;
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item.active::after {
  animation: coverFromBottom 1s ease-out forwards;
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item:hover .subcategoria-item__imagen img {
  transform: scale(1.1);
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item:hover .subcategoria-item__nombre .ver-mas {
  height: var(--target-height);
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  pointer-events: none;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
  mix-blend-mode: multiply;
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, #000 100%);
  mix-blend-mode: multiply;
  height: 0;
  overflow: visible;
  z-index: 1;
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__imagen {
  overflow: hidden;
}
@media (max-width: 768px) {
  .subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__imagen {
    height: 100%;
  }
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__nombre {
  position: absolute;
  bottom: 0;
  z-index: 2;
  left: 0;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 27px;
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__nombre h3 {
  color: #F1F1F0;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
@media (max-width: 768px) {
  .subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__nombre h3 {
    font-size: 19px;
  }
}
.subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__nombre .ver-mas {
  color: #F1F1F0;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  display: flex;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .subcategorias-productos .splide .splide__track .splide__list .splide__slide .subcategoria-item .subcategoria-item__nombre .ver-mas {
    height: auto;
  }
}

@keyframes coverFromBottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.productos-categoria {
  min-height: auto;
  padding-bottom: 100px;
}
.productos-categoria .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.productos-categoria .contenedor .btn-filtros-productos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
}
.productos-categoria .contenedor .btn-filtros-productos__icono {
  width: 18px;
  height: 18px;
}
.productos-categoria .contenedor .btn-filtros-productos__texto {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}
.productos-categoria .contenedor .select-filtros-productos {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  gap: 10px;
}
.productos-categoria .contenedor .select-filtros-productos .select-filtros-productos__icono {
  width: 18px;
  height: 18px;
}
.productos-categoria .contenedor .select-filtros-productos .select-filtros-productos__texto {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.productos-categoria .productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(341px, 1fr));
  grid-row-gap: 30px;
  grid-column-gap: 1px;
}
@media (max-width: 768px) {
  .productos-categoria .productos-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.productos-categoria .boton-mostrar-mas {
  padding-top: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.productos-categoria .boton-mostrar-mas .btn-mostrar-mas {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.productos-categoria .boton-mostrar-mas .btn-mostrar-mas:hover {
  background: #2C2C2C;
}

.filtros-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.filtros-popup-overlay.active {
  display: flex;
  opacity: 1;
}
.filtros-popup-overlay .filtros-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  max-width: 20.625rem;
  width: 100%;
  background: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}
.filtros-popup-overlay.active .filtros-popup {
  transform: translateX(0);
}
.filtros-popup-overlay .filtros-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.filtros-popup-overlay .filtros-popup__titulo {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  margin: 0;
}
.filtros-popup-overlay .filtros-popup__cerrar {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.filtros-popup-overlay .filtros-popup__cerrar:hover {
  opacity: 0.7;
}

.filtro-grupo {
  margin-bottom: 30px;
}
.filtro-grupo__titulo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  border-bottom: 0.5px solid var(--6, #1D1D1D);
}
.filtro-grupo__titulo span {
  flex: 1;
}
.filtro-grupo__icono {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.filtro-grupo.activo .filtro-grupo__icono {
  transform: rotate(180deg);
}
.filtro-grupo__contenido {
  padding-top: 15px;
  display: none;
}

.filtro-precio__inputs {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 27px;
}
.filtro-precio__input {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #1D1D1D;
  background: #FFF;
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.filtro-precio__input::-webkit-outer-spin-button, .filtro-precio__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filtro-precio__input::-moz-placeholder {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  opacity: 1;
}
.filtro-precio__input::placeholder {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  opacity: 1;
}
.filtro-precio__input:focus {
  outline: none;
  border-color: #1D1D1D;
}

.filtro-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
}
.filtro-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1D1D1D;
}
.filtro-checkbox span {
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.filtros-cargando,
.filtros-error,
.productos-cargando {
  padding: 20px;
  text-align: center;
  color: #1D1D1D;
  font-size: 14px;
}

.filtros-error {
  color: #d32f2f;
}

.no-productos-encontrados {
  grid-column: 1/-1;
  padding: 40px 20px;
  text-align: center;
}
.no-productos-encontrados p {
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
  margin: 0;
}

.nosotros {
  min-height: auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .nosotros {
    padding: 50px 0;
  }
}
.nosotros .contenedor {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .nosotros .contenedor {
    gap: 30px;
    flex-direction: column;
  }
  .nosotros .contenedor .imagen {
    order: 2;
  }
  .nosotros .contenedor .contenido {
    order: 1;
  }
}
.nosotros .contenedor .imagen {
  width: 100%;
}
.nosotros .contenedor .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nosotros .contenedor .contenido {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.nosotros .contenedor .contenido__titulo {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.nosotros .contenedor .contenido__descripcion {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}

.nosotros-2 {
  min-height: auto;
  padding: 50px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
}
@media (max-width: 768px) {
  .nosotros-2 {
    padding: 50px 0;
  }
}
.nosotros-2 .contenedor {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .nosotros-2 .contenedor {
    gap: 30px;
    flex-direction: column;
  }
}
.nosotros-2 .contenedor .imagen {
  width: 100%;
}
.nosotros-2 .contenedor .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nosotros-2 .contenedor .contenido {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.nosotros-2 .contenedor .contenido__titulo {
  color: #F3F1EA;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.nosotros-2 .contenedor .contenido__descripcion {
  color: #F3F1EA;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}

.nosotros-3 {
  min-height: auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .nosotros-3 {
    padding: 50px 0;
  }
}
.nosotros-3 .contenedor {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .nosotros-3 .contenedor {
    gap: 30px;
    flex-direction: column;
  }
  .nosotros-3 .contenedor .imagen {
    order: 2;
  }
  .nosotros-3 .contenedor .contenido {
    order: 1;
  }
}
.nosotros-3 .contenedor .imagen {
  width: 100%;
}
.nosotros-3 .contenedor .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nosotros-3 .contenedor .contenido {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.nosotros-3 .contenedor .contenido__titulo {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.nosotros-3 .contenedor .contenido__descripcion {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}

.nuestros-valores {
  min-height: auto;
  background: #FAFAFA;
  padding: 50px 0;
}
.nuestros-valores .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.nuestros-valores .contenedor__titulo {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.nuestros-valores .contenido {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6.25rem;
}
@media (max-width: 768px) {
  .nuestros-valores .contenido {
    gap: 50px;
  }
}
.nuestros-valores .contenido .valor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nuestros-valores .contenido .valor-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.nuestros-valores .contenido .valor-item .contenido__titulo {
  color: #1D1D1D;
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
}

.libro-reclamaciones {
  min-height: auto;
}
.libro-reclamaciones .contenedor h2, .libro-reclamaciones .contenedor h3, .libro-reclamaciones .contenedor h4, .libro-reclamaciones .contenedor h5, .libro-reclamaciones .contenedor h6 {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 15px;
}
.libro-reclamaciones .contenedor p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.libro-reclamaciones .contenedor ul {
  padding-left: 40px;
}
.libro-reclamaciones .contenedor ul li {
  list-style: disc;
}

.libro {
  min-height: auto;
}
.libro .contenedor {
  padding: 35px 115px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media (max-width: 768px) {
  .libro .contenedor {
    padding: 35px 0;
  }
}
.libro .contenedor .wpcf7 .wpcf7-form h2 {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-top: 35px;
  margin-bottom: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form p {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form span {
  width: 100%;
}
.libro .contenedor .wpcf7 .wpcf7-form input {
  width: 100%;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  border: none;
  border-bottom: 1px solid #1D1D1D;
}
.libro .contenedor .wpcf7 .wpcf7-form input:focus {
  outline: none;
}
.libro .contenedor .wpcf7 .wpcf7-form input::-moz-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form input::placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form .fecha-reclamo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.libro .contenedor .wpcf7 .wpcf7-form .fecha-reclamo p {
  display: flex;
  width: 100%;
  max-width: 34.375rem;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 9px 10px;
  border-bottom: 1px solid #1D1D1D;
}
.libro .contenedor .wpcf7 .wpcf7-form .fecha-reclamo p span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
.libro .contenedor .wpcf7 .wpcf7-form .fecha-reclamo p span input {
  width: -moz-fit-content;
  width: fit-content;
  border: none;
}
.libro .contenedor .wpcf7 .wpcf7-form .campo-solo {
  margin-bottom: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form .campo-doble {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .libro .contenedor .wpcf7 .wpcf7-form .campo-doble {
    flex-direction: column;
  }
}
.libro .contenedor .wpcf7 .wpcf7-form .parrafo {
  margin-bottom: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form .radio {
  display: flex;
  margin-bottom: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form .radio .wpcf7-form-control-wrap .wpcf7-form-control {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  gap: 35px;
}
.libro .contenedor .wpcf7 .wpcf7-form .radio .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item {
  display: flex;
  margin: 0;
}
.libro .contenedor .wpcf7 .wpcf7-form .radio .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label {
  display: flex;
  gap: 7px;
  align-items: center;
}
.libro .contenedor .wpcf7 .wpcf7-form .radio .wpcf7-form-control-wrap .wpcf7-form-control .wpcf7-list-item label .wpcf7-list-item-label {
  margin: 0;
  line-height: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form .footer-reclamaciones {
  margin-bottom: 15px;
}
.libro .contenedor .wpcf7 .wpcf7-form .footer-reclamaciones-2 {
  margin-bottom: 35px;
}
.libro .contenedor .wpcf7 .wpcf7-form .contenedor-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.libro .contenedor .wpcf7 .wpcf7-form .contenedor-btn .btn-reclamo {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.libro .contenedor .wpcf7 .wpcf7-form .contenedor-btn .btn-reclamo:hover {
  background: #2C2C2C;
}
.libro .contenedor .btn-volver {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: underline;
}

.terminos-condiciones {
  min-height: auto;
}
.terminos-condiciones .contenedor h2, .terminos-condiciones .contenedor h3, .terminos-condiciones .contenedor h4, .terminos-condiciones .contenedor h5, .terminos-condiciones .contenedor h6 {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 15px;
}
.terminos-condiciones .contenedor p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.terminos-condiciones .contenedor ul {
  padding-left: 40px;
}
.terminos-condiciones .contenedor ul li {
  list-style: disc;
}
.terminos-condiciones .contenedor .btn-volver {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: underline;
}
.terminos-condiciones .contenedor .contenedor-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.contacto {
  min-height: auto;
  padding: 50px 0 100px 0;
}
.contacto .contenedor {
  display: flex;
  gap: 64px;
}
@media (max-width: 768px) {
  .contacto .contenedor {
    flex-direction: column;
    gap: 30px;
  }
}
.contacto .contenedor .izquierda {
  max-width: 23.813rem;
  display: flex;
  padding: 20px;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacto .contenedor .izquierda {
    padding: 0;
  }
}
.contacto .contenedor .izquierda .celular, .contacto .contenedor .izquierda .email, .contacto .contenedor .izquierda .direccion {
  display: flex;
  gap: 23px;
  align-items: center;
}
.contacto .contenedor .izquierda .celular .icono, .contacto .contenedor .izquierda .email .icono, .contacto .contenedor .izquierda .direccion .icono {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contacto .contenedor .izquierda .celular .icono img, .contacto .contenedor .izquierda .email .icono img, .contacto .contenedor .izquierda .direccion .icono img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contacto .contenedor .izquierda .celular .contenido, .contacto .contenedor .izquierda .email .contenido, .contacto .contenedor .izquierda .direccion .contenido {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contacto .contenedor .izquierda .celular .contenido span, .contacto .contenedor .izquierda .email .contenido span, .contacto .contenedor .izquierda .direccion .contenido span {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contacto .contenedor .izquierda .celular .contenido p, .contacto .contenedor .izquierda .celular .contenido a, .contacto .contenedor .izquierda .email .contenido p, .contacto .contenedor .izquierda .email .contenido a, .contacto .contenedor .izquierda .direccion .contenido p, .contacto .contenedor .izquierda .direccion .contenido a {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.contacto .contenedor .derecha {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contacto .contenedor .derecha h2 {
  color: #1D1D1D;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form p {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form span {
  width: 100%;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form input, .contacto .contenedor .derecha .wpcf7 .wpcf7-form textarea {
  width: 100%;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  border: none;
  border-bottom: 1px solid #1D1D1D;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form input:focus, .contacto .contenedor .derecha .wpcf7 .wpcf7-form textarea:focus {
  outline: none;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form input::-moz-placeholder, .contacto .contenedor .derecha .wpcf7 .wpcf7-form textarea::-moz-placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form input::placeholder, .contacto .contenedor .derecha .wpcf7 .wpcf7-form textarea::placeholder {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form textarea {
  height: 38px;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE y Edge */
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form textarea::-webkit-scrollbar {
  display: none; /* Chrome, Safari y Opera */
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form .campo-solo {
  margin-bottom: 20px;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form .campo-doble {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacto .contenedor .derecha .wpcf7 .wpcf7-form .campo-doble {
    flex-direction: column;
  }
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form .contenedor-btn {
  padding-top: 10px;
  display: flex;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form .contenedor-btn .btn-contactar {
  display: flex;
  padding: 10px 15px;
  gap: 10px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.contacto .contenedor .derecha .wpcf7 .wpcf7-form .contenedor-btn .btn-contactar:hover {
  background: #2C2C2C;
}

.blog-entradas .contenedor {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
.blog-entradas .contenedor .filtros {
  width: 100%;
}
.blog-entradas .contenedor .filtros .filtro {
  overflow-x: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.blog-entradas .contenedor .filtros .filtro::-webkit-scrollbar {
  display: none;
}
.blog-entradas .contenedor .filtros .filtro {
  max-width: 100%;
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .blog-entradas .contenedor .filtros .filtro {
    justify-content: flex-start;
    gap: 30px;
  }
}
.blog-entradas .contenedor .filtros .filtro .filtro-btn {
  position: relative;
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-bottom: 5px;
  white-space: nowrap;
}
.blog-entradas .contenedor .filtros .filtro .filtro-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #1D1D1D;
  transform: translateX(-50%);
  transition: width 0.5s ease-in-out;
}
.blog-entradas .contenedor .filtros .filtro .filtro-btn:hover {
  color: #1D1D1D;
}
.blog-entradas .contenedor .filtros .filtro .filtro-btn:hover::after {
  width: 100%;
}
.blog-entradas .contenedor .filtros .filtro .filtro-btn.active {
  color: #1D1D1D;
  font-weight: 700;
}
.blog-entradas .contenedor .filtros .filtro .filtro-btn.active::after {
  width: 100%;
}
.blog-entradas .contenedor .grid-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(341px, 1fr));
  gap: 20px;
  width: 100%;
}
.blog-entradas .contenedor .boton-mostrar-mas {
  padding-top: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.blog-entradas .contenedor .boton-mostrar-mas .btn-mostrar-mas {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blog-entradas .contenedor .boton-mostrar-mas .btn-mostrar-mas:hover {
  background: #2C2C2C;
}
.blog-entradas .contenedor .boton-mostrar-mas .btn-mostrar-mas:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.newsletter {
  min-height: auto;
  padding: 50px 0 100px 0;
}
.newsletter .contenedor {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 14px;
  position: relative;
  min-height: 22.438rem;
}
@media (max-width: 768px) {
  .newsletter .contenedor {
    padding: 62.5px 14px;
  }
}
.newsletter .contenedor .newsletter__imagen {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.newsletter .contenedor .newsletter__imagen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background: #000;
  mix-blend-mode: multiply;
}
.newsletter .contenedor .newsletter__imagen img {
  width: 100%;
  height: 100%;
}
.newsletter .contenedor .newsletter__imagen source {
  width: 100%;
  height: 100%;
}
.newsletter .contenedor .newsletter__imagen source img {
  width: 100%;
  height: 100%;
}
.newsletter .contenedor .newsletter__contenido {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.newsletter .contenedor .newsletter__contenido .newsletter__titulo {
  color: #F3F1EA;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 5px;
}
.newsletter .contenedor .newsletter__contenido .newsletter__descripcion {
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 30px;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 {
  max-width: 16.875rem;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap {
  width: 100%;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter {
  width: 100%;
  border: none;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  border-bottom: 1px solid #F3F1EA;
  background: transparent;
  color: white;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter:focus {
  outline: none;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter::-moz-placeholder {
  color: #F3F1EA;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter::placeholder {
  color: #F3F1EA;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  text-align: center;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter input::-webkit-input-placeholder {
  text-align: center;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter input::-moz-placeholder {
  text-align: center;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .wpcf7-form-control-wrap .class-newsletter input:-ms-input-placeholder {
  text-align: center;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .btn-enviar-correo {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  width: -moz-fit-content;
  width: fit-content;
  background: #FFF;
}
.newsletter .contenedor .newsletter__contenido .wpcf7 .wpcf7-form .correo-electronico .btn-enviar-correo:hover {
  background: #DEDEDE;
}
.newsletter .contenedor .agradecimiento-newsletter {
  z-index: 2;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.newsletter .contenedor .agradecimiento-newsletter__titulo {
  color: #F3F1EA;
  text-align: center;
  font-size: 30px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 15px;
}
.newsletter .contenedor .agradecimiento-newsletter__descripcion {
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.newsletter .newsletter__contenido {
  transition: opacity 0.3s ease;
}
.newsletter .agradecimiento-newsletter {
  transition: opacity 0.3s ease;
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contenido-post {
  padding: 50px 0;
}
@media (max-width: 768px) {
  .contenido-post {
    padding: 15px 0 50px 0;
  }
}
.contenido-post .breadcrumb-post {
  width: 100%;
  margin-bottom: 20px;
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}
.contenido-post .breadcrumb-post .categoria-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #1D1D1D;
  font-size: 10px;
  margin-bottom: 20px;
}
.contenido-post .breadcrumb-post .categoria-header__breadcrumb a {
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.contenido-post .breadcrumb-post .categoria-header__breadcrumb span {
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.contenido-post .breadcrumb-post .categoria-header__breadcrumb svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.contenido-post .contenedor {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 51px;
}
.contenido-post .contenedor .single-post__contenido {
  max-width: 55.625rem;
  width: 100%;
}
.contenido-post .contenedor .single-post__contenido .single-post__titulo {
  color: #1D1D1D;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 30px;
}
.contenido-post .contenedor .single-post__contenido .imagen-post {
  margin-bottom: 30px;
  width: 100%;
  max-height: 21.813rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contenido-post .contenedor .single-post__contenido .imagen-post {
    height: 246px;
  }
}
.contenido-post .contenedor .single-post__contenido .imagen-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto h2 {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto h3 {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto p {
  margin-bottom: 30px;
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto p:has(img) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-height: 14.563rem;
}
@media (max-width: 768px) {
  .contenido-post .contenedor .single-post__contenido .single-post__contenido-texto p:has(img) {
    max-height: 100%;
    flex-wrap: wrap;
  }
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto p:has(img) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto ul {
  padding-left: 40px;
}
.contenido-post .contenedor .single-post__contenido .single-post__contenido-texto ul li {
  list-style: disc;
  margin-bottom: 15px;
}
.contenido-post .contenedor .single-post__contenido .contenedor-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contenido-post .contenedor .single-post__contenido .contenedor-btn .btn-volver {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  text-decoration: underline;
}
.contenido-post .contenedor .recomendados-post {
  width: 100%;
  max-width: 21.25rem;
}
.contenido-post .contenedor .recomendados-post .recomendados-post__titulo {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 30px;
}
.contenido-post .contenedor .recomendados-post .grid-posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 15px;
}

.single-product-page {
  min-height: auto;
  padding: 50px 0 100px 0;
}
@media (max-width: 768px) {
  .single-product-page {
    padding: 15px 0;
  }
}
.single-product-page .breadcrumb-product {
  width: 100%;
  margin-bottom: 20px;
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}
.single-product-page .breadcrumb-product .categoria-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #1D1D1D;
  font-size: 10px;
  margin-bottom: 20px;
}
.single-product-page .breadcrumb-product .categoria-header__breadcrumb a {
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  text-decoration: none;
  white-space: nowrap;
}
.single-product-page .breadcrumb-product .categoria-header__breadcrumb span {
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.single-product-page .breadcrumb-product .categoria-header__breadcrumb svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.single-product-page .contenedor {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 51px;
}
.single-product-page .contenedor .galeria-producto {
  width: 100%;
  max-width: 32.75rem;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  position: sticky;
  top: 130px;
  align-self: flex-start;
}
@media (max-width: 1350px) {
  .single-product-page .contenedor .galeria-producto {
    top: 0;
    position: relative;
  }
}
@media (max-width: 768px) {
  .single-product-page .contenedor .galeria-producto {
    position: relative;
    top: 0;
    flex-wrap: wrap-reverse;
  }
}
.single-product-page .contenedor .galeria-producto__principal {
  width: 100%;
  height: 32.813rem;
  max-height: 32.813rem;
  overflow: hidden;
}
.single-product-page .contenedor .galeria-producto__principal img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-product-page .contenedor .galeria-producto__thumbnails {
  width: 100px;
  max-height: 32.813rem;
  position: relative;
}
@media (max-width: 768px) {
  .single-product-page .contenedor .galeria-producto__thumbnails {
    width: 100%;
    max-height: none;
  }
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__track {
  height: 100%;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__list {
  height: 100%;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e0e0e0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: all;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow:hover:not(:disabled) {
  background: rgb(255, 255, 255);
  border-color: #1D1D1D;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow svg {
  width: 12px;
  height: 12px;
  fill: #1D1D1D;
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow--prev {
  top: -15px;
}
@media (max-width: 768px) {
  .single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow--prev {
    top: 50%;
    left: -9px;
    transform: translateY(-50%);
  }
}
.single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow--next {
  bottom: -15px;
}
@media (max-width: 768px) {
  .single-product-page .contenedor .galeria-producto__thumbnails .splide__arrow--next {
    bottom: auto;
    top: 50%;
    right: -9px;
    left: auto;
    transform: translateY(-50%);
  }
}
.single-product-page .contenedor .galeria-producto__thumbnail {
  width: 100px;
  height: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}
.single-product-page .contenedor .galeria-producto__thumbnail.active {
  border-color: #1D1D1D;
}
.single-product-page .contenedor .galeria-producto__thumbnail:hover {
  opacity: 0.8;
}
.single-product-page .contenedor .galeria-producto__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.single-product-page .contenedor .galeria-producto__placeholder {
  width: 100%;
  padding: 50px;
  text-align: center;
  color: #999;
}
.single-product-page .contenedor .informacion-producto {
  width: 100%;
  max-width: 43.25rem;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo {
  position: relative;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .ti_card_product__wishlist {
  position: relative;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-add-to-wishlist {
  position: relative;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-add-to-wishlist a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-add-to-wishlist a:hover {
  transform: scale(1.1);
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-add-to-wishlist svg {
  width: 24px;
  height: 24px;
  display: block;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-add-button.hidden,
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-wishlistaddedbrowse.hidden {
  display: none;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-add-button.show,
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .yith-wcwl-wishlistaddedbrowse.show {
  display: block;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .btn-favorito .loading {
  opacity: 0.6;
  pointer-events: none;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .header-informacion .informacion-producto__categoria a {
  color: #000;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  text-decoration: none;
  margin-bottom: 5px;
}
.single-product-page .contenedor .informacion-producto .categoria-titulo .header-informacion .informacion-producto__titulo-principal {
  color: #000;
  font-family: Glamore;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 15px;
  margin-right: 40px;
}
.single-product-page .contenedor .informacion-producto .sku-producto {
  margin-bottom: 15px;
}
.single-product-page .contenedor .informacion-producto .sku-producto__valor {
  color: #000;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}
.single-product-page .contenedor .informacion-producto .precio-producto {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.single-product-page .contenedor .informacion-producto .precio-producto__original {
  color: #999;
  font-size: 16px;
  font-weight: 300;
  text-decoration: line-through;
  line-height: 20px;
  align-self: flex-start;
}
.single-product-page .contenedor .informacion-producto .precio-producto__actual {
  color: #1D1D1D;
  font-size: 30px;
  font-weight: 700;
  line-height: 35px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto {
  position: relative;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto {
  margin-bottom: 30px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-header .atributo-label {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-header .atributo-label .atributo-valor-seleccionado {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--colores .atributo-opcion {
  width: 35px;
  height: 35px;
  border: 1px solid #E4E4E4;
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--colores .atributo-opcion.active {
  border-color: #1D1D1D;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--colores .atributo-opcion:hover {
  transform: scale(1.05);
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--colores .atributo-opcion .atributo-opcion__color {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 2px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--colores .atributo-opcion .atributo-opcion__nombre {
  font-size: 12px;
  color: #1D1D1D;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--tallas {
  display: flex;
  flex-wrap: wrap;
  gap: 0px;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--tallas .atributo-opcion {
  padding: 8px 0;
  width: 100%;
  max-width: 5rem;
  border: 1px solid #E4E4E4;
  background: transparent;
  color: #1D1D1D;
  font-size: 14px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .atributo-producto .atributo-opciones--tallas .atributo-opcion.active {
  color: #1D1D1D;
  border: 1px solid #1D1D1D;
  font-weight: 500;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .guia-medidas-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.single-product-page .contenedor .informacion-producto .atributos-producto .guia-medidas-wrapper .btn-guia-medidas {
  background: none;
  border: none;
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: 1px solid #1D1D1D;
  transition: opacity 0.3s;
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}
.single-product-page .contenedor .informacion-producto .comprar-producto {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 30px;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector {
  display: flex;
  justify-content: center;
  display: flex;
  align-items: center;
  border-radius: 0;
  overflow: hidden;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-btn {
  width: 40px;
  height: 40px;
  background-color: #E4E4E4;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-btn svg {
  width: 16px;
  height: 16px;
  stroke: #1D1D1D;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-btn:hover {
  background-color: #D0D0D0;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-btn:active {
  background-color: #C0C0C0;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-btn--menos {
  border: none;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-btn--mas {
  border: none;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-producto {
  border: 1px solid #1D1D1D;
  max-width: 43px;
  padding: 7.5px 0px !important;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #1D1D1D;
  background-color: #fff;
  padding: 0;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-producto::-webkit-inner-spin-button, .single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-producto::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .cantidad-selector .cantidad-producto:focus {
  outline: none;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .btn-comprar-producto {
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #F3F1EA;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .single-product-page .contenedor .informacion-producto .comprar-producto .btn-comprar-producto {
    padding: 10px 15px;
  }
}
.single-product-page .contenedor .informacion-producto .comprar-producto .btn-comprar-producto:hover {
  background-color: #333;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .btn-comprar-producto:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.single-product-page .contenedor .informacion-producto .comprar-producto .btn-comprar-producto .icon-carrito {
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto {
  margin-top: 30px;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid #1D1D1D;
  margin-bottom: 10px;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-header .descripcion-titulo {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin: 0;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-header .descripcion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-header .descripcion-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #1D1D1D;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-header .descripcion-toggle:hover {
  opacity: 0.7;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-header .descripcion-toggle.active {
  transform: rotate(180deg);
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-contenido {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-contenido.active {
  height: var(--target-height);
  opacity: 1;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-contenido p {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-contenido ul {
  padding-left: 30px;
}
.single-product-page .contenedor .informacion-producto .descripcion-producto .descripcion-contenido ul li {
  list-style: disc;
  margin-bottom: 15px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto {
  margin-top: 30px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid #1D1D1D;
  margin-bottom: 10px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-header .ventas-cruzadas-titulo {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  margin: 0;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-header .ventas-cruzadas-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-header .ventas-cruzadas-toggle svg {
  width: 16px;
  height: 16px;
  stroke: #1D1D1D;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-header .ventas-cruzadas-toggle:hover {
  opacity: 0.7;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-header .ventas-cruzadas-toggle.active {
  transform: rotate(180deg);
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido.active {
  height: var(--target-height);
  opacity: 1;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-splide {
  margin-bottom: 20px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-splide .splide__track {
  overflow: visible;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-splide .splide__list {
  display: flex;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-splide .splide__slide {
  height: auto;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-imagen-principal,
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-imagen-hover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  transition: opacity 0.5s ease-in-out;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-imagen-principal {
  opacity: 1;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-imagen-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen:hover .ventas-cruzadas-imagen-principal {
  opacity: 0;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen:hover .ventas-cruzadas-imagen-hover {
  opacity: 1;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox:checked + .ventas-cruzadas-checkbox-label {
  background-color: black;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox:checked + .ventas-cruzadas-checkbox-label svg {
  opacity: 1;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox:checked + .ventas-cruzadas-checkbox-label svg path {
  fill: #fff;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox-label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 26px;
  height: 26px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  cursor: pointer;
  z-index: 1;
  border: 1px solid #000;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox-label svg {
  width: 14px;
  height: 9px;
  transition: opacity 0.3s ease;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-imagen .ventas-cruzadas-checkbox-label svg path {
  fill: #000;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-info .ventas-cruzadas-nombre {
  color: #1D1D1D;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 21px;
  margin: 0 0 8px 0;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-info .ventas-cruzadas-precio {
  display: flex;
  gap: 10px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-info .ventas-cruzadas-precio .ventas-cruzadas-precio-actual {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-item .ventas-cruzadas-info .ventas-cruzadas-precio .ventas-cruzadas-precio-original {
  color: #1D1D1D;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  text-decoration-line: line-through;
  align-self: flex-start;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-footer .btn-anadir-todo-carrito {
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-footer .btn-anadir-todo-carrito:hover {
  background-color: #333;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-footer .btn-anadir-todo-carrito:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.single-product-page .contenedor .informacion-producto .ventas-cruzadas-producto .ventas-cruzadas-contenido .ventas-cruzadas-vacio {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 20px 0;
}

.productos-relacionados {
  min-height: auto;
  background: #FAFAFA;
  padding: 50px 0;
}
.productos-relacionados .contenedor .contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.productos-relacionados .contenedor .contenido p {
  color: #000;
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  margin-bottom: 5px;
}
.productos-relacionados .contenedor .contenido h2 {
  color: #000;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
.productos-relacionados .contenedor {
  margin-bottom: 30px;
}
.productos-relacionados .carrusel-productos-relacionados .splide .splide__pagination {
  bottom: -30px;
}
.productos-relacionados .carrusel-productos-relacionados .splide .splide__pagination li .splide__pagination__page {
  background: #D9D9D9;
  opacity: 0.5;
}
.productos-relacionados .carrusel-productos-relacionados .splide .splide__pagination li .splide__pagination__page.is-active {
  transform: scale(1);
  opacity: 1;
}
.productos-relacionados .carrusel-productos-relacionados .splide .splide__pagination li .splide__pagination__page:focus {
  outline: none;
}

.carrito-compras {
  min-height: auto;
  padding: 50px 0 100px 0;
}
.carrito-compras .breadcrumb-carrito {
  width: 100%;
  margin-bottom: 20px;
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}
.carrito-compras .breadcrumb-carrito .categoria-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #1D1D1D;
  font-size: 10px;
  margin-bottom: 20px;
}
.carrito-compras .breadcrumb-carrito .categoria-header__breadcrumb a {
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  line-height: 15px;
  text-decoration: none;
}
.carrito-compras .breadcrumb-carrito .categoria-header__breadcrumb span {
  color: #1D1D1D;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 15px;
}
.carrito-compras .breadcrumb-carrito .categoria-header__breadcrumb svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
.carrito-compras .contenedor {
  text-align: center;
}
.carrito-compras .contenedor .titulo-carrito {
  color: #000;
  text-align: center;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 20px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido {
    flex-direction: column;
  }
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-width: 45.938rem;
}
@media (max-width: 1024px) {
  .carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito {
    max-width: 100%;
  }
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito h2 {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  margin: 0;
  text-align: left;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito {
  display: flex;
  gap: 15px;
  padding: 30px 0;
  border-bottom: 1px solid #1D1D1D;
  position: relative;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito:last-child {
  border-bottom: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-imagen {
  position: relative;
  flex-shrink: 0;
  max-width: 84px;
  height: 109px;
  overflow: hidden;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-imagen a {
  display: block;
  width: 100%;
  height: 100%;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-imagen .cantidad-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: #1D1D1D;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-nombre {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-nombre {
    margin-right: 12px;
  }
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-nombre a {
  color: #1D1D1D;
  text-decoration: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-atributos {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 5px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-atributos .atributo-item {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-atributos .atributo-item strong {
  font-weight: 700;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .precio-actual {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .precio-original {
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  text-decoration-line: line-through;
  text-decoration: line-through;
  align-self: flex-start;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #1D1D1D;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  padding: 0;
  transition: all 0.3s ease;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-btn:hover {
  background: #1D1D1D;
  color: #FFF;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-btn--menos {
  border-right: 1px solid #1D1D1D;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-btn--mas {
  border-left: 1px solid #1D1D1D;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-input {
  width: 40px;
  height: 28px;
  text-align: center;
  border: none;
  padding: 0;
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 300;
  line-height: 18px;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-input::-webkit-inner-spin-button, .carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-info .item-precio .cantidad-controls .cantidad-input:focus {
  outline: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-eliminar {
  position: absolute;
  top: 30px;
  right: 0;
  display: flex;
  padding: 0;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-eliminar .remove {
  width: 7.5px;
  height: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-eliminar .remove svg {
  width: 8px;
  height: 9px;
  display: block;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-eliminar .remove:hover {
  opacity: 0.7;
  background: transparent;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .productos-carrito .item-carrito .item-eliminar .remove:focus {
  outline: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra {
  flex-shrink: 0;
  max-width: 27.813rem;
  width: 100%;
}
@media (max-width: 1024px) {
  .carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra {
    max-width: 100%;
  }
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito {
  margin-bottom: 50px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group {
  display: flex;
  gap: 10px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group input[type=text] {
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  width: 100%;
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group input[type=text]:focus {
  outline: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group input[type=text]::-moz-placeholder {
  color: #000;
  opacity: 1;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group input[type=text]::placeholder {
  color: #000;
  opacity: 1;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group .btn-aplicar-cupon {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  cursor: pointer;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  white-space: nowrap;
  border-radius: 0;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .cupon-carrito .cupon-input-group .btn-aplicar-cupon:hover {
  background: #000;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito {
  margin-bottom: 30px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito h3 {
  color: #000;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 18px 0;
  text-align: left;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 11px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item:nth-last-child(2) {
  border-bottom: 1px solid #1D1D1D;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item:last-child {
  margin-bottom: 0;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item .total-label {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item .total-valor {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item .total-valor a.woocommerce-remove-coupon {
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  color: #1D1D1D;
  margin-left: 5px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-item .total-valor a.woocommerce-remove-coupon:hover {
  text-decoration: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-final {
  padding-top: 11px;
  padding-bottom: 0;
  border-bottom: none;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-final .total-label {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .total-carrito .total-final .total-valor {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .acciones-carrito {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .acciones-carrito .btn-ir-pagar {
  padding: 15px 20px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  color: #FFF;
  border: 1px solid #1D1D1D;
  cursor: pointer;
  text-decoration: none;
  display: block;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  border-radius: 0;
  line-height: 23px; /* 127.778% */
}
.carrito-compras .contenedor .carrito-contenedor .woocommerce-cart-form .carrito-contenido .resumen-compra .acciones-carrito .btn-ir-pagar:hover {
  background: #000;
}

.finalizar-compra {
  isolation: isolate;
  contain: layout paint;
}
@media (max-width: 768px) {
  .finalizar-compra {
    isolation: initial;
    contain: initial;
  }
}
.finalizar-compra .contenedor .woocommerce-message {
  display: none;
}
.finalizar-compra .contenedor .btn-ver-resumen-compra {
  display: none;
}
@media (max-width: 768px) {
  .finalizar-compra .contenedor .btn-ver-resumen-compra {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    padding: 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #F3F1EA;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
  }
  .finalizar-compra .contenedor .btn-ver-resumen-compra span {
    display: flex;
    align-items: center;
  }
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-container {
    flex-direction: column;
  }
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 32.125rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right {
  width: 100%;
  max-width: 32.125rem;
  position: sticky;
  top: 7.5rem;
  align-self: flex-start;
  flex-direction: column;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right .resumen-cabecera {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  display: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right .resumen-cabecera h3 {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right .resumen-cabecera .btn-cerrar-resumen-compra {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right .resumen-cabecera {
    display: flex;
  }
}
@media (max-width: 768px) {
  .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    transform: translate(0);
    transition: height 0.5s ease, padding 0.5s ease;
    display: flex;
    align-self: flex-end;
    background: #F6F6F6;
    z-index: 5;
    box-sizing: border-box;
  }
  .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right::before {
    display: none;
  }
  .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right.is-active {
    height: var(--target-height);
    padding: 60px 15px;
    overflow-y: auto;
    transform: translate(0);
    transition: height 0.5s ease, padding 0.5s ease;
  }
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-col-right::before {
  content: "";
  width: 100vw;
  height: 100vh;
  left: -74px;
  bottom: -204px;
  z-index: -1;
  position: absolute;
  background: #F6F6F6;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-section .section-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 30px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-section .section-description {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .billing-selectors-title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-top: 1.5rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .billing-selectors-description {
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 300;
  line-height: 21px;
  margin-bottom: 1.5rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .billing-select-wrapper {
  position: relative;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .billing-select-wrapper .woocommerce-input-wrapper {
  position: relative;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .billing-select-wrapper .woocommerce-input-wrapper .billing-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
  width: 12px;
  height: 12px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row {
  margin-bottom: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=text],
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=email],
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=tel],
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=number],
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper select,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper textarea {
  width: 100%;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=text]:focus,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=email]:focus,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=tel]:focus,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=number]:focus,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper select:focus,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper textarea:focus {
  outline: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=text]::-moz-placeholder, .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=email]::-moz-placeholder, .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=tel]::-moz-placeholder, .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=number]::-moz-placeholder, .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper select::-moz-placeholder, .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper textarea::-moz-placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=text]::placeholder,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=email]::placeholder,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=tel]::placeholder,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper input[type=number]::placeholder,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper select::placeholder,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper textarea::placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row .woocommerce-input-wrapper select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 2.5rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .form-row-wide {
  width: 100%;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper {
  margin-top: 1.5rem;
  margin-bottom: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #1D1D1D;
  padding-left: 1.5rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper label input[type=checkbox] + span {
  position: relative;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper label input[type=checkbox] + span::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border: 2px solid #1D1D1D;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper label input[type=checkbox]:checked + span::before {
  background-color: #1D1D1D;
  border-color: #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-checkbox-wrapper label input[type=checkbox]:not(:checked) + span:hover::before {
  border-color: #666;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container.is-active {
  height: var(--target-height);
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container .create-account-fields-inner {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container .create-account-fields-inner .form-row {
  margin-bottom: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container .create-account-fields-inner .form-row .woocommerce-input-wrapper input[type=password] {
  width: 100%;
  display: flex;
  padding: 9px 10px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container .create-account-fields-inner .form-row .woocommerce-input-wrapper input[type=password]:focus {
  outline: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container .create-account-fields-inner .form-row .woocommerce-input-wrapper input[type=password]::-moz-placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-fields .create-account-fields-container .create-account-fields-inner .form-row .woocommerce-input-wrapper input[type=password]::placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-location-message {
  padding: 1rem;
  background-color: #FFF9E6;
  border: 1px solid #FFD700;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-location-message p {
  margin: 0;
  color: #856404;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods .woocommerce-shipping-destination,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods .woocommerce-shipping-contents,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods .woocommerce-shipping-calculator,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods tr.woocommerce-shipping-totals,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods th,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods td {
  display: none !important;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method + .shipping-method-label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method + .shipping-method-label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method + .shipping-method-label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding-left: 1.5rem;
  min-height: 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #1D1D1D;
  margin: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method + .shipping-method-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border: 2px solid #1D1D1D;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method:checked + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method:checked + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method:checked + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method:checked + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method:checked + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method:checked + .shipping-method-label::before {
  background-color: #1D1D1D;
  border-color: #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method:not(:checked) + label:hover::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=radio].shipping_method:not(:checked) + .shipping-method-label:hover::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method:not(:checked) + label:hover::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=radio].shipping_method:not(:checked) + .shipping-method-label:hover::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method:not(:checked) + label:hover::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=radio].shipping_method:not(:checked) + .shipping-method-label:hover::before {
  border-color: #666;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method {
  display: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method + .shipping-method-label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method + .shipping-method-label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method + .shipping-method-label {
  padding-left: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method + label::before, .finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method + label::after,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.woocommerce-shipping-methods li input[type=hidden].shipping_method + .shipping-method-label::after,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method + label::after,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods ul.shipping-methods-list li input[type=hidden].shipping_method + .shipping-method-label::after,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method + label::after,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method + .shipping-method-label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .opciones-envio .shipping-methods #shipping_method li input[type=hidden].shipping_method + .shipping-method-label::after {
  display: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit #place_order {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  background: #000;
  color: #F3F1EA;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  border: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit #place_order:hover {
  background: #2C2C2C;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit #place_order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment {
  background: transparent;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .place-order {
  display: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods::before {
  display: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method input[type=radio].input-radio,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method input[type=radio].input-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method input[type=radio].input-radio + label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method input[type=radio].input-radio + label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding-left: 1.5rem;
  min-height: 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: #1D1D1D;
  margin: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method input[type=radio].input-radio + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method input[type=radio].input-radio + label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border: 2px solid #1D1D1D;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method input[type=radio].input-radio:checked + label::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method input[type=radio].input-radio:checked + label::before {
  background-color: #1D1D1D;
  border-color: #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method input[type=radio].input-radio:not(:checked) + label:hover::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method input[type=radio].input-radio:not(:checked) + label:hover::before {
  border-color: #666;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method .payment_box,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method .payment_box {
  margin-top: 1rem;
  padding: 1rem;
  background: #f5f5f5;
  border-radius: 4px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .payment_method .payment_box::before,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .metodo-pago #payment .wc_payment_methods .wc_payment_method .payment_box::before {
  display: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit {
  margin-top: 2rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit button#place_order {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit button#place_order:hover {
  opacity: 0.9;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .checkout-submit button#place_order:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra {
  background: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 50px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item:first-child {
  padding: 0;
  padding-bottom: 1rem;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item:last-child {
  border: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item-image-wrapper {
  position: relative;
  width: 69px;
  min-width: 69px;
  height: 76px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 0;
  display: block;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item-image-wrapper .resumen-compra-item-quantity-badge {
  position: absolute;
  top: 2px;
  right: 1.64px;
  width: 20px;
  height: 20px;
  background-color: #1D1D1D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item .resumen-compra-item-content .resumen-compra-item-name {
  flex: 1;
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 15px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item .resumen-compra-item-content .resumen-compra-item-name a {
  text-decoration: none;
  color: #000;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item .resumen-compra-item-content .resumen-compra-item-price {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item .resumen-compra-item-content .resumen-compra-item-price .precio-actual {
  color: #1D1D1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-item .resumen-compra-item-content .resumen-compra-item-price .precio-original {
  color: #999;
  font-size: 13px;
  font-style: normal;
  align-self: flex-start;
  font-weight: 300;
  line-height: 18px;
  text-decoration: line-through;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-compra-totales {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item .total-label {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #000;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item .total-value {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: #000;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item .total-value a.woocommerce-remove-coupon {
  font-size: 14px;
  font-weight: 400;
  text-decoration: underline;
  color: #1D1D1D;
  margin-left: 5px;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item .total-value a.woocommerce-remove-coupon:hover {
  text-decoration: none;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item.order-total {
  padding-top: 0.75rem;
  border-top: 1px solid #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item.order-total .total-label,
.finalizar-compra .contenedor .woocommerce-checkout.checkout-personalizado .resumen-compra .resumen-total-item.order-total .total-value {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-header .thankyou-title {
  color: #1D1D1D;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 45px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-header .thankyou-subtitle {
  color: var(--6, #1D1D1D);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-order-summary-box {
  display: flex;
  padding: 30px 50px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 20px;
  background: #F8F8F8;
  margin-bottom: 50px;
  gap: 15px;
}
@media (max-width: 768px) {
  .finalizar-compra .contenedor .woocommerce-order .thankyou-order-summary-box {
    flex-direction: column;
    align-items: baseline;
  }
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-order-summary-box .thankyou-summary-item {
  display: flex;
  flex-direction: column;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-order-summary-box .thankyou-summary-item .thankyou-summary-label {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 23px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-order-summary-box .thankyou-summary-item .thankyou-summary-value {
  color: #1D1D1D;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 23px;
}
.finalizar-compra .contenedor .woocommerce-order .details-order {
  margin-bottom: 80px;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__title {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 1rem;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__content {
  width: 100%;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__header {
  display: grid;
  grid-template-columns: 1fr auto;
  background-color: #1D1D1D;
  color: #F5F5F5;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  padding: 10px 20px;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__header .details-order__col-producto,
.finalizar-compra .contenedor .woocommerce-order .details-order__header .details-order__col-total {
  font-weight: 700;
  font-size: 15px;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__header .details-order__col-total {
  text-align: right;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__body {
  background-color: #F5F5F5;
  border-top: none;
  display: flex;
  padding: 30px 20px;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row {
  display: grid;
  grid-template-columns: 1fr auto;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row:last-child {
  border-bottom: none;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row .details-order__col-producto {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row .details-order__col-producto a {
  color: #000;
  text-decoration: none;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row .details-order__col-producto a:hover {
  text-decoration: underline;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row .details-order__col-total {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  text-align: right;
  display: flex;
  align-items: center;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row.details-order__subtotal .details-order__col-total {
  font-weight: 700;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__row.details-order__subtotal .details-order__col-producto {
  font-weight: 300;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__footer {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  background: #F5F5F5;
  border-top: 2px solid #1D1D1D;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__footer .details-order__col-producto,
.finalizar-compra .contenedor .woocommerce-order .details-order__footer .details-order__col-total {
  color: #1D1D1D;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
.finalizar-compra .contenedor .woocommerce-order .details-order__footer .details-order__col-total {
  text-align: right;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking {
  display: flex;
  padding: 30px 40px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  align-self: stretch;
  background: #F5F5F5;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .finalizar-compra .contenedor .woocommerce-order .details-banking {
    padding: 30px 15px;
  }
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__title {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__content .details-banking__item {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 0 0 calc(33.333% - 34px);
  background: #Fff;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__content .details-banking__item .details-banking__field {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  color: #1D1D1D;
  font-size: 15px;
  line-height: 20px;
  white-space: nowrap;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__content .details-banking__item .details-banking__field .details-banking__label {
  font-weight: 300;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__content .details-banking__item .details-banking__field .details-banking__value {
  font-weight: 700;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__text {
  color: #1D1D1D;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.finalizar-compra .contenedor .woocommerce-order .details-banking__btn-whatsapp {
  display: flex;
  padding: 12px 25px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 28px;
  background: #57D163;
  color: #F3F1EA;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-actions .thankyou-btn-home {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #F3F1EA;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.finalizar-compra .contenedor .woocommerce-order .thankyou-actions .thankyou-btn-home:hover {
  background: #2C2C2C;
}

/**
 * Estilos para la página de Mi Cuenta
 */
.cuenta .woocommerce-message,
.cuenta .woocommerce-error,
.cuenta .woocommerce-info,
.cuenta .woocommerce-notices-wrapper {
  display: none !important;
}
.cuenta {
  min-height: auto;
}
.cuenta .contenedor {
  position: relative;
}
.cuenta .contenedor .cuenta-btn-volver {
  display: none;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 20px;
  color: #1D1D1D;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: underline;
}
.cuenta .contenedor .cuenta-btn-volver:hover {
  opacity: 0.7;
}
.cuenta .contenedor .cuenta-btn-volver svg {
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .cuenta .contenedor .cuenta-btn-volver {
    display: none !important;
  }
}
.cuenta .contenedor .cuenta-title {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 50px;
}
.cuenta .contenedor .cuenta-section-title {
  display: none;
  margin-bottom: 20px;
  color: #0D0D0D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
}
@media (max-width: 768px) {
  .cuenta .contenedor .cuenta-section-title {
    display: block;
  }
}
.cuenta .contenedor .cuenta-wrapper {
  display: grid;
  gap: 50px;
}
@media (max-width: 768px) {
  .cuenta .contenedor .cuenta-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
  }
}
@media (max-width: 768px) {
  .cuenta .contenedor .cuenta-wrapper .woocommerce-MyAccount-navigation {
    display: block;
  }
  .cuenta .contenedor .cuenta-wrapper .woocommerce-MyAccount-content {
    display: none;
  }
  .cuenta .contenedor .cuenta-wrapper.content-active .woocommerce-MyAccount-navigation {
    display: none;
  }
  .cuenta .contenedor .cuenta-wrapper.content-active .woocommerce-MyAccount-content {
    display: block;
  }
}
.cuenta .contenedor .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cuenta .contenedor .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 27px;
}
.cuenta .contenedor .woocommerce-MyAccount-navigation ul li:last-child a svg {
  display: none;
}
.cuenta .contenedor .woocommerce-MyAccount-navigation ul li a {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
  text-decoration: none;
  transition: font-weight 0.2s ease;
  display: flex;
  align-items: center;
}
.cuenta .contenedor .woocommerce-MyAccount-navigation ul li a svg {
  display: none;
}
@media (max-width: 768px) {
  .cuenta .contenedor .woocommerce-MyAccount-navigation ul li a {
    justify-content: space-between;
  }
  .cuenta .contenedor .woocommerce-MyAccount-navigation ul li a svg {
    display: block;
    flex-shrink: 0;
  }
}
.cuenta .contenedor .woocommerce-MyAccount-navigation ul li.is-active a {
  font-weight: 700;
}
.cuenta .contenedor .theme-invitro-edit-account-form {
  max-width: 100%;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-input {
  width: 100%;
  padding: 9px 40px 9px 10px;
  border: none;
  border-bottom: 1px solid #1D1D1D;
  background-color: transparent;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #1D1D1D;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-input:focus {
  outline: none;
  border-bottom-color: #1D1D1D;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-input::-moz-placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-input::placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231D1D1D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-select option {
  color: #1D1D1D;
  background-color: #ffffff;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-input-wrapper .theme-invitro-edit-icon {
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  color: #1D1D1D;
  pointer-events: none;
  flex-shrink: 0;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-field {
  margin-bottom: 20px;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-field.theme-invitro-field-full {
  width: 100%;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-field.theme-invitro-field-half {
  flex: 1;
  min-width: 0;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-row {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-row {
    flex-direction: column;
    gap: 0;
  }
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-submit {
  margin-top: 30px;
  text-align: left;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-submit .theme-invitro-button {
  padding: 10px 30px;
  background-color: #1D1D1D;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
  color: #F3F1EA;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 21px;
  text-transform: none;
  min-width: 200px;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-submit .theme-invitro-button:hover {
  background-color: #333;
}
.cuenta .contenedor .theme-invitro-edit-account-form .theme-invitro-submit .theme-invitro-button:active {
  transform: scale(0.98);
}
.cuenta .contenedor .theme-invitro-orders-title {
  color: #1D1D1D;
  font-size: 18px;
  text-align: left;
  font-weight: 300;
  line-height: 23px;
  margin-bottom: 30px;
}
.cuenta .contenedor .theme-invitro-orders-table {
  width: 100%;
  margin-bottom: 30px;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-orders-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr 1fr;
  margin-bottom: 10px;
  gap: 15px;
  background-color: #1D1D1D;
  color: #F3F1EA;
  padding: 15px;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-orders-header {
    grid-template-columns: 1fr;
    gap: 0;
    display: none;
  }
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-orders-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr 1fr;
  margin-bottom: 5px;
  gap: 15px;
  align-items: center;
  background-color: #F4F4F4;
  padding: 15px;
  border-bottom: 1px solid #E0E0E0;
  transition: background-color 0.2s ease;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row:hover {
  background-color: #EEEEEE;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 15px;
  }
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-number-col::before {
    content: "# de pedidos";
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #1D1D1D;
    margin-bottom: 2px;
  }
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-number-col {
    display: flex;
    justify-content: space-between;
  }
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-number-col .theme-invitro-order-link {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-number-col .theme-invitro-order-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-date-col::before {
    content: "Fecha";
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #1D1D1D;
    margin-bottom: 2px;
  }
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-date-col {
    display: flex;
    justify-content: space-between;
  }
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-date-col .theme-invitro-order-date {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col::before {
    content: "Estado";
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #1D1D1D;
    margin-bottom: 2px;
  }
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col {
    display: flex;
    justify-content: space-between;
  }
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col .theme-invitro-order-status {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col .theme-invitro-order-status.theme-invitro-status-completed {
  color: #00C876;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col .theme-invitro-order-status.theme-invitro-status-cancelled {
  color: #FF4949;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col .theme-invitro-order-status.theme-invitro-status-processing {
  color: #1D1D1D;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-status-col .theme-invitro-order-status.theme-invitro-status-pending {
  color: #1D1D1D;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-total-col::before {
    content: "Total";
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #1D1D1D;
    margin-bottom: 2px;
  }
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-total-col {
    display: flex;
    justify-content: space-between;
  }
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-total-col .theme-invitro-order-total {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
@media (max-width: 768px) {
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-actions-col::before {
    content: "Ver producto";
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #1D1D1D;
    margin-bottom: 2px;
  }
  .cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-actions-col {
    display: flex;
    justify-content: space-between;
  }
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-actions-col .theme-invitro-view-order-link {
  color: var(--6, #1D1D1D);
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.cuenta .contenedor .theme-invitro-orders-table .theme-invitro-order-row .theme-invitro-order-actions-col .theme-invitro-view-order-link:hover {
  text-decoration: none;
}
.cuenta .contenedor .theme-invitro-orders-pagination {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
.cuenta .contenedor .theme-invitro-orders-pagination .theme-invitro-pagination-link {
  padding: 10px 20px;
  background-color: #1D1D1D;
  color: #F3F1EA;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
.cuenta .contenedor .theme-invitro-orders-pagination .theme-invitro-pagination-link:hover {
  background-color: #333;
}
.cuenta .contenedor .theme-invitro-order-view {
  width: 100%;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-back {
  margin-bottom: 50px;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-back .theme-invitro-back-link {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: underline;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-back .theme-invitro-back-link:hover {
  text-decoration: none;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-header {
  display: flex;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  background: #F4F4F4;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-header .theme-invitro-order-header-top {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-header .theme-invitro-order-header-top .theme-invitro-order-title {
  color: #1D1D1D;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-header .theme-invitro-order-header-top .theme-invitro-order-total-header {
  color: #1D1D1D;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-header .theme-invitro-order-status-text {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
}
.cuenta .contenedor .theme-invitro-order-view .theme-invitro-order-header .theme-invitro-order-status-text strong {
  font-weight: 700;
}
.cuenta .contenedor .theme-invitro-order-details {
  width: 100%;
  margin-bottom: 20px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-products {
  margin-bottom: 10px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-products .theme-invitro-order-products-header {
  display: flex;
  padding: 10px 20px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
  justify-content: space-between;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 10px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-products .theme-invitro-order-products-header .theme-invitro-product-col {
  flex: 1;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-products .theme-invitro-order-products-header .theme-invitro-subtotal-col {
  text-align: right;
  min-width: 120px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  margin-bottom: 10px;
  gap: 20px;
  background-color: #F4F4F4;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item:last-child {
  border-bottom: none;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-image {
  width: 69px;
  height: 76px;
  flex-shrink: 0;
  align-self: flex-start;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-image .theme-invitro-order-item-placeholder {
  width: 100%;
  height: 100%;
  background-color: #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #999;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-content .theme-invitro-order-item-info {
  flex: 1;
  min-width: 0;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-content .theme-invitro-order-item-info .theme-invitro-order-item-name {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 5px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-content .theme-invitro-order-item-info .theme-invitro-order-item-name a {
  color: #1D1D1D;
  text-decoration: none;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-content .theme-invitro-order-item-info .theme-invitro-order-item-name a:hover {
  text-decoration: underline;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-content .theme-invitro-order-item-info .theme-invitro-order-item-quantity {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-item .theme-invitro-order-item-content .theme-invitro-order-item-subtotal {
  color: #1D1D1D;
  font-size: 18px;
  text-align: right;
  font-weight: 700;
  line-height: 23px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-summary {
  background-color: #F4F4F4;
  padding: 10px 20px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-summary .theme-invitro-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-summary .theme-invitro-summary-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-summary .theme-invitro-summary-row .theme-invitro-summary-label {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.cuenta .contenedor .theme-invitro-order-details .theme-invitro-order-summary .theme-invitro-summary-row .theme-invitro-summary-value {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
}
.cuenta .contenedor .theme-invitro-order-customer-details {
  background-color: #F4F4F4;
  padding: 20px;
}
.cuenta .contenedor .theme-invitro-order-customer-details .theme-invitro-customer-details-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cuenta .contenedor .theme-invitro-order-customer-details .theme-invitro-customer-details-list .theme-invitro-customer-detail-item {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}
.cuenta .contenedor .theme-invitro-order-customer-details .theme-invitro-customer-details-list .theme-invitro-customer-detail-item .theme-invitro-detail-label {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .theme-invitro-order-customer-details .theme-invitro-customer-details-list .theme-invitro-customer-detail-item .theme-invitro-detail-value {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .ti-wishlist-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label {
  color: #1D1D1D;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 23px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label .ti-wishlist-checkbox-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #1D1D1D;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label .ti-wishlist-checkbox-custom svg {
  width: 11px;
  height: 7px;
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label .ti-wishlist-checkbox-custom svg path {
  transition: fill 0.2s ease;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label input[type=checkbox]:checked + .ti-wishlist-checkbox-custom {
  background-color: #1D1D1D;
  border-color: #1D1D1D;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label input[type=checkbox]:checked + .ti-wishlist-checkbox-custom svg {
  opacity: 1;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label input[type=checkbox]:checked + .ti-wishlist-checkbox-custom svg path {
  fill: #fff;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label input[type=checkbox]:not(:checked) + .ti-wishlist-checkbox-custom {
  background-color: transparent;
  border-color: #1D1D1D;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-select-all .ti-wishlist-checkbox-label input[type=checkbox]:not(:checked) + .ti-wishlist-checkbox-custom svg {
  opacity: 1;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: start;
  gap: 15px;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding-top: 0.5rem;
  position: relative;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item .ti-wishlist-checkbox-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid #1D1D1D;
  border-radius: 2px;
  transition: all 0.2s ease;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item .ti-wishlist-checkbox-custom svg {
  width: 11px;
  height: 7px;
  display: block;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item .ti-wishlist-checkbox-custom svg path {
  transition: fill 0.2s ease;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item input[type=checkbox]:checked + .ti-wishlist-checkbox-custom {
  background-color: #1D1D1D;
  border-color: #1D1D1D;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item input[type=checkbox]:checked + .ti-wishlist-checkbox-custom svg {
  opacity: 1;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item input[type=checkbox]:checked + .ti-wishlist-checkbox-custom svg path {
  fill: #fff;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item input[type=checkbox]:not(:checked) + .ti-wishlist-checkbox-custom {
  background-color: transparent;
  border-color: #1D1D1D;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-checkbox-item input[type=checkbox]:not(:checked) + .ti-wishlist-checkbox-custom svg {
  opacity: 1;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-imagen {
  position: relative;
  width: 69px;
  height: 76px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-imagen {
    align-self: flex-start;
  }
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-imagen .ti-wishlist-cantidad-producto {
  position: absolute;
  top: 2px;
  right: 1.64px;
  background-color: #1D1D1D;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content {
  display: flex;
}
@media (max-width: 768px) {
  .cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content {
    flex-direction: column;
    gap: 10px;
  }
  .cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0 !important;
  }
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex-grow: 1;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-nombre {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-nombre a {
  color: inherit;
  text-decoration: none;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-atributos {
  display: flex;
  gap: 30px;
  color: #000;
  font-size: 13px;
  line-height: 18px;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-atributos .producto-atributo-item {
  display: block;
  font-weight: 300;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-atributos .producto-atributo-item strong {
  font-weight: 700;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-cantidad-precio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-cantidad-precio .ti-wishlist-producto-precio {
  display: flex;
  gap: 0.25rem;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-cantidad-precio .ti-wishlist-producto-precio .ti-wishlist-precio-actual {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-info .ti-wishlist-producto-cantidad-precio .ti-wishlist-producto-precio .ti-wishlist-precio-original {
  font-size: 13px;
  color: #1D1D1D;
  text-decoration: line-through;
  align-self: flex-start;
  font-weight: 300;
  line-height: 18px;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad {
  display: flex;
  margin-left: 35px;
  align-items: center;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  height: -moz-fit-content;
  height: fit-content;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad .ti-wishlist-cantidad-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  color: #1D1D1D;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad .ti-wishlist-cantidad-btn:hover {
  background-color: #e0e0e0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad .ti-wishlist-cantidad-input {
  width: 40px;
  text-align: center;
  border: none;
  border-left: 1px solid #E0E0E0;
  border-right: 1px solid #E0E0E0;
  -webkit-appearance: textfield;
          appearance: textfield;
  -moz-appearance: textfield;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad .ti-wishlist-cantidad-input::-webkit-outer-spin-button, .cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-producto-content .ti-wishlist-producto-cantidad .ti-wishlist-cantidad-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-btn-eliminar-producto {
  background: none;
  border: none;
  cursor: pointer;
  color: #6678A1;
  padding: 0.5rem;
  flex-shrink: 0;
  padding-top: 0.5rem;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-btn-eliminar-producto:hover {
  color: #FF0000;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-products .ti-wishlist-producto .item-contenido .ti-wishlist-btn-eliminar-producto svg {
  width: 8px;
  height: 9px;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-actions .ti-wishlist-btn {
  background-color: #1D1D1D;
  align-self: flex-start;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-actions .ti-wishlist-btn:hover {
  background-color: #333;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-actions .ti-wishlist-btn--remove-all {
  background: none;
  color: #1D1D1D;
  font-weight: 500;
  text-decoration: underline;
  padding: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-actions .ti-wishlist-btn--remove-all:hover {
  color: #FF0000;
  background: none;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-empty {
  text-align: center;
  padding: 3rem 0;
  gap: 1rem;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-empty svg {
  width: 60px;
  height: 60px;
  color: #6678A1;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-empty h3 {
  font-size: 1.5rem;
  color: #1D1D1D;
  margin: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-empty p {
  font-size: 1rem;
  color: #6678A1;
  margin: 0;
}
.cuenta .contenedor .ti-wishlist-wrapper .ti-wishlist-empty .ti-wishlist-btn {
  margin-top: 1rem;
  color: #1D1D1D;
}
.cuenta .contenedor .bienvenido-title {
  color: #0D0D0D;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 20px;
}
.cuenta .contenedor .bienvenido-title strong {
  font-weight: 700;
}

.propuesta-laboral {
  min-height: auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .propuesta-laboral {
    padding: 50px 0;
  }
}
.propuesta-laboral .contenedor {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .propuesta-laboral .contenedor {
    flex-direction: column;
    gap: 30px;
  }
}
.propuesta-laboral .contenedor .contenido {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.propuesta-laboral .contenedor .contenido__titulo {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.propuesta-laboral .contenedor .contenido__descripcion {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.propuesta-laboral .contenedor .video {
  width: 100%;
  max-height: 22.438rem;
  overflow: hidden;
}
.propuesta-laboral .contenedor .video .video-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.propuesta-laboral .contenedor .video .video-thumbnail {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.propuesta-laboral .contenedor .video .video-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.propuesta-laboral .contenedor .video .video-thumbnail .video-poster {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.propuesta-laboral .contenedor .video .video-thumbnail .video-placeholder {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  background: #1D1D1D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.propuesta-laboral .contenedor .video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.propuesta-laboral .contenedor .video .video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.propuesta-laboral .contenedor .video .video-play-button svg {
  width: 100%;
  height: 100%;
}
.propuesta-laboral .contenedor .video .video-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.propuesta-laboral .contenedor .video .video-popup.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 10000;
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-content .video-popup-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-content .video-popup-close:hover {
  transform: scale(1.1);
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-content .video-popup-close svg {
  width: 30px;
  height: 30px;
  fill: white;
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-content .video-popup-player {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.propuesta-laboral .contenedor .video .video-popup .video-popup-content .video-popup-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.vacantes {
  min-height: auto;
}
.vacantes .contenedor {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vacantes .contenedor .titulo-propuesta {
  color: #1D1D1D;
  text-align: center;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 50px;
}
.vacantes .contenedor .filtros {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.vacantes .contenedor .filtros .izquierda {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 768px) {
  .vacantes .contenedor .filtros .izquierda {
    gap: 15px;
  }
}
.vacantes .contenedor .filtros .izquierda .busqueda {
  min-width: 345px;
  display: flex;
  padding: 10px 15px;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  align-self: stretch;
  border: 1px solid rgba(185, 185, 185, 0.2);
  background: rgba(185, 185, 185, 0.05);
}
.vacantes .contenedor .filtros .izquierda .busqueda input {
  width: 100%;
  border: none;
  background: transparent;
}
.vacantes .contenedor .filtros .izquierda .busqueda input:focus {
  outline: none;
}
.vacantes .contenedor .filtros .izquierda .busqueda input::-moz-placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.vacantes .contenedor .filtros .izquierda .busqueda input::placeholder {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.vacantes .contenedor .filtros .buscar {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
}
.vacantes .contenedor .filtros .buscar:hover {
  background: #2C2C2C;
}
.vacantes .contenedor .lista-trabajos {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.vacantes .contenedor .lista-trabajos::-webkit-scrollbar {
  display: none;
}
.vacantes .contenedor .lista-trabajos table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  display: table;
}
.vacantes .contenedor .lista-trabajos table thead {
  background: #1D1D1D;
  display: table-header-group;
  margin-bottom: 50px;
}
.vacantes .contenedor .lista-trabajos table thead tr {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
}
.vacantes .contenedor .lista-trabajos table thead tr th {
  text-align: left;
  padding: 10px;
  color: #F3F1EA;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  white-space: nowrap;
}
.vacantes .contenedor .lista-trabajos table thead tr th:first-child {
  padding-left: 20px;
}
.vacantes .contenedor .lista-trabajos table thead tr th:last-child {
  padding-right: 20px;
}
.vacantes .contenedor .lista-trabajos table tbody {
  display: table-row-group;
}
.vacantes .contenedor .lista-trabajos table tbody tr {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  background: #FDFDFD;
  border-bottom: 1px solid rgba(185, 185, 185, 0.2);
  transition: background-color 0.2s ease;
}
.vacantes .contenedor .lista-trabajos table tbody tr.trabajo-row-clickable {
  cursor: pointer;
}
.vacantes .contenedor .lista-trabajos table tbody tr:nth-child(even) {
  background: #FFFFFF;
}
.vacantes .contenedor .lista-trabajos table tbody tr:hover {
  background: #F3F1EA;
}
.vacantes .contenedor .lista-trabajos table tbody tr td {
  padding: 15px;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  color: #1D1D1D;
}
.vacantes .contenedor .lista-trabajos table tbody tr td:first-child {
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vacantes .contenedor .lista-trabajos table tbody tr td:first-child .vacante-numero {
  color: #1D1D1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  flex-shrink: 0;
}
.vacantes .contenedor .lista-trabajos table tbody tr td:first-child a {
  color: #1D1D1D;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
.vacantes .contenedor .lista-trabajos table tbody tr td:first-child a:hover {
  color: #1D1D1D;
  text-decoration: none;
}
.vacantes .contenedor .lista-trabajos table tbody tr td:last-child {
  padding-right: 20px;
}
.vacantes .contenedor .lista-trabajos .no-resultados {
  text-align: center;
  padding: 40px 20px;
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.vacantes .contenedor .elementos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .vacantes .contenedor .elementos {
    justify-content: center;
    gap: 15px;
  }
}
.vacantes .contenedor .elementos .elemento {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vacantes .contenedor .elementos .elemento p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin: 0;
}
.vacantes .contenedor .elementos .elemento .per-page-form {
  display: flex;
  align-items: center;
}
.vacantes .contenedor .elementos .elemento .per-page-form .per-page-input {
  display: flex;
  width: 57px;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(185, 185, 185, 0.05);
  border: none;
  color: #1D1D1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}
.vacantes .contenedor .elementos .elemento .per-page-form .per-page-input::-webkit-inner-spin-button, .vacantes .contenedor .elementos .elemento .per-page-form .per-page-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.vacantes .contenedor .elementos .elemento .per-page-form .per-page-input:focus {
  outline: none;
}
.vacantes .contenedor .elementos .paginacion {
  display: flex;
  align-items: center;
  gap: 15px;
}
.vacantes .contenedor .elementos .paginacion .total-elementos {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1D1D1D;
  color: #F3F1EA;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-btn:hover:not(.paginacion-btn--disabled) {
  background: #2C2C2C;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-btn--disabled {
  background: #1D1D1D;
  cursor: not-allowed;
  opacity: 1;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-btn--disabled:hover {
  transform: none;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-btn svg path {
  stroke: #F3F1EA;
  fill: #F3F1EA;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #FFFFFF;
  border-radius: 4px;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current .paginacion-page-input {
  display: flex;
  width: 57px;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  border-radius: 10px;
  background: rgba(185, 185, 185, 0.05);
  border: none;
  color: #1D1D1D;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  appearance: none;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current .paginacion-page-input::-webkit-inner-spin-button, .vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current .paginacion-page-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current .paginacion-page-input:focus {
  outline: none;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current .paginacion-page-number {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.vacantes .contenedor .elementos .paginacion .paginacion-controls .paginacion-current .paginacion-page-total {
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
}

.propuesta-laboral-2 {
  min-height: auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .propuesta-laboral-2 {
    padding: 50px 0;
  }
}
.propuesta-laboral-2 .contenedor {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .propuesta-laboral-2 .contenedor {
    gap: 30px;
    flex-direction: column;
  }
  .propuesta-laboral-2 .contenedor .imagen {
    order: 2;
  }
  .propuesta-laboral-2 .contenedor .contenido {
    order: 1;
  }
}
.propuesta-laboral-2 .contenedor .imagen {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-height: 20.313rem;
}
.propuesta-laboral-2 .contenedor .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.propuesta-laboral-2 .contenedor .contenido {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.propuesta-laboral-2 .contenedor .contenido__titulo {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.propuesta-laboral-2 .contenedor .contenido__descripcion {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}

.propuesta-laboral-3 {
  min-height: auto;
  padding: 50px;
}
@media (max-width: 768px) {
  .propuesta-laboral-3 {
    padding: 50px 0;
  }
}
.propuesta-laboral-3 .contenedor {
  display: flex;
  gap: 150px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .propuesta-laboral-3 .contenedor {
    gap: 30px;
    flex-direction: column;
  }
}
.propuesta-laboral-3 .contenedor .contenido {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.propuesta-laboral-3 .contenedor .contenido__titulo {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
.propuesta-laboral-3 .contenedor .contenido__descripcion {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.propuesta-laboral-3 .contenedor .imagen {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  max-height: 20.313rem;
}
.propuesta-laboral-3 .contenedor .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.contenido-trabajo {
  min-height: auto;
}
.contenido-trabajo .header-trabajo {
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.contenido-trabajo .header-trabajo__titulo {
  color: #1D1D1D;
  font-size: 40px;
  font-weight: 700;
  line-height: 45px;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .contenido-trabajo .header-trabajo__titulo {
    font-size: 30px;
  }
}
.contenido-trabajo .header-trabajo__etiquetas {
  display: flex;
  gap: 15px;
  margin-bottom: 6px;
}
.contenido-trabajo .header-trabajo__etiquetas .etiqueta-trabajo__item {
  display: flex;
  padding: 5px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  background: rgba(185, 185, 185, 0.2);
  color: #1D1D1D;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}
.contenido-trabajo .header-trabajo .atributo-trabajo {
  display: flex;
  gap: 10px;
  align-items: center;
}
.contenido-trabajo .header-trabajo .atributo-trabajo .icono {
  display: flex;
  padding: 6.5px 10px;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
}
.contenido-trabajo .header-trabajo .atributo-trabajo__texto {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contenido-trabajo .contenedor .contenido-principal {
  max-width: 51.75rem;
  width: 100%;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-trabajo {
  margin-bottom: 50px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-trabajo .contenido-titulo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-trabajo .contenido-titulo p {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-trabajo .contenido-titulo .icono {
  display: flex;
  padding: 6.5px 10px;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-trabajo .contenido-texto {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor .contenido-principal .requisitos-trabajo {
  margin-bottom: 50px;
}
.contenido-trabajo .contenedor .contenido-principal .requisitos-trabajo .requisitos-titulo {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.contenido-trabajo .contenedor .contenido-principal .requisitos-trabajo .requisitos-titulo .icono {
  display: flex;
  padding: 6.5px 10px;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
}
.contenido-trabajo .contenedor .contenido-principal .requisitos-trabajo .requisitos-titulo p {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.contenido-trabajo .contenedor .contenido-principal .requisitos-trabajo .requisitos-lista {
  padding-left: 40px;
}
.contenido-trabajo .contenedor .contenido-principal .requisitos-trabajo .requisitos-lista li {
  list-style: disc;
  margin-bottom: 5px;
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-adicional {
  margin-bottom: 50px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-adicional h2, .contenido-trabajo .contenedor .contenido-principal .contenido-adicional h3, .contenido-trabajo .contenedor .contenido-principal .contenido-adicional h4, .contenido-trabajo .contenedor .contenido-principal .contenido-adicional h5, .contenido-trabajo .contenedor .contenido-principal .contenido-adicional h6 {
  color: #1D1D1D;
  font-size: 20px;
  font-weight: 700;
  line-height: 25px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-adicional ul {
  padding-left: 40px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-adicional ul li {
  list-style: disc;
  margin-bottom: 5px;
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-adicional p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor .contenido-principal .contenido-discapacidad {
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  background: rgba(87, 209, 99, 0.1);
}
.contenido-trabajo .contenedor .contenido-principal .contenido-discapacidad p {
  color: #34A853;
  font-size: 18px;
  font-weight: 800;
  line-height: 23px;
}
@media (max-width: 768px) {
  .contenido-trabajo .contenedor .contenido-principal .contenido-discapacidad p {
    text-align: center;
  }
}
.contenido-trabajo .contenedor .sidebar-trabajo {
  max-width: 24.25rem;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .contenido-trabajo .contenedor .sidebar-trabajo {
    position: fixed;
    left: 0;
    bottom: 0;
  }
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar {
  display: flex;
  position: sticky;
  top: 130px;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  background: #FFF;
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.2);
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-trabajo__contenido h3 {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 5px;
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-trabajo__contenido .area-description p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-ubicacion h3 {
  color: #1D1D1D;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin-bottom: 5px;
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-ubicacion p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-url {
  width: 100%;
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-url .url-texto {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  background: var(--6, linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D);
}
.contenido-trabajo .contenedor .sidebar-trabajo .tarjeta-sidebar .sidebar-url .url-texto:hover {
  background: #2C2C2C;
}

.search-page {
  min-height: auto;
  padding: 50px 0 100px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.search-page .contenedor {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.search-page__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.search-page__titulo {
  color: #1D1D1D;
  font-family: Glamore;
  font-size: 30px;
  font-weight: 400;
  line-height: 35px;
}
@media (max-width: 768px) {
  .search-page__titulo {
    font-size: 24px;
    line-height: 28px;
  }
}
.search-page__contador {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
}
.search-page__sin-resultados, .search-page__sin-busqueda {
  padding: 50px 0;
  text-align: center;
}
.search-page__sin-resultados p, .search-page__sin-busqueda p {
  color: #1D1D1D;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 10px;
}
.search-page__sin-resultados p:last-child, .search-page__sin-busqueda p:last-child {
  margin-bottom: 0;
}
.search-page .productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(341px, 1fr));
  grid-row-gap: 30px;
  grid-column-gap: 1px;
}
@media (max-width: 768px) {
  .search-page .productos-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}
.search-page .boton-mostrar-mas {
  padding-top: 50px;
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.search-page .boton-mostrar-mas .btn-mostrar-mas {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), #1D1D1D;
  color: #F3F1EA;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}
.search-page .boton-mostrar-mas .btn-mostrar-mas:hover {
  background: #2C2C2C;
}
.search-page .boton-mostrar-mas .btn-mostrar-mas:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}/*# sourceMappingURL=app.css.map */