@font-face {
  font-family: "JetBrainsRegular";
  src: url("./fonts/SpaceGrotesk/SpaceGrotesk-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrainsBold";
  src: url("./fonts/SpaceGrotesk/SpaceGrotesk-Bold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SpaceGroteskRegular";
  src: url("./fonts/SpaceGrotesk/Mulish-Regular.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SpaceGroteskBold";
  src: url("./fonts/SpaceGrotesk/Mulish-Bold.ttf");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SpaceGroteskLight";
  src: url("./fonts/SpaceGrotesk/Mulish-Light.ttf");
  font-weight: normal;
  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: "JetBrainsRegular", sans-serif;
}

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;
}

article.product__card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #E9DFD8;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transition: all 0.3s ease;
}
article.product__card .product__card--image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15rem;
  aspect-ratio: 20/17;
}
article.product__card .product__card--image-link img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
article.product__card .product__container--bottom {
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
  padding: 1rem;
}
article.product__card .product__container--bottom .product__card--info .product__card--category {
  font-size: 13px;
  line-height: 18px;
  color: #9f9fa9;
}
article.product__card .product__container--bottom .product__card--info .product__card--title {
  font-size: 16px;
  line-height: 21px;
  margin-top: 5px;
}
article.product__card .product__container--bottom .product__card--info .product__card--title a {
  font-size: 16px;
  line-height: 21px;
  color: #1C1816;
  font-family: "SpaceGroteskBold";
  font-weight: 100;
  width: 100%;
  display: block;
}
article.product__card .product__container--bottom .product__card--info p.product__card--description {
  font-size: 13px;
  line-height: 18px;
  font-family: "SpaceGroteskRegular";
  color: #78716C;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 5px;
}
article.product__card .product__container--bottom .product__card--info .product__card--swatches {
  display: flex;
  flex-direction: row;
  gap: 5px;
  margin-top: 6px;
}
article.product__card .product__container--bottom .product__card--info .product__card--swatches .product__card--swatch {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #d4d4d8;
  cursor: pointer;
}
article.product__card .product__container--bottom .product__card--actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
}
article.product__card .product__container--bottom .product__card--actions .product__card--btn-eye {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #DDD0C5;
}
article.product__card .product__container--bottom .product__card--actions .product__card--btn-eye svg {
  stroke: #262626;
}
article.product__card .product__container--bottom .product__card--actions .product__card--btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  background: #1C1816;
  border-radius: 10px;
  font-family: "SpaceGroteskBold";
  font-size: 15px;
  line-height: 20px;
  color: white;
}
article.product__card:hover {
  border-color: rgba(255, 140, 26, 0.6);
  box-shadow: 1px 2px 5px rgba(255, 140, 26, 0.22);
  transform: scale(1.01);
}

header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
  transition: all 0.4s ease;
}
header .contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .contenedor .image-logo__page {
  width: 6rem;
  aspect-ratio: 2/1;
}
header .contenedor .image-logo__page img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .contenedor .navigation__menu--header {
  height: 58.8px;
}
header .contenedor .navigation__menu--header nav {
  height: 100%;
}
header .contenedor .navigation__menu--header nav .main-nav {
  height: 100%;
}
header .contenedor .navigation__menu--header nav #menu-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 100%;
}
header .contenedor .navigation__menu--header nav #menu-header li {
  height: 100%;
  display: flex;
  align-items: center;
}
header .contenedor .navigation__menu--header nav #menu-header li a {
  font-family: "JetBrainsRegular";
  font-size: 15px;
  line-height: 20px;
  color: #000;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:last-child {
  position: relative;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:last-child ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  top: 100%;
  background: white;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:last-child ul .contenedor {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px;
  margin: 0;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:last-child ul .contenedor li a {
  width: -moz-max-content;
  width: max-content;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:last-child ul .contenedor li a span {
  width: 100%;
  display: block;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: white;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor {
  padding-bottom: 25px;
  gap: 2rem;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li {
  transition: all 0.3s ease;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li a .container__image-product {
  position: relative;
  z-index: 1;
  width: 165px;
  aspect-ratio: 1/1;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li a .container__image-product img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li a span {
  font-size: 15px;
  line-height: 20px;
  color: black;
  text-align: center;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:last-child {
  width: 22rem;
  height: 15rem;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:last-child a {
  width: 100%;
  height: 100%;
  position: relative;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:last-child a span {
  font-size: 20px;
  line-height: 25px;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:last-child a .container__image-product {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:last-child a .container__image-product img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:last-child:hover a .container__image-product img {
  transform: scale(1.1);
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:not(:last-child) {
  max-width: 230px;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:not(:last-child):hover {
  transform: translateY(-1rem);
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul .contenedor li:not(:last-child) a .container__image-product::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(151, 179, 174, 0.06);
  border-radius: 157px;
  width: 80%;
  height: 100%;
  z-index: -1;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:not(:last-child) ul:hover {
  opacity: 1;
  pointer-events: all;
}
header .contenedor .navigation__menu--header nav #menu-header li.menu-item-has-children:hover ul {
  opacity: 1;
  pointer-events: all;
}
header .contenedor .search__website {
  width: 20px;
  height: 20px;
}
header .contenedor .overlay__menu {
  display: none;
}
header.active {
  background: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 7px;
}

.search__website {
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__website svg {
  width: 100%;
  height: 100%;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-panel.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.search-panel.active .search-panel__box {
  transform: translateY(0);
  opacity: 1;
}
.search-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.search-panel__box {
  position: relative;
  max-width: 720px;
  width: calc(100% - 32px);
  margin: 90px auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  max-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  transform: translateY(-16px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.search-panel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-panel__form {
  margin-bottom: 8px;
}
.search-panel__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e5e5e5;
  padding: 10px 40px 10px 0;
  font-size: 18px;
  outline: none;
  background: transparent;
}
.search-panel__input:focus {
  border-color: #000;
}
.search-panel__status {
  font-size: 13px;
  color: #777;
  padding: 8px 0;
  min-height: 1.2em;
}
.search-panel__results {
  overflow-y: auto;
  flex: 1;
}
.search-panel__empty {
  padding: 24px 0;
  text-align: center;
  color: #777;
  font-size: 14px;
}
.search-panel__group {
  margin-bottom: 20px;
}
.search-panel__group:last-child {
  margin-bottom: 0;
}
.search-panel__group-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #999;
  margin: 0 0 10px;
}
.search-panel__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.search-panel__grid--posts {
  grid-template-columns: repeat(2, 1fr);
}
.search-panel__grid .product__card,
.search-panel__grid .card__post {
  font-size: 12px;
}
.search-panel__grid .product__card--title,
.search-panel__grid .title__post {
  font-size: 13px;
  line-height: 1.3;
}
.search-panel__grid .product__card--description,
.search-panel__grid .card__post span {
  display: none;
}
.search-panel__grid .product__card--actions {
  display: none;
}
@media (max-width: 749px) {
  .search-panel__box {
    margin-top: 60px;
    width: calc(100% - 20px);
    padding: 16px;
  }
  .search-panel__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-panel__grid--posts {
    grid-template-columns: 1fr;
  }
}

body.search-panel-open {
  overflow: hidden;
}

footer {
  background: #272727;
  padding-block: 36px;
}
footer .contenedor .top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
footer .contenedor .top .item div.block.social_media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0px;
  margin-top: 20px;
}
footer .contenedor .top .item div.block.social_media .social--media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
footer .contenedor .top .item div.block.social_media .social--media a {
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .contenedor .top .item div.block.social_media .social--media a svg {
  width: 15px;
  height: 15px;
}
footer .contenedor .top .item p.title {
  font-size: 18px;
  line-height: 23px;
  color: white;
  font-family: "SpaceGroteskBold";
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid white;
  padding-bottom: 2px;
  margin-bottom: 15px;
}
footer .contenedor .top .item .main-nav ul.nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
footer .contenedor .top .item .main-nav ul.nav__list li.menu-item a {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}
footer .contenedor .top .item .main-nav ul.nav__list li.menu-item ul.sub-menu {
  padding-left: 20px;
}
footer .contenedor .top .item .main-nav ul.nav__list li.menu-item ul.sub-menu li {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.78);
  list-style-type: disc;
}
footer .contenedor .bottom__legals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 1.5rem;
}
footer .contenedor .bottom__legals p,
footer .contenedor .bottom__legals span {
  font-family: "SpaceGroteskRegular";
  font-size: 12px;
  line-height: 17px;
  color: rgba(255, 255, 255, 0.78);
}
footer .contenedor .bottom__legals strong {
  font-family: "SpaceGroteskBold";
  color: rgba(255, 255, 255, 0.78);
}

.main__page--front-page .section__banner--carrusel {
  position: relative;
  padding-top: 42%;
  width: 100%;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__arrows .splide__arrow,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__arrows .splide__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track {
  width: 100%;
  height: 100%;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide img.fondo__section,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide img.fondo__section {
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
  height: 100%;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 4rem;
  gap: 5px;
  z-index: 2;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner p,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner p {
  font-family: "SpaceGroteskRegular";
  font-size: 20px;
  line-height: 25px;
  color: black;
  font-weight: 400;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner h2,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner h2 {
  font-size: 40px;
  line-height: 45px;
  font-family: "SpaceGroteskBold";
  color: black;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner strong,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner strong {
  font-size: 15px;
  line-height: 20px;
  color: black;
  font-family: "SpaceGroteskRegular";
  font-weight: 100;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner a,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner a {
  background: #FF8C1A;
  color: white;
  font-size: 15px;
  line-height: 20px;
  font-family: "SpaceGroteskRegular";
  border-radius: 12px;
  padding: 7px 16px;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide.derecha,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide.derecha {
  justify-content: center;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide.derecha .container--info__banner,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide.derecha .container--info__banner {
  align-items: flex-end;
  width: 1350px;
  max-width: 95%;
  margin: 0 auto;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__pagination li button,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__pagination li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
  padding: 0;
  transform: scale(1) !important;
  opacity: 1 !important;
}
.main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__pagination li button.is-active,
.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__pagination li button.is-active {
  background: #1a1a1a;
  width: 28px;
  border-radius: 5px;
}
.main__page--front-page .section__banner--carrusel.secondary {
  padding-top: 35%;
}
.main__page--front-page .section__banner--carrusel.secondary {
  margin-top: 20px;
  margin-bottom: 30px;
}
.main__page--front-page .section__editions--special {
  padding-block: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.main__page--front-page .section__editions--special .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.main__page--front-page .section__discover-collections {
  padding-block: 1rem 2rem;
}
.main__page--front-page .section__discover-collections .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.main__page--front-page .section__discover-collections .contenedor h2 {
  font-size: 35px;
  line-height: 40px;
}
.main__page--front-page .section__discover-collections .contenedor #splide-discover-collections {
  width: 100%;
}
.main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__slide .card__collection {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 30rem;
  border-radius: 10px;
  overflow: hidden;
}
.main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__slide .card__collection img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
}
.main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__slide .card__collection .card__collection--nombre {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 2.5rem;
  font-family: "SpaceGroteskBold";
  color: black;
  font-size: 30px;
  line-height: 35px;
  width: -moz-max-content;
  width: max-content;
}
.main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__slide .card__collection:hover img {
  transform: scale(1.1);
}
.main__page--front-page .section__testimonial--videos {
  padding-block: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.main__page--front-page .section__testimonial--videos .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__slide .video-wrapper {
  height: 22rem;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__slide .video-wrapper iframe {
  width: 100%;
  height: 100%;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__arrow.splide__arrow--next {
  bottom: -3.5rem;
  right: 5rem;
  top: auto;
  transform: translateY(0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__arrow.splide__arrow--prev {
  bottom: -3.5rem;
  right: 9rem;
  left: auto;
  top: auto;
  transform: translateY(0);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__pagination {
  width: -moz-fit-content;
  width: fit-content;
  bottom: -3.5rem;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__pagination li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 0;
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
  opacity: 1 !important;
  transform: scale(1) !important;
}
.main__page--front-page .section__testimonial--videos #videos--testimonials .splide__pagination li button.is-active {
  background: #ff8c1a;
  width: 24px;
  border-radius: 4px;
}
.main__page--front-page .section__certifications__list {
  padding-block: 1rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
}
.main__page--front-page .section__certifications__list .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
}
.main__page--front-page .section__certifications__list #certifications--list .splide__slide .container__image {
  height: 9rem;
}
.main__page--front-page .section__certifications__list #certifications--list .splide__slide .container__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__page--front-page .section__our-blogs {
  padding-block: 1rem 2rem;
}
.main__page--front-page .section__our-blogs .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(2rem - 10px);
}
.main__page--front-page .section__our-blogs .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide {
  padding: 10px;
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide a.card__post {
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide a.card__post .container__image {
  height: 14rem;
  border-radius: 10px;
  overflow: hidden;
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide a.card__post .container__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide a.card__post .container__text {
  padding: 20px;
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide a.card__post .container__text .title__post {
  font-size: 17px;
  line-height: 22px;
  color: black;
  font-family: "SpaceGroteskBold";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__slide a.card__post .container__text span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main__page--front-page .section__banner--carrusel #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner {
  padding-top: 3rem;
}

@media (min-width: 790px) {
  .main__page--front-page .section__editions--special .contenedor .repeater__tabs {
    display: none;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special {
    width: 100%;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list {
    transform: none !important;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin-inline: auto;
    gap: 24px;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide {
    width: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    background: #E7E9ED;
    padding: 2rem;
    border-radius: 15px;
    max-width: 35rem;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info .container--text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info .container--text .product__info--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info .container--text .product__info--content p {
    font-size: 15px;
    line-height: 20px;
    color: black;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info .container--text .product__info--content a {
    display: block;
    background: #FF8C1A;
    color: white;
    font-size: 15px;
    line-height: 20px;
    font-family: "SpaceGroteskRegular";
    border-radius: 12px;
    padding: 7px 16px;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info .product__image--wrap {
    width: 21rem;
    aspect-ratio: 1/1;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__track .splide__list .splide__slide .product__info .product__image--wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.main__page--product-cat {
  background: #F8F8F8;
}
.main__page--product-cat .banner-primary__category {
  height: 40vh;
  max-height: 350px;
  position: relative;
  z-index: 1;
}
.main__page--product-cat .banner-primary__category img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  aspect-ratio: 100/23;
}
.main__page--product-cat .banner-primary__category .contenedor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.main__page--product-cat .banner-primary__category .contenedor .left__information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 37rem;
}
.main__page--product-cat .banner-primary__category .contenedor .left__information .banner-primary__category--title {
  font-family: "SpaceGroteskBold";
  font-size: 35px;
  line-height: 40px;
  font-weight: 100;
  color: black;
}
.main__page--product-cat .banner-primary__category .contenedor .left__information .banner-primary__category--description {
  font-family: "SpaceGroteskRegular";
  font-size: 15px;
  line-height: 20px;
  font-weight: 100;
}
.main__page--product-cat .section__list--products_category {
  padding-block: 3rem;
  position: relative;
  z-index: 1;
}
.main__page--product-cat .section__list--products_category .points__background {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#C2B2A4 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}
.main__page--product-cat .section__list--products_category .contenedor {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 3rem;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product {
  height: -moz-fit-content;
  height: fit-content;
  width: 298px;
  flex-shrink: 0;
  border: 1px solid #E9DFD8;
  border-radius: 10px;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  background: white;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product .title__filters {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.5rem;
  font-family: "SpaceGroteskBold";
  font-size: 18px;
  line-height: 23px;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group {
  margin-bottom: 2rem;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__title {
  font-size: 16px;
  line-height: 21px;
  color: #71717b;
  font-family: "JetBrainsRegular";
  font-weight: 100;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 3px;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options--colors {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options--colors a {
  display: block;
  width: 25px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: #d8d3d4;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 0px 15px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options--colors a span {
  font-size: 16px;
  line-height: 21px;
  color: black;
  font-family: "SpaceGroteskRegular";
  padding-left: 2.1rem;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__category {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "SpaceGroteskRegular";
  font-size: 15px;
  line-height: 20px;
  font-weight: 100;
  color: #262626;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__category .product-filters__tag--check {
  display: flex;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1px solid black;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid black;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__category .product-filters__tag--check svg {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__category.is-active .product-filters__tag--check svg {
  opacity: 1;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "SpaceGroteskRegular";
  font-size: 15px;
  line-height: 20px;
  font-weight: 100;
  color: #262626;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__tag .product-filters__tag--check {
  display: flex;
  width: 15px;
  height: 15px;
  border-radius: 5px;
  border: 1px solid black;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid black;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__tag .product-filters__tag--check svg {
  width: 100%;
  height: 100%;
  opacity: 0;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__group .product-filters__options .product-filters__tag.is-active .product-filters__tag--check svg {
  opacity: 1;
}
.main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product form.product-filters .product-filters__clear {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  font-weight: 15px;
  line-height: 20px;
  font-weight: 100;
  font-family: "SpaceGroteskBold";
  color: #262626;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-radius: 10px;
  background: white;
  padding: 10px 15px;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .shop__toolbar--info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .shop__toolbar--info span {
  font-size: 13px;
  line-height: 18px;
  font-weight: 100;
  font-family: "SpaceGroteskBold";
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  min-width: 160px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap .title__name {
  font-size: 13px;
  line-height: 18px;
  color: #71717b;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap .orderby-select__selected {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap .orderby-select__selected svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap.is-open .orderby-select__selected {
  border-color: #FF8C1A;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap.is-open .orderby-select__selected svg {
  transform: rotate(180deg);
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap.is-active .orderby-select__selected {
  border-color: black;
  color: black;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap .orderby-select__options {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 6px;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap.is-open .orderby-select__options {
  display: block;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  font-size: 13px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: background 0.2s;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap li a:hover {
  background: rgba(0, 0, 0, 0.04);
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .shop__toolbar .orderby-select__wrap li.is-active a {
  color: #FF8C1A;
  font-family: "SpaceGroteskBold";
  font-weight: 100;
}
.main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .list__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.main__single-product .section__information--product-top {
  padding-top: 3rem;
}
.main__single-product .section__information--product-top .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 1rem;
  width: 52%;
  max-width: 546px;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider {
  box-shadow: rgba(99, 99, 99, 0.14) 0px 2px 8px 0px;
  max-height: 30rem;
  aspect-ratio: auto;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider .splide__track {
  max-height: 30rem;
  max-width: 30rem;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider .splide__track img {
  max-height: 30rem;
  max-width: 30rem;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider .splide__arrows .splide__arrow {
  width: 38px;
  height: 38px;
  background: rgba(204, 204, 204, 0.4);
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider .splide__arrows .splide__arrow svg path {
  fill: black;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--thumb-slider {
  max-width: 50px;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--thumb-slider .splide__arrows button.splide__arrow.splide__arrow--prev {
  top: -1.5rem;
  background: transparent !important;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--thumb-slider .splide__arrows button.splide__arrow.splide__arrow--next {
  bottom: -1.5rem;
  background: transparent !important;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--thumb-slider .splide__slide {
  overflow: hidden;
  border-radius: 5px;
}
.main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--thumb-slider .splide__slide.is-active {
  border: 2px solid #FF6600 !important;
}
.main__single-product .section__information--product-top .contenedor .information__product {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 560px;
}
.main__single-product .section__information--product-top .contenedor .information__product h1 {
  font-size: 30px;
  line-height: 35px;
  font-family: "SpaceGroteskBold";
}
.main__single-product .section__information--product-top .contenedor .information__product .product__short-description ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 1rem;
}
.main__single-product .section__information--product-top .contenedor .information__product .product__short-description ul li {
  list-style: disc;
  font-size: 15px;
  line-height: 20px;
  color: #333333;
}
.main__single-product .section__information--product-top .contenedor .information__product .variations_form.cart {
  margin-top: 0rem;
}
.main__single-product .section__information--product-top .contenedor .information__product .variations_form.cart table th.label {
  margin-bottom: 0.5rem;
}
.main__single-product .section__information--product-top .contenedor .information__product .variations_form.cart table td .reset_variations {
  display: none !important;
}
.main__single-product .section__information--product-top .contenedor .information__product .container__link--product {
  width: 100%;
  margin-top: 5px;
}
.main__single-product .section__information--product-top .contenedor .information__product .container__link--product a {
  background: black;
  color: white;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
  font-family: "SpaceGroteskRegular";
  padding: 10px;
  display: block;
  border-radius: 5px;
}
.main__single-product .section__container-tabs {
  position: sticky;
  top: 58.8px;
  padding-block: 1.5rem;
  background: white;
  z-index: 5;
}
.main__single-product .section__container-tabs .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
.main__single-product .section__container-tabs .contenedor h2 {
  font-size: 18px;
  line-height: 23px;
  color: black;
  padding-bottom: 7px;
  font-family: "SpaceGroteskBold";
  cursor: pointer;
}
.main__single-product .section__container-tabs .contenedor h2.active {
  border-bottom: 3px solid #FF8832;
}
.main__single-product .section__product-information {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main__single-product .section__product-information .contenedor.second__section .top__actions-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}
.main__single-product .section__product-information .contenedor.second__section .top__actions-tabs p {
  opacity: 1;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  padding: 10px 2.5rem;
  border-radius: 50px;
  color: #7e7e7e;
  border: 1px solid #dbdbdb;
  transition: all 0.3s ease;
  cursor: pointer;
}
.main__single-product .section__product-information .contenedor.second__section .top__actions-tabs p.active {
  background: #ff8832;
  color: #fff;
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb .left {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb .left .sub_title {
  color: #ff8832 !important;
  font-size: 20px;
  line-height: 25px;
  font-family: "SpaceGroteskBold";
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb .left span {
  font-size: 17px;
  line-height: 22px;
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb .left span.title {
  font-size: 30px !important;
  line-height: 35px !important;
  color: black !important;
  font-family: "SpaceGroteskBold";
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb .right {
  aspect-ratio: 393/265;
  width: 38rem;
  max-width: 100%;
}
.main__single-product .section__product-information .contenedor.second__section #splide__product .splide__slide .numb .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .left__image {
  width: 38rem;
  aspect-ratio: 169/119;
  flex-shrink: 0;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .left__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .text {
  flex: 1;
  max-width: 35rem;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .text p.title {
  font-size: 25px;
  line-height: 30px;
  color: black;
  font-family: "SpaceGroteskBold";
  margin-bottom: 15px;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .text span {
  color: #5d5d5d !important;
  font-size: 17px;
  line-height: 22px;
}
.main__single-product .section__product-information .contenedor.section__simple-image--text .information__item:nth-child(even) {
  flex-direction: row-reverse;
}
.main__single-product .section__product-information .contenedor.medium__images .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.main__single-product .section__product-information .contenedor.medium__images .list img {
  border-radius: 20px;
}
.main__single-product .section__product-information .contenedor.medium__images .list:not(:last-child) {
  margin-bottom: 30px;
}
.main__single-product .section__product-information .contenedor-full_images .list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.main__single-product .section__product-information .contenedor-full_images .list img {
  border-radius: 20px;
}
.main__single-product .section__product-information .contenedor-full_images .list:not(:last-child) {
  margin-bottom: 30px;
}
.main__single-product .section__specifics--product {
  padding-block: 3rem;
}
.main__single-product .section__specifics--product .contenedor h2 {
  text-align: left;
  font-size: 25px;
  line-height: 30px;
  font-family: "SpaceGroteskBold";
  color: black;
  margin-bottom: 15px;
}
.main__single-product .section__specifics--product .contenedor .product-specifics__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.main__single-product .section__specifics--product .contenedor .product-specifics__list .product-specifics__item {
  padding: 20px;
  background: #F8F8F8;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.main__single-product .section__specifics--product .contenedor .product-specifics__list .product-specifics__item .product-specifics__label {
  font-size: 18px;
  line-height: 23px;
  font-family: "SpaceGroteskBold";
}
.main__single-product .section__specifics--product .contenedor .product-specifics__list .product-specifics__item .product-specifics__value {
  font-size: 15px;
  line-height: 20px;
  font-family: "SpaceGroteskRegular";
}
.main__single-product .section__list-recommend-product {
  padding-bottom: 3rem;
}
.main__single-product .section__list-recommend-product .contenedor h2 {
  margin-bottom: 10px;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados {
  margin-top: 2rem;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide {
  padding: 10px;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide .product__card {
  height: 100%;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide .product__card .product__container--bottom {
  display: flex;
  flex-direction: column;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide .product__card .product__container--bottom .product__card--info {
  margin-bottom: 1.5rem;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide .product__card .product__container--bottom .product__card--info .product__card--swatches {
  margin-top: 15px;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide .product__card .product__container--bottom .product__card--actions {
  margin-top: auto;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__pagination {
  bottom: -1rem;
}
.main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__pagination li button.is-active {
  background: black;
  transform: scale(1) !important;
  opacity: 1 !important;
}

.banner {
  width: 100%;
  height: 40vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .contenedor h1 {
  font-size: 45px;
  line-height: 50px;
  font-family: "SpaceGroteskBold";
  text-align: center;
}
.banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.main__page-support .list__tabs {
  position: sticky;
  top: 58.8px;
  padding-block: 20px;
  background: black;
  z-index: 2;
}
.main__page-support .list__tabs .contenedor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.main__page-support .list__tabs .contenedor button {
  font-size: 16px;
  line-height: 21px;
  color: white;
  font-family: "SpaceGroteskRegular";
}
.main__page-support .section__support--product {
  padding-block: 50px;
}
.main__page-support .section__support--product .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  color: black;
  font-family: "SpaceGroteskBold";
}
.main__page-support .section__support--product .contenedor .list__categories {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__page-support .section__support--product .contenedor .list__categories button {
  font-size: 16px;
  padding: 10px 15px;
  border-bottom: 3px solid #dedede;
}
.main__page-support .section__support--product .contenedor .list__categories button.active {
  border-bottom: 3px solid #ff8832;
}
.main__page-support .section__support--product .contenedor .list__products--support {
  margin-top: 2rem;
}
.main__page-support .section__support--product .contenedor .list__products--support .support-products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.main__page-support .section__support--product .contenedor .list__products--support .support-products__grid .support-product__item {
  display: flex;
  flex-direction: column;
}
.main__page-support .section__support--product .contenedor .list__products--support .support-products__grid .support-product__item .container__image {
  background: #f8f8f8;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.main__page-support .section__support--product .contenedor .list__products--support .support-products__grid .support-product__item .container__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.main__page-support .section__support--product .contenedor .list__products--support .support-products__grid .support-product__item span {
  font-size: 14px;
  line-height: 19px;
  font-family: "SpaceGroteskRegular";
  color: black;
  text-align: center;
}
.main__page-support .section__support--product .contenedor .support-products__pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.main__page-support .section__support--product .contenedor .pagination__btn {
  min-width: 36px;
  height: 36px;
  border: 1px solid #e0e0e0;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}
.main__page-support .section__support--product .contenedor .pagination__btn:hover:not(:disabled) {
  background: #f5f5f5;
}
.main__page-support .section__support--product .contenedor .pagination__btn.active {
  background: #111;
  color: #fff;
  border-color: #111;
}
.main__page-support .section__support--product .contenedor .pagination__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.main__page-support .section__politicas-posventa .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  color: black;
  font-family: "SpaceGroteskBold";
  margin-bottom: 30px;
}
.main__page-support .section__politicas-posventa .contenedor .items__politicas {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  gap: 0px;
}
.main__page-support .section__politicas-posventa .contenedor .items__politicas .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  height: 200px;
  max-width: 380px;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}
.main__page-support .section__politicas-posventa .contenedor .items__politicas .item p {
  color: black;
  font-size: 18px;
  line-height: 23px;
  font-family: "SpaceGroteskBold";
}
.main__page-support .section__list--stores {
  margin-bottom: 50px;
}
.main__page-support .section__list--stores .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  color: black;
  font-family: "SpaceGroteskBold";
  margin-bottom: 30px;
}
.main__page-support .section__list--stores .contenedor .left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 465px;
  overflow-y: scroll;
}
.main__page-support .section__list--stores .contenedor .left .item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px;
  background: #F8F8F8;
  border-radius: 15px;
}
.main__page-support .section__list--stores .contenedor .left .item .title {
  font-size: 15px;
  line-height: 20px;
  font-family: "SpaceGroteskBold";
  color: black;
}
.main__page-support .section__list--stores .contenedor .left .item span {
  font-size: 14px;
  line-height: 19px;
  font-family: "SpaceGroteskRegular";
  color: black;
}
.main__page-support .section__list--stores .contenedor .left::-webkit-scrollbar {
  width: 6px;
  background-color: #c1c1c1;
  border-radius: 10px;
}
.main__page-support .section__list--stores .contenedor .list__stores {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-height: 408px;
}
.main__page-support .section__list--stores .contenedor .list__stores .right__iframe {
  width: 60%;
}
.main__page-support .section__list--stores .contenedor .list__stores .right__iframe iframe {
  height: 100% !important;
}
.main__page-support .section__faq {
  margin-top: 50px;
  margin-bottom: 50px;
}
.main__page-support .section__faq .contenedor h2 {
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  color: black;
  font-family: "SpaceGroteskBold";
  margin-bottom: 30px;
}
.main__page-support .section__faq .contenedor .faq__tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}
.main__page-support .section__faq .contenedor .faq__tabs .faq__tab {
  background: none;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main__page-support .section__faq .contenedor .faq__tabs .faq__tab.active {
  color: #111;
  border-bottom-color: #ff8832;
}
.main__page-support .section__faq .contenedor .faq__tabs .faq__tab:hover {
  color: #111;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel {
  display: none;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item {
  border-bottom: 1px solid #e0e0e0;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__question > span:first-child p {
  margin: 0;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__icon::before,
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__question[aria-expanded=true] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel .faq__item .faq__answer-inner {
  padding: 0 0 1rem 0;
}
.main__page-support .section__faq .contenedor .faq__panels .faq__panel.active {
  display: block;
}
.main__page-support .support-product__detail-container {
  padding-block: 50px;
}
.main__page-support .support-product__detail-container .contenedor {
  max-width: 900px;
}
.main__page-support .support-product__detail .support-product__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-size: 14px;
  color: #666;
  font-family: "SpaceGroteskRegular";
  cursor: pointer;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}
.main__page-support .support-product__detail .support-product__back:hover {
  color: #ff8832;
}
.main__page-support .support-product__detail h3 {
  font-size: 30px;
  line-height: 36px;
  color: black;
  font-family: "SpaceGroteskBold";
  margin-bottom: 30px;
}
.main__page-support .support-product__detail .support-product__empty {
  color: #666;
  font-family: "SpaceGroteskRegular";
  text-align: center;
  padding: 40px 0;
}
.main__page-support .support-product__detail .support-product__tabs {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 2rem;
}
.main__page-support .support-product__detail .support-product__tabs .support-product__tab {
  background: none;
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 15px;
  font-family: "SpaceGroteskBold";
  cursor: pointer;
  color: #666;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}
.main__page-support .support-product__detail .support-product__tabs .support-product__tab.active {
  color: black;
  border-bottom-color: #ff8832;
}
.main__page-support .support-product__detail .support-product__tabs .support-product__tab:hover {
  color: black;
}
.main__page-support .support-product__detail .support-product__panels .support-product__panel {
  display: none;
}
.main__page-support .support-product__detail .support-product__panels .support-product__panel.active {
  display: block;
}
.main__page-support .support-product__detail .support-product__video video {
  width: 100%;
  max-height: 500px;
  border-radius: 10px;
  background: black;
}
.main__page-support .support-product__detail .support-product__video .support-product__video-link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: #ff8832;
  color: white;
  font-family: "SpaceGroteskBold";
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.main__page-support .support-product__detail .support-product__video .support-product__video-link:hover {
  opacity: 0.85;
}
.main__page-support .support-product__detail .support-product__manual-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}
.main__page-support .support-product__detail .support-product__manual-wrap .support-product__manual {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid #ff8832;
  color: #ff8832;
  font-family: "SpaceGroteskBold";
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.main__page-support .support-product__detail .support-product__manual-wrap .support-product__manual:hover {
  background: #ff8832;
  color: white;
}
.main__page-support .support-product__detail .faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 1.5rem;
}
.main__page-support .support-product__detail .faq__tabs .faq__tab {
  background: none;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  color: #666;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main__page-support .support-product__detail .faq__tabs .faq__tab.active {
  color: #111;
  border-bottom-color: #ff8832;
}
.main__page-support .support-product__detail .faq__tabs .faq__tab:hover {
  color: #111;
}
.main__page-support .support-product__detail .faq__panels .faq__panel {
  display: none;
}
.main__page-support .support-product__detail .faq__panels .faq__panel.active {
  display: block;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item {
  border-bottom: 1px solid #e0e0e0;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__question > span:first-child p {
  margin: 0;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: 1rem;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__icon::before,
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.3s ease;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__question[aria-expanded=true] .faq__icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.main__page-support .support-product__detail .faq__panels .faq__panel .faq__item .faq__answer-inner {
  padding: 0 0 1rem 0;
}

.main__page--legals .section__content {
  padding-block: 2rem;
}
.main__page--legals .section__content .contenedor h2 {
  font-size: 24px;
  line-height: 29px;
  color: black;
  font-family: "SpaceGroteskBold";
}
.main__page--legals .section__content .contenedor p {
  font-size: 16px;
  line-height: 21px;
  font-family: "SpaceGroteskRegular";
  color: black;
}
.main__page--legals .section__content .contenedor a {
  background-color: black;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-family: "SpaceGroteskRegular";
}
.main__page--legals .section__content .contenedor ol {
  padding-left: 1rem;
}
.main__page--legals .section__content .contenedor ol li {
  list-style: decimal;
}
.main__page--legals .section__content .contenedor ul {
  padding-left: 2rem;
}
.main__page--legals .section__content .contenedor ul li {
  list-style: disc;
}

.main__page--contact .section__custom--information {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.main__page--contact .section__custom--information .contenedor .top__information {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.main__page--contact .section__custom--information .contenedor .top__information .item {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}
.main__page--contact .section__custom--information .contenedor .top__information .item strong {
  display: block;
  font-family: "SpaceGroteskBold";
  font-size: 18px;
  line-height: 23px;
  color: black;
  margin-bottom: 10px;
}
.main__page--contact .section__custom--information .contenedor .top__information .item p,
.main__page--contact .section__custom--information .contenedor .top__information .item a {
  font-size: 15px;
  line-height: 20px;
  color: black;
  font-family: "SpaceGroteskRegular";
}
.main__page--contact .section__custom--information .contenedor .bottom__information {
  margin-top: 3rem;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form {
  display: grid;
  grid-template-columns: 40% calc(60% - 25px);
  gap: 25px;
  align-items: stretch;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 520px;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete {
  width: 100%;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p {
  width: 100%;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span {
  display: block;
  width: 100%;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid rgb(151, 153, 154);
  color: black;
  font-family: "SpaceGroteskRegular";
  font-size: 15px;
  line-height: 20px;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span input::-moz-placeholder {
  color: #b1b1b1;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span input::placeholder {
  color: #b1b1b1;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid rgb(151, 153, 154);
  color: black;
  font-family: "SpaceGroteskRegular";
  font-size: 15px;
  line-height: 20px;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span textarea {
  width: 100% !important;
  max-height: 168px !important;
  padding: 10px;
  border-radius: 5px;
  outline: none;
  border: 1px solid rgb(151, 153, 154);
  color: black;
  font-family: "SpaceGroteskRegular";
  font-size: 15px;
  line-height: 20px;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span textarea::-moz-placeholder {
  color: #b1b1b1;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span textarea::placeholder {
  color: #b1b1b1;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete p span[data-name=numero-telefono] input {
  padding-left: 84px;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete.submit p input {
  background: black;
  color: white;
  font-size: 17px;
  line-height: 22px;
  font-family: "SpaceGroteskRegular";
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 5px;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.complete.submit span.wpcf7-spinner {
  width: -moz-fit-content;
  width: fit-content;
}
.main__page--contact .section__custom--information .contenedor .bottom__information .left__form .wpcf7.js form div.wpcf7-response-output {
  margin: 0;
}

.main__page--blog .section__list--blogs {
  padding: 50px 0 80px;
}
.main__page--blog .section__list--blogs .contenedor .categories__posts {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.main__page--blog .section__list--blogs .contenedor .categories__posts a {
  font-size: 17px;
  line-height: 22px;
  color: black;
  font-family: "SpaceGroteskRegular";
  padding-bottom: 5px;
}
.main__page--blog .section__list--blogs .contenedor .categories__posts a.active {
  border-bottom: 2px solid #FF8832;
}
.main__page--blog .section__list--blogs .contenedor .cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.main__page--blog .section__list--blogs .contenedor .cards a.card__post {
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.main__page--blog .section__list--blogs .contenedor .cards a.card__post .container__image {
  height: 14rem;
  border-radius: 10px;
  overflow: hidden;
}
.main__page--blog .section__list--blogs .contenedor .cards a.card__post .container__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__page--blog .section__list--blogs .contenedor .cards a.card__post .container__text {
  padding: 20px;
}
.main__page--blog .section__list--blogs .contenedor .cards a.card__post .container__text .title__post {
  font-size: 17px;
  line-height: 22px;
  color: black;
  font-family: "SpaceGroteskBold";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.main__page--blog .section__list--blogs .contenedor .cards a.card__post .container__text span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main__single-post .section__content-post .contenedor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.main__single-post .section__content-post .contenedor .left {
  flex: 1;
}
.main__single-post .section__content-post .contenedor .left h1 {
  font-size: 30px;
  line-height: 35px;
  font-family: "SpaceGroteskBold";
  color: #333;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #D7D7D7;
  padding-bottom: 15px;
  width: 100%;
}
.main__single-post .section__content-post .contenedor .left .image__destacada {
  margin-bottom: 2rem;
}
.main__single-post .section__content-post .contenedor .left .image__destacada img {
  max-width: 100%;
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__single-post .section__content-post .contenedor .left .the--content p {
  color: #262626;
  font-size: 15px;
  line-height: 20px;
  font-family: "SpaceGroteskRegular";
}
.main__single-post .section__content-post .contenedor .left .the--content span {
  color: #262626;
  font-size: 15px;
  line-height: 20px;
  font-family: "SpaceGroteskRegular";
}
.main__single-post .section__content-post .contenedor .left .the--content a {
  font-size: 15px;
  line-height: 20px;
  font-family: "SpaceGroteskRegular";
  color: #f60;
}
.main__single-post .section__content-post .contenedor .left .the--content strong {
  font-family: "SpaceGroteskBold";
}
.main__single-post .section__content-post .contenedor .relation--products {
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0rem;
  margin-top: 85.8px;
}
.main__single-post .section__content-post .contenedor .relation--products h2 {
  font-size: 24px;
  line-height: 29px;
  font-family: "SpaceGroteskBold";
  margin-bottom: 1rem;
}
.main__single-post .section__content-post .contenedor .relation--products .product__card {
  max-width: 350px;
  margin-bottom: 1rem;
}
.main__single-post .section__related--post {
  padding: 50px 0px 70px;
}
.main__single-post .section__related--post .contenedor h2 {
  margin-bottom: 1.5rem;
}
.main__single-post .section__related--post .contenedor #splide__related-post .splide__slide a.card__post {
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.main__single-post .section__related--post .contenedor #splide__related-post .splide__slide a.card__post .container__image {
  height: 14rem;
  border-radius: 10px;
  overflow: hidden;
}
.main__single-post .section__related--post .contenedor #splide__related-post .splide__slide a.card__post .container__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__single-post .section__related--post .contenedor #splide__related-post .splide__slide a.card__post .container__text {
  padding: 20px;
}
.main__single-post .section__related--post .contenedor #splide__related-post .splide__slide a.card__post .container__text .title__post {
  font-size: 17px;
  line-height: 22px;
  color: black;
  font-family: "SpaceGroteskBold";
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.main__single-post .section__related--post .contenedor #splide__related-post .splide__slide a.card__post .container__text span {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.main__page-about-us .section__about-us {
  padding-block: 3rem;
}
.main__page-about-us .section__about-us .contenedor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3rem;
}
.main__page-about-us .section__about-us .contenedor .block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.main__page-about-us .section__about-us .contenedor .block .contenido {
  width: 50%;
}
.main__page-about-us .section__about-us .contenedor .block .imagen {
  width: calc(50% - 3rem);
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}
.main__page-about-us .section__about-us .contenedor .block .imagen img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main__page-about-us .section__about-us .contenedor .block:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 1000px) {
  header {
    padding-block: 10px;
  }
  header .contenedor .image-logo__page {
    width: 80px;
    height: 32.8px;
    order: 2;
  }
  header .contenedor .navigation__menu--header {
    position: fixed;
    left: 0;
    top: 0;
    background: white;
    border-radius: 0 20px 20px 0;
    height: 100vh;
    width: 90vw;
    max-width: 668px;
    z-index: 10;
    transform: translateX(-100%);
    transition: all 0.3s ease;
  }
  header .contenedor .navigation__menu--header .close__menu {
    position: absolute;
    right: 20px;
    top: 15px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  header .contenedor .navigation__menu--header nav .main-nav {
    padding: 20px;
    padding-top: 3.5rem;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header {
    overflow-y: scroll;
    flex-direction: column;
    align-items: flex-start;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li {
    align-items: flex-start;
    height: auto;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul {
    position: static !important;
    opacity: 1 !important;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px !important;
    padding-bottom: 0 !important;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item {
    width: auto !important;
    max-width: none !important;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item a {
    position: static !important;
    pointer-events: all;
    gap: 8px;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item a .container__image-product {
    aspect-ratio: 9/8;
    height: 7rem;
    width: 100%;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item a span {
    font-size: 12px;
    line-height: 17px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item a span::after {
    content: none;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item:last-child {
    grid-column: 1/-1;
    height: auto;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li ul .contenedor li.menu-item:last-child a {
    position: relative !important;
    height: 9rem;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li.menu-item-has-children a {
    width: 100%;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li.menu-item-has-children a span {
    width: 100%;
    display: block;
    position: relative;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li.menu-item-has-children a span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml,<svg width="64px" height="64px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M6 9L12 15L18 9" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></g></svg>');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li.submenu-open ul {
    display: block;
    max-height: 1000px;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li.submenu-open ul .contenedor {
    padding-top: 15px;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li.submenu-open > a span::after {
    transform: translateY(-50%) rotate(180deg);
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li:last-child ul {
    width: 100%;
    transform: none;
  }
  header .contenedor .navigation__menu--header nav .main-nav #menu-header li:last-child ul .contenedor {
    padding: 0;
    max-width: 100%;
    width: 100%;
  }
  header .contenedor .navigation__menu--header.active {
    transform: translateX(0);
  }
  header .contenedor .open__menu--filter {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 1;
  }
  header .contenedor .overlay__menu {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  header .contenedor .overlay__menu.active {
    opacity: 0.6;
    pointer-events: all;
  }
  header .contenedor .search__website {
    order: 3;
  }
  .main__page--front-page .section__banner--carrusel {
    padding-top: 150%;
  }
  .main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__arrows .splide__arrow {
    width: 35px;
    height: 35px;
  }
  .main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner {
    padding-top: 3.5rem;
    max-width: 340px;
  }
  .main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner p {
    font-size: 16px;
    line-height: 21px;
  }
  .main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner h2 {
    font-size: 35px;
    line-height: 40px;
  }
  .main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner h2 + p {
    font-size: 14px;
    line-height: 19px;
  }
  .main__page--front-page .section__banner--carrusel #splide--carrusel__front-page .splide__track .splide__slide .container--info__banner a {
    margin-top: 4px;
    display: block;
  }
  .main__page--front-page .section__banner--carrusel.secondary {
    padding-top: 110%;
    margin-top: 0;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__pagination li button {
    height: 6px;
    width: 6px;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__pagination li button.is-active {
    width: 25px;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide img.fondo__section {
    -o-object-position: center;
       object-position: center;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner {
    max-width: 330px;
    align-items: center;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner p {
    font-size: 15px;
    line-height: 20px;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide .container--info__banner a {
    margin-top: 10px;
    display: block;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide.derecha {
    justify-content: flex-end;
  }
  .main__page--front-page .section__banner--carrusel.secondary #splide--carrusel__seconday .splide__track .splide__slide.derecha .container--info__banner {
    padding: 0;
    margin-bottom: 3rem;
  }
  .main__page--front-page .section__editions--special {
    padding-block: 2rem 2rem;
  }
  .main__page--front-page .section__editions--special .contenedor {
    gap: 1.5rem;
  }
  .main__page--front-page .section__editions--special .contenedor .repeater__tabs {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main__page--front-page .section__editions--special .contenedor .repeater__tabs::-webkit-scrollbar {
    display: none;
  }
  .main__page--front-page .section__editions--special .contenedor .repeater__tabs .tab {
    flex-shrink: 0;
    cursor: pointer;
  }
  .main__page--front-page .section__editions--special .contenedor .repeater__tabs .tab.is-active {
    padding-bottom: 5px;
    border-bottom: 2px solid #0a0a0a;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special {
    width: 100%;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__slide .product__info {
    background: #E7E9ED;
    border-radius: 10px;
    padding: 25px;
    max-height: 480px;
    height: 100%;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__slide .product__info .container--text .product__info--content p {
    font-size: 14px;
    line-height: 19px;
    color: #0a0a0a;
    font-family: "SpaceGroteskRegular";
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__slide .product__info .container--text .product__info--content a {
    display: block;
    background: #FF8C1A;
    color: white;
    font-size: 15px;
    line-height: 20px;
    font-family: "SpaceGroteskRegular";
    border-radius: 12px;
    padding: 7px 16px;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-top: 5px;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__slide .product__info .product__image--wrap {
    aspect-ratio: 1/1;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__slide .product__info .product__image--wrap .product__image--src {
    width: 100%;
    height: 100%;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__pagination {
    bottom: 0.8rem;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__pagination li button {
    opacity: 1 !important;
    transform: scale(1) !important;
    width: 5px;
    height: 5px;
  }
  .main__page--front-page .section__editions--special .contenedor #splide--edition-special .splide__pagination li button.is-active {
    background: #FF8C1A;
    width: 20px;
    border-radius: 5px;
    height: 5px;
  }
  .main__page--front-page .section__discover-collections {
    padding: 0;
    margin-bottom: 2rem;
    padding-top: 0.5rem;
  }
  .main__page--front-page .section__discover-collections .contenedor {
    gap: 1.5rem;
  }
  .main__page--front-page .section__discover-collections .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__slide .card__collection {
    height: 23rem;
  }
  .main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__slide .card__collection .card__collection--nombre {
    top: 1.5rem;
    font-size: 26px;
    line-height: 31px;
  }
  .main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__pagination {
    bottom: -1em;
  }
  .main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__pagination button {
    opacity: 1 !important;
    transform: scale(1) !important;
    width: 5px;
    height: 5px;
  }
  .main__page--front-page .section__discover-collections .contenedor #splide-discover-collections .splide__pagination button.is-active {
    background: #FF8C1A;
    width: 20px;
    border-radius: 5px;
    height: 5px;
  }
  .main__page--front-page .section__testimonial--videos {
    gap: 1.5rem;
  }
  .main__page--front-page .section__testimonial--videos .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page--front-page .section__testimonial--videos #videos--testimonials .splide__slide .video-wrapper {
    height: 15rem;
  }
  .main__page--front-page .section__testimonial--videos #videos--testimonials .splide__pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1em;
  }
  .main__page--front-page .section__testimonial--videos #videos--testimonials .splide__pagination li button {
    opacity: 1 !important;
    transform: scale(1) !important;
    width: 5px;
    height: 5px;
  }
  .main__page--front-page .section__testimonial--videos #videos--testimonials .splide__pagination li button.is-active {
    background: #FF8C1A;
    width: 20px;
    border-radius: 5px;
    height: 5px;
  }
  .main__page--front-page .section__certifications__list .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page--front-page .section__certifications__list #certifications--list .splide__slide .container__image {
    height: 5rem;
  }
  .main__page--front-page .section__our-blogs {
    overflow: hidden;
  }
  .main__page--front-page .section__our-blogs .contenedor {
    gap: calc(1.5rem - 10px);
  }
  .main__page--front-page .section__our-blogs .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page--front-page .section__our-blogs .contenedor #section__our-blogs {
    width: 100%;
  }
  .main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__pagination {
    left: 50%;
    transform: translateX(-50%);
    bottom: -1em;
  }
  .main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__pagination li button {
    opacity: 1 !important;
    transform: scale(1) !important;
    width: 5px;
    height: 5px;
  }
  .main__page--front-page .section__our-blogs .contenedor #section__our-blogs .splide__pagination li button.is-active {
    background: #FF8C1A;
    width: 20px;
    border-radius: 5px;
    height: 5px;
  }
  .main__page--product-cat .banner-primary__category .contenedor {
    justify-content: flex-start;
    padding-top: 2rem;
  }
  .main__page--product-cat .banner-primary__category .contenedor .left__information .banner-primary__category--title {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page--product-cat .banner-primary__category .contenedor .left__information .banner-primary__category--description {
    font-size: 13px;
    line-height: 18px;
  }
  .main__page--product-cat .section__list--products_category {
    padding-block: 2rem;
  }
  .main__page--product-cat .section__list--products_category .contenedor {
    flex-direction: column;
  }
  .main__page--product-cat .section__list--products_category .contenedor .filters__about--list_product {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 100%;
    transform: translateY(100%);
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
  }
  .main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .list__products--gallery .shop__toolbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .main__page--product-cat .section__list--products_category .contenedor .container__information--single-category .list__products {
    grid-template-columns: 1fr;
  }
  .main__single-product .section__information--product-top {
    padding-top: 1.5rem;
  }
  .main__single-product .section__information--product-top .contenedor {
    flex-direction: column;
  }
  .main__single-product .section__information--product-top .contenedor .carrusel__product--images {
    flex-direction: column;
    width: 100%;
  }
  .main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider .splide__arrows .splide__arrow {
    width: 30px;
    height: 30px;
  }
  .main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--main-slider .splide__arrows .splide__arrow svg {
    width: 10px;
    height: 10px;
  }
  .main__single-product .section__information--product-top .contenedor .carrusel__product--images #product--thumb-slider {
    max-width: 100%;
  }
  .main__single-product .section__information--product-top .contenedor .information__product {
    margin-top: 15px;
  }
  .main__single-product .section__information--product-top .contenedor .information__product h1 {
    font-size: 23px;
    line-height: 28px;
  }
  .main__single-product .section__information--product-top .contenedor .information__product .product__short-description p {
    font-size: 13px;
    line-height: 18px;
  }
  .main__single-product .section__information--product-top .contenedor .information__product .product__short-description ul li {
    font-size: 13px;
    line-height: 18px;
  }
  .main__single-product .section__container-tabs {
    padding-block: 1rem;
    top: 52.8px;
  }
  .main__single-product .section__container-tabs .contenedor h2 {
    font-size: 16px;
    line-height: 21px;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop .top__actions-tabs {
    display: flex;
    align-items: center;
    justify-content: normal;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 1rem;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop .top__actions-tabs p {
    display: block;
    flex-shrink: 0;
    width: auto;
    padding: 5px 12px;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb {
    height: 100%;
    flex-direction: column;
    gap: 1rem;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb .left {
    min-height: 122px;
    width: 100%;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb .left .sub_title {
    font-size: 16px;
    line-height: 21px;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb .left span.title {
    font-size: 24px !important;
    line-height: 29px !important;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb .left span {
    font-size: 13px;
    line-height: 18px;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb .right {
    width: 100%;
    aspect-ratio: 335/236;
  }
  .main__single-product .section__product-information .contenedor.second__section.section__tabs .inner-section.h-desktop #splide__product .splide__slide .numb .right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .main__single-product .section__product-information .contenedor.section__simple-image--text .information__item {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .left__image {
    width: 100%;
    max-height: 260px;
  }
  .main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .text {
    width: 100%;
  }
  .main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .text h2 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 10px;
  }
  .main__single-product .section__product-information .contenedor.section__simple-image--text .information__item .text p {
    font-size: 13px;
    line-height: 18px;
  }
  .main__single-product .section__product-information .contenedor.section__simple-image--text .information__item:nth-child(even) {
    flex-direction: column-reverse;
  }
  .main__single-product .section__product-information .contenedor.medium__images .list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .main__single-product .section__product-information .contenedor.medium__images .list img {
    border-radius: 0;
  }
  .main__single-product .section__specifics--product {
    padding-block: 2rem;
  }
  .main__single-product .section__specifics--product .contenedor h2 {
    font-size: 23px;
    line-height: 28px;
  }
  .main__single-product .section__specifics--product .contenedor .product-specifics__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .main__single-product .section__specifics--product .contenedor .product-specifics__list .product-specifics__item {
    padding: 12px;
    border-radius: 10px;
  }
  .main__single-product .section__specifics--product .contenedor .product-specifics__list .product-specifics__item .product-specifics__label {
    font-size: 15px;
    line-height: 20px;
  }
  .main__single-product .section__specifics--product .contenedor .product-specifics__list .product-specifics__item .product-specifics__value {
    font-size: 13px;
    line-height: 18px;
  }
  .main__single-product .section__list-recommend-product .contenedor h2 {
    font-size: 23px;
    line-height: 28px;
    margin-bottom: 5px;
  }
  .main__single-product .section__list-recommend-product .contenedor p {
    font-size: 14px;
    line-height: 19px;
  }
  .main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados {
    margin-top: 1rem;
  }
  .main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide {
    padding: 15px;
  }
  .main__single-product .section__list-recommend-product .contenedor #splide-productos-recomendados .splide__list .splide__slide .product__card .product__card--image-link {
    height: 13rem;
  }
  .main__page-support .banner {
    height: 45vh;
  }
  .main__page-support .list__tabs {
    top: 52.8px;
  }
  .main__page-support .list__tabs .contenedor {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main__page-support .list__tabs .contenedor button.tabs__item {
    width: auto;
    display: block;
    flex-shrink: 0;
  }
  .main__page-support .section__support--product {
    padding-block: 2rem;
  }
  .main__page-support .section__support--product .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
  }
  .main__page-support .section__support--product .contenedor .list__categories {
    margin-top: 10px;
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .main__page-support .section__support--product .contenedor .list__categories button {
    padding: 5px 10px;
    flex-shrink: 0;
  }
  .main__page-support .section__support--product .contenedor .list__products--support {
    margin-top: 1rem;
  }
  .main__page-support .section__support--product .contenedor .list__products--support .support-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .main__page-support .section__list--stores {
    margin-bottom: 2.6rem;
  }
  .main__page-support .section__list--stores .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 1.5rem;
  }
  .main__page-support .section__list--stores .contenedor .list__stores {
    flex-direction: column;
    max-height: none;
    gap: 20px;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .left {
    gap: 10px;
    max-height: 300px;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .left .item {
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .left .item .title {
    font-size: 13px;
    line-height: 18px;
    transition: all 0.3s ease;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .left .item span {
    font-size: 12px;
    line-height: 17px;
    transition: all 0.3s ease;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .left .item.active {
    background: black;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .left .item.active p,
  .main__page-support .section__list--stores .contenedor .list__stores .left .item.active span {
    color: white;
  }
  .main__page-support .section__list--stores .contenedor .list__stores .right__iframe {
    width: 100%;
    height: 18rem;
  }
  .main__page-support .section__politicas-posventa .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 1.5rem;
  }
  .main__page-support .section__politicas-posventa .contenedor .items__politicas {
    gap: 10px;
  }
  .main__page-support .section__politicas-posventa .contenedor .items__politicas .item {
    height: 7rem;
    padding: 10px;
  }
  .main__page-support .section__politicas-posventa .contenedor .items__politicas .item .image {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .main__page-support .section__politicas-posventa .contenedor .items__politicas .item .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .main__page-support .section__politicas-posventa .contenedor .items__politicas .item p {
    text-align: center;
    font-size: 13px;
    line-height: 18px;
  }
  .main__page-support .section__faq .contenedor h2 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 1.5rem;
  }
  .main__page-support .section__faq .contenedor .faq__tabs {
    margin-bottom: 0.5rem;
  }
  .main__page--legals .banner {
    height: 34vh;
  }
  .main__page--legals .banner .contenedor h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .main__page--legals .section__content .contenedor h2 {
    font-size: 20px;
    line-height: 25px;
  }
  .main__page--legals .section__content .contenedor p {
    font-size: 14px;
    line-height: 19px;
  }
  .main__page--legals .section__content .contenedor ul li,
  .main__page--legals .section__content .contenedor ol li {
    font-size: 14px;
    line-height: 19px;
  }
  .main__page--contact .banner {
    height: 34vh;
  }
  .main__page--contact .banner .contenedor h1 {
    font-size: 30px;
    line-height: 35px;
  }
  .main__page--contact .section__custom--information .contenedor .top__information {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .main__page--contact .section__custom--information .contenedor .top__information .item {
    padding: 12px;
  }
  .main__page--contact .section__custom--information .contenedor .top__information .item strong {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 4px;
  }
  .main__page--contact .section__custom--information .contenedor .top__information .item p,
  .main__page--contact .section__custom--information .contenedor .top__information .item a {
    font-size: 12px;
    line-height: 17px;
  }
  .main__page--contact .section__custom--information .contenedor .bottom__information {
    margin-top: 1rem;
  }
  .main__page--contact .section__custom--information .contenedor .bottom__information .left__form {
    grid-template-columns: 1fr;
  }
  .main__page-support .section__support--product .contenedor .support-product__detail-container .support-product__detail .support-product__tabs {
    gap: 20px;
  }
  .main__page-support .section__support--product .contenedor .support-product__detail-container .support-product__detail .support-product__tabs button {
    padding: 0;
    padding-bottom: 10px;
  }
  .main__page-support .section__support--product .contenedor .support-product__detail-container .support-product__detail .support-product__panels .support-product__panel .faq__tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .main__page-support .section__support--product .contenedor .support-product__detail-container .support-product__detail .support-product__panels .support-product__panel .faq__tabs button {
    flex-shrink: 0;
    padding: 5px;
  }
  .main__page-support .section__support--product .contenedor .support-product__detail-container .support-product__detail .support-product__panels .support-product__panel .support-product__manual-wrap {
    padding: 0;
  }
  .main__page--blog .section__list--blogs {
    padding: 30px 0 60px;
  }
  .main__page--blog .section__list--blogs .contenedor .categories__posts a {
    font-size: 14px;
    line-height: 19px;
  }
  .main__page--blog .section__list--blogs .contenedor .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .main__single-post .section__content-post .contenedor {
    flex-direction: column;
  }
  .main__single-post .section__content-post .contenedor .left h1 {
    font-size: 24px;
    line-height: 29px;
  }
  .main__single-post .section__content-post .contenedor .left .image__destacada img {
    height: auto;
  }
  .main__single-post .section__content-post .contenedor .relation--products {
    margin-top: 0px;
  }
  .main__single-post .section__related--post .contenedor #splide__related-post .splide__slide {
    padding: 10px;
  }
  .main__single-post .section__related--post .contenedor #splide__related-post .splide__pagination {
    bottom: -1.5rem;
  }
  .main__single-post .section__related--post .contenedor #splide__related-post .splide__pagination li button {
    opacity: 1 !important;
    transform: scale(1) !important;
    width: 5px;
    height: 5px;
  }
  .main__single-post .section__related--post .contenedor #splide__related-post .splide__pagination li button.is-active {
    background: #FF8C1A;
    width: 20px;
    border-radius: 5px;
    height: 5px;
  }
  footer {
    padding-block: 30px 15px;
  }
  footer .contenedor .top {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  footer .contenedor .top .item p.title {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 5px;
  }
  footer .contenedor .top .item .main-nav ul.nav__list {
    gap: 5px;
  }
  footer .contenedor .top .item .main-nav ul.nav__list li.menu-item {
    font-size: 12px;
    line-height: 17px;
  }
  footer .contenedor .top .item .main-nav ul.nav__list li.menu-item a {
    font-size: 12px;
    line-height: 17px;
  }
  footer .contenedor .top .item .block.social_media .social--media a {
    width: 25px;
    height: 25px;
  }
  footer .contenedor .top .item .block.social_media .social--media a svg {
    width: 13px;
    height: 13px;
  }
  footer .contenedor .top .item:last-child {
    grid-column: 1/-1;
  }
  footer .contenedor .bottom__legals {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1rem;
    padding-top: 8px;
  }
}/*# sourceMappingURL=app.css.map */