@charset "UTF-8";
/* SECTIONS */
section.hero {
  display: block;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  section.hero {
    height: 310px;
  }
}

section.hero-text {
  position: relative;
  background: #F5F5F5;
}
section.hero-text > img {
  position: absolute;
  width: 50%;
  right: 0;
  height: 100%;
  object-fit: cover;
}
section.hero-text .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
section.hero-text .container .content {
  padding: 90px 0 50px 0;
}
section.hero-text .container .content h1 {
  font-size: 46px !important;
}
section.hero-text .container .content p {
  font-weight: 500;
}

@media screen and (max-width: 769px) {
  section.hero-text {
    padding: 0;
  }
  section.hero-text > img {
    position: unset;
    width: 100%;
    height: 325px;
  }
  section.hero-text .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  section.hero-text .container .content {
    padding: 40px 16px;
    text-align: center;
  }
  section.hero-text .container .content a {
    margin: 40px auto 0 auto;
  }
}
section.intro.content-wrapper .container {
  text-align: center;
}
section.intro.content-wrapper .container h1 {
  margin-bottom: 32px;
  font-size: 64px !important;
  font-weight: 800 !important;
}
section.intro.content-wrapper .container h1 br {
  display: none;
}
@media screen and (max-width: 769px) {
  section.intro.content-wrapper .container h1 {
    margin-bottom: 24px;
    font-size: 40px !important;
  }
  section.intro.content-wrapper .container h1 br {
    display: block;
  }
}
section.intro.content-wrapper .container p {
  font-size: 22px !important;
  line-height: 34px !important;
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 769px) {
  section.intro.content-wrapper .container p {
    font-size: 18px !important;
    line-height: 30px !important;
  }
}
section.intro.content-wrapper .container p.small {
  font-size: 18px !important;
  line-height: 30px !important;
}
section.intro.content-wrapper.service {
  padding: 55px 16px;
}
@media screen and (max-width: 769px) {
  section.intro.content-wrapper.service {
    background-color: transparent !important;
    padding: 40px 16px 0 16px;
  }
}

.two-column-alternating-layout .container {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 769px) {
  .two-column-alternating-layout .container {
    gap: 16px;
  }
}
.two-column-alternating-layout .container card.card {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 769px) {
  .two-column-alternating-layout .container card.card {
    padding: 24px;
    min-height: unset;
  }
  .two-column-alternating-layout .container card.card:nth-child(1) {
    background-color: #A7BCB5;
  }
  .two-column-alternating-layout .container card.card:nth-child(2) {
    background-color: #CCA45E;
  }
  .two-column-alternating-layout .container card.card:nth-child(3) {
    background-color: #C7ADAD;
  }
  .two-column-alternating-layout .container card.card:nth-child(4) {
    background-color: #A4ACBE;
  }
  .two-column-alternating-layout .container card.card:nth-child(5) {
    background-color: #AA9789;
  }
}
.two-column-alternating-layout .container card.card > img {
  width: 50%;
  position: absolute;
  right: 0;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 769px) {
  .two-column-alternating-layout .container card.card > img {
    width: 100%;
    opacity: 0.1;
  }
}
.two-column-alternating-layout .container card.card .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 769px) {
  .two-column-alternating-layout .container card.card .grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.two-column-alternating-layout .container card.card .grid .content .number {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .two-column-alternating-layout .container card.card .grid .content .number {
    color: #0d0e0f !important;
    font-size: 30px;
    line-height: 40px;
  }
}
.two-column-alternating-layout .container card.card .grid .content p {
  max-width: 514px;
}
@media screen and (max-width: 769px) {
  .two-column-alternating-layout .container card.card .grid .content h2 {
    font-size: 24px !important;
    line-height: 34px !important;
  }
  .two-column-alternating-layout .container card.card .grid .content p {
    font-size: 18px;
    line-height: 28px;
  }
  .two-column-alternating-layout .container card.card .grid .content h2, .two-column-alternating-layout .container card.card .grid .content p {
    color: white;
  }
}
.two-column-alternating-layout .container card.card:nth-child(even) > img {
  left: 0;
}
.two-column-alternating-layout .container card.card:nth-child(even) .grid div:nth-child(1) {
  order: 2;
}
.two-column-alternating-layout .container card.card:nth-child(even) .grid div:nth-child(2) {
  order: 1;
}
.two-column-alternating-layout .container card.card:nth-child(1) .number {
  color: #A7BCB5;
}
.two-column-alternating-layout .container card.card:nth-child(2) .number {
  color: #CCA45E;
}
.two-column-alternating-layout .container card.card:nth-child(3) .number {
  color: #C7ADAD;
}
.two-column-alternating-layout .container card.card:nth-child(4) .number {
  color: #A4ACBE;
}
.two-column-alternating-layout .container card.card:nth-child(5) .number {
  color: #AA9789;
}
.two-column-alternating-layout .container card.card:nth-child(1) .btn-arrow:hover {
  color: #A7BCB5;
}
.two-column-alternating-layout .container card.card:nth-child(1) .btn-arrow:hover:after {
  filter: invert(85%) sepia(6%) saturate(545%) hue-rotate(109deg) brightness(87%) contrast(86%);
}
.two-column-alternating-layout .container card.card:nth-child(2) .btn-arrow:hover {
  color: #CCA45E;
}
.two-column-alternating-layout .container card.card:nth-child(2) .btn-arrow:hover:after {
  filter: invert(66%) sepia(45%) saturate(408%) hue-rotate(360deg) brightness(93%) contrast(92%);
}
.two-column-alternating-layout .container card.card:nth-child(3) .btn-arrow:hover {
  color: #C7ADAD;
}
.two-column-alternating-layout .container card.card:nth-child(3) .btn-arrow:hover:after {
  filter: invert(86%) sepia(12%) saturate(354%) hue-rotate(314deg) brightness(85%) contrast(83%);
}
.two-column-alternating-layout .container card.card:nth-child(4) .btn-arrow:hover {
  color: #A4ACBE;
}
.two-column-alternating-layout .container card.card:nth-child(4) .btn-arrow:hover:after {
  filter: invert(91%) sepia(3%) saturate(2087%) hue-rotate(190deg) brightness(72%) contrast(109%);
}
.two-column-alternating-layout .container card.card:nth-child(5) .btn-arrow:hover {
  color: #AA9789;
}
.two-column-alternating-layout .container card.card:nth-child(5) .btn-arrow:hover:after {
  filter: invert(71%) sepia(11%) saturate(571%) hue-rotate(343deg) brightness(87%) contrast(79%);
}

section.footer-form {
  background: #EFDCD8;
}
section.footer-form .container {
  padding: 56px 0;
}
section.footer-form .container h2 {
  text-align: center;
  margin-bottom: 32px;
}

section.grid-images .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
section.grid-images .container .grid-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 568px) {
  section.grid-images .container {
    gap: 16px;
  }
  section.grid-images .container .grid-item {
    aspect-ratio: 1/1;
    overflow: hidden;
  }
}

.owl-dots {
  margin-top: 32px !important;
  display: block;
}
.owl-dots > button span {
  background-color: transparent !important;
  border: 1px solid #0D0E0F;
  width: 8px !important;
  height: 8px !important;
}
.owl-dots > button.active span {
  background: #0D0E0F !important;
}

@media screen and (min-width: 769px) {
  .owl-pasos-slider .owl-stage {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 40px;
    width: 100% !important;
  }
  .owl-pasos-slider .owl-stage > div {
    width: 100% !important;
  }
  .owl-pasos-slider .owl-stage > div:after {
    content: "";
    width: 1px;
    height: 500%;
    position: absolute;
    background: #ebebeb;
    top: 0;
    right: -21px;
  }
  .owl-pasos-slider .owl-stage:after {
    display: none !important;
  }
  .owl-pasos-slider .owl-stage:before {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 50%;
    background: #ebebeb;
  }
}
@media screen and (min-width: 770px) and (max-width: 1090px) {
  .owl-pasos-slider .owl-stage {
    grid-template-columns: repeat(2, 1fr);
  }
  .owl-pasos-slider .owl-stage > div:before {
    content: "";
    width: 500%;
    height: 1px;
    position: absolute;
    background: #ebebeb;
    left: 0;
    bottom: -41px;
  }
  .owl-pasos-slider .owl-stage:before {
    display: none;
  }
}
.owl-pasos-slider .item .wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
.owl-pasos-slider .item .wrapper .number {
  font-size: 36px;
  line-height: 44px;
  font-family: "PlayFair Display";
  font-weight: bold;
}
.owl-pasos-slider .item .wrapper h3 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}
.owl-pasos-slider .item .wrapper p {
  margin: 0;
  font-weight: 500;
}
@media screen and (max-width: 769px) {
  .owl-pasos-slider .owl-stage-outer {
    overflow: unset !important;
  }
  .owl-pasos-slider .owl-stage-outer .owl-stage {
    padding: 0 !important;
  }
}

section.grid-proyectos {
  background: #F5F5F5;
  padding: 56px 16px;
}
@media screen and (max-width: 769px) {
  section.grid-proyectos {
    padding: 40px 16px;
    margin-bottom: 0;
  }
}
section.grid-proyectos .proyectos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
}
@media screen and (max-width: 769px) {
  section.grid-proyectos .proyectos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
section.grid-proyectos .proyectos-grid article.proyecto-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.grid-proyectos .proyectos-grid article.proyecto-item img {
  width: 100%;
  aspect-ratio: 1/1;
}
section.grid-proyectos .proyectos-grid article.proyecto-item h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}
@media screen and (max-width: 769px) {
  section.grid-proyectos .proyectos-grid article.proyecto-item h3 {
    font-size: 18px;
    line-height: 26px;
    margin: 0;
  }
}

section#hero-slider {
  overflow: hidden;
  width: 100%;
}

.owl-hero-slider {
  overflow: hidden;
  touch-action: manipulation !important;
}
.owl-hero-slider .item {
  position: relative;
  height: 480px;
}
.owl-hero-slider .item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.owl-hero-slider .item .wrapper {
  max-width: 1356px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
}
.owl-hero-slider .item .wrapper a {
  color: white;
  text-decoration: none;
  font-size: 50px;
  max-width: 600px;
  line-height: 60px;
  font-family: "PlayFair display";
  font-weight: bold;
  padding-left: 32px;
}
@media screen and (max-width: 768px) {
  .owl-hero-slider .item .wrapper a {
    font-size: 30px;
    line-height: 40px;
    padding-left: 0px;
  }
}
.owl-hero-slider .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 0;
  left: 0;
}
.owl-hero-slider .owl-dots > button span {
  border-color: white;
}
.owl-hero-slider .owl-dots > button.active span {
  background-color: white !important;
}

.hero-slider-container {
  position: relative;
}
.hero-slider-container .navigator-wrapper {
  position: absolute;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1320px;
  margin: auto;
  z-index: 999;
  pointer-events: none;
}
.hero-slider-container .navigator-wrapper button {
  pointer-events: all;
  background-color: transparent;
  padding: 0;
}
.hero-slider-container .navigator-wrapper button .arrow.right svg {
  transform: rotate(180deg);
}
.hero-slider-container .navigator-wrapper button svg {
  height: 19px;
}

.grid-colection {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 880px) {
  .grid-colection {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
.grid-colection a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 880px) {
  .grid-colection a {
    gap: 8px;
  }
}
.grid-colection a img {
  height: 240px;
  object-fit: cover;
}
@media screen and (max-width: 880px) {
  .grid-colection a img {
    height: 220px;
  }
}
.grid-colection a span.title {
  font-family: "Playfair Display";
}

.featured-product-wrapper {
  position: relative;
  max-width: calc(100% - 80px);
  margin: auto;
}
.featured-product-wrapper .product-grid-slider .owl-stage-outer .owl-stage {
  padding-left: 0 !important;
}
.featured-product-wrapper .product-grid-slider .owl-stage-outer {
  /*
  &:before {
      content: "";
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 100%;
      z-index: 999;
      background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 1) 100%);
  }
      */
}
.featured-product-wrapper .product-grid-slider .owl-stage-outer:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #ffffff;
  top: 0;
  right: 100%;
}
.featured-product-wrapper .product-grid-slider a.product {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  padding: 24px;
}
.featured-product-wrapper .product-grid-slider a.product:hover {
  background: rgba(239, 220, 216, 0.5);
}
@media screen and (max-width: 769px) {
  .featured-product-wrapper .product-grid-slider a.product {
    padding: 0 12px;
  }
}
.featured-product-wrapper .product-grid-slider a.product .image-wrapper {
  width: 100%;
  height: 250px;
  max-width: 200px;
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 769px) {
  .featured-product-wrapper .product-grid-slider a.product .image-wrapper {
    max-width: unset;
  }
}
.featured-product-wrapper .product-grid-slider a.product .image-wrapper img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 14px rgba(13, 14, 15, 0.2);
}
@media screen and (max-width: 769px) {
  .featured-product-wrapper .product-grid-slider a.product .image-wrapper img {
    height: 100%;
    object-fit: contain;
    width: auto;
  }
}
.featured-product-wrapper .product-grid-slider a.product span.summary {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (max-width: 769px) {
  .featured-product-wrapper .product-grid-slider a.product span.summary {
    font-size: 14px;
    line-height: 21px;
  }
}
.featured-product-wrapper .product-grid-slider a.product span.name {
  font-size: 24px;
  line-height: 32px;
  font-family: "Playfair Display";
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .featured-product-wrapper .product-grid-slider a.product span.name {
    font-size: 18px;
    line-height: 26px;
  }
}
.featured-product-wrapper .product-grid-slider a.product span.price span,
.featured-product-wrapper .product-grid-slider a.product span.price bdi {
  font-size: 22px;
  line-height: 34px;
  font-family: "Playfair Display";
  font-weight: bold;
}
@media screen and (max-width: 769px) {
  .featured-product-wrapper .product-grid-slider a.product span.price span,
  .featured-product-wrapper .product-grid-slider a.product span.price bdi {
    font-size: 18px;
    line-height: 26px;
  }
}
.featured-product-wrapper .navigator-product-wrapper-featured, .featured-product-wrapper .navigator-product-wrapper-related, .featured-product-wrapper .navigator-product-wrapper-present {
  position: absolute;
  height: 100%;
  width: calc(100% + 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 0;
  margin: auto;
  left: -40px;
}
.featured-product-wrapper .navigator-product-wrapper-featured button, .featured-product-wrapper .navigator-product-wrapper-related button, .featured-product-wrapper .navigator-product-wrapper-present button {
  z-index: 9999;
  height: 40px;
  width: 40px;
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
  margin-top: -60px;
}
.featured-product-wrapper .navigator-product-wrapper-featured button.owl-prev, .featured-product-wrapper .navigator-product-wrapper-related button.owl-prev, .featured-product-wrapper .navigator-product-wrapper-present button.owl-prev {
  background-image: url("/wp-content/uploads/2026/07/arrow-carrusel.webp");
}
.featured-product-wrapper .navigator-product-wrapper-featured button.owl-next, .featured-product-wrapper .navigator-product-wrapper-related button.owl-next, .featured-product-wrapper .navigator-product-wrapper-present button.owl-next {
  background-image: url("/wp-content/uploads/2026/07/arrow-carrusel.webp");
  transform: rotate(180deg);
}
.featured-product-wrapper .navigator-product-wrapper-featured button:hover, .featured-product-wrapper .navigator-product-wrapper-related button:hover, .featured-product-wrapper .navigator-product-wrapper-present button:hover {
  background-image: url("/wp-content/uploads/2026/07/arrow-carrusel-hover.webp");
}

#descubre-grid .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 650px) {
  #descubre-grid .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
#descubre-grid .grid card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 650px) {
  #descubre-grid .grid card {
    gap: 8px;
  }
}
#descubre-grid .grid card img {
  width: 100%;
  height: 315px;
  object-fit: cover;
}
@media screen and (max-width: 650px) {
  #descubre-grid .grid card img {
    height: 250px;
  }
}
#descubre-grid .grid card .title {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
  font-family: "Playfair Display", serif;
}
@media screen and (max-width: 650px) {
  #descubre-grid .grid card .title {
    font-size: 18px;
    line-height: 26px;
  }
}

#para-profesionales-grid {
  padding: 56px 16px;
  background: #F0EAEA;
}
#para-profesionales-grid .btn {
  margin-top: 56px;
}
@media screen and (max-width: 769px) {
  #para-profesionales-grid .btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 624px) {
  #para-profesionales-grid {
    padding: 40px 0px;
  }
  #para-profesionales-grid h2 {
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 870px) {
  #para-profesionales-grid .owl-stage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100% !important;
    gap: 35px 30px;
  }
  #para-profesionales-grid .owl-stage:after {
    display: none;
  }
  #para-profesionales-grid .owl-stage .owl-item {
    width: 100% !important;
    margin: 0 !important;
    height: 100%;
  }
  #para-profesionales-grid .owl-stage .owl-item:nth-child(3) .item .media-column, #para-profesionales-grid .owl-stage .owl-item:nth-child(4) .item .media-column {
    order: 1;
  }
  #para-profesionales-grid .owl-stage .owl-item:nth-child(3) .item .text-column, #para-profesionales-grid .owl-stage .owl-item:nth-child(4) .item .text-column {
    order: 2;
  }
  #para-profesionales-grid .owl-stage .owl-item .item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    text-decoration: none;
  }
  #para-profesionales-grid .owl-stage .owl-item .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
#para-profesionales-grid .owl-stage .owl-item {
  position: relative;
}
#para-profesionales-grid .owl-stage .owl-item:nth-child(1) {
  background-color: #A7BCB5;
}
#para-profesionales-grid .owl-stage .owl-item:nth-child(2) {
  background-color: #CCA45E;
}
#para-profesionales-grid .owl-stage .owl-item:nth-child(3) {
  background-color: #C7ADAD;
}
#para-profesionales-grid .owl-stage .owl-item:nth-child(4) {
  background-color: #A4ACBE;
}
#para-profesionales-grid .owl-stage .owl-item .text-column {
  padding: 24px;
}
#para-profesionales-grid .owl-stage .owl-item .text-column span.number {
  font-size: 30px;
  font-family: "Playfair Display";
  font-weight: bold;
  line-height: 38px;
  display: block;
}
#para-profesionales-grid .owl-stage .owl-item .text-column h3 {
  color: white;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
}
@media screen and (max-width: 870px) {
  #para-profesionales-grid .owl-stage .owl-item .text-column h3 {
    font-size: 24px;
  }
}
#para-profesionales-grid .owl-stage .owl-item .text-column p {
  color: white;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 870px) {
  #para-profesionales-grid .owl-stage {
    display: flex;
  }
  #para-profesionales-grid .profesionales-home-grid-slider {
    padding-left: 16px;
  }
  #para-profesionales-grid .owl-dots {
    width: calc(100% - 16px);
    margin: 40px 0 !important;
  }
  #para-profesionales-grid .media-column {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    z-index: 0;
  }
  #para-profesionales-grid .media-column img {
    height: 100%;
    object-fit: cover;
  }
  #para-profesionales-grid .text-column {
    position: relative;
    z-index: 99;
  }
  #para-profesionales-grid .item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rebeccapurple;
    left: 0;
    top: 0;
    z-index: 9;
    opacity: 0.9;
  }
  #para-profesionales-grid .owl-stage {
    padding-left: 0 !important;
  }
  #para-profesionales-grid .owl-stage .owl-item:nth-child(1) .item::before {
    background-color: #A7BCB5;
  }
  #para-profesionales-grid .owl-stage .owl-item:nth-child(2) .item::before {
    background-color: #CCA45E;
  }
  #para-profesionales-grid .owl-stage .owl-item:nth-child(3) .item::before {
    background-color: #C7ADAD;
  }
  #para-profesionales-grid .owl-stage .owl-item:nth-child(4) .item::before {
    background-color: #A4ACBE;
  }
}

div#footer-newsletter {
  max-width: 698px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
div#footer-newsletter * {
  font-family: "Lexend Deca", sans-serif;
}
div#footer-newsletter .footer-container.inputs {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 16px;
}
div#footer-newsletter .footer-container.inputs p {
  margin: 0;
}
div#footer-newsletter .footer-container.inputs input {
  width: 100%;
  height: 55px;
  font-size: 14px;
}
@media screen and (max-width: 550px) {
  div#footer-newsletter .footer-container.inputs input {
    height: 46px;
  }
}
div#footer-newsletter .footer-container.inputs input[type=email] {
  border: 1px solid #c7adad;
}
div#footer-newsletter .footer-container.inputs input[type=submit] {
  background: transparent;
  border: 2px solid #0D0E0F;
  color: #0D0E0F;
  font-size: 18px;
  font-weight: 500;
}
div#footer-newsletter .footer-container.inputs input[type=submit]:hover {
  background: #0D0E0F;
  color: white;
}
div#footer-newsletter .footer-container.acceptances .wpcf7-list-item {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
div#footer-newsletter span.wpcf7-spinner {
  position: absolute;
  margin: 16px 5px;
}
div#footer-newsletter .wpcf7-response-output {
  max-width: 698px;
  margin: auto !important;
  display: block;
  text-align: center;
  border: none !important;
}
div#footer-newsletter .wpcf7-not-valid-tip {
  font-size: 14px;
}

div#footer-contacto {
  max-width: 872px;
  margin: auto;
}
div#footer-contacto * {
  font-family: "Lexend Deca", sans-serif;
}
div#footer-contacto br {
  display: none;
}
div#footer-contacto p {
  margin: 0;
}
div#footer-contacto .footer-container.inputs {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
div#footer-contacto .footer-container.inputs .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 550px) {
  div#footer-contacto .footer-container.inputs .two-col {
    grid-template-columns: 1fr;
  }
}
div#footer-contacto .footer-container.inputs .two-col input,
div#footer-contacto .footer-container.inputs .two-col select {
  width: 100%;
  height: 55px;
  border: 1px solid #C7ADAD;
  font-size: 14px;
}
@media screen and (max-width: 550px) {
  div#footer-contacto .footer-container.inputs .two-col input,
  div#footer-contacto .footer-container.inputs .two-col select {
    height: 46px;
  }
}
div#footer-contacto .footer-container.inputs label {
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 24px;
  margin-bottom: 8px;
}
div#footer-contacto .footer-container.inputs input[type=submit] {
  background: transparent;
  border: 2px solid #0D0E0F;
  color: #0D0E0F;
  font-size: 18px;
  font-weight: 500;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 550px) {
  div#footer-contacto .footer-container.inputs input[type=submit] {
    font-size: 16px;
  }
}
div#footer-contacto .footer-container.inputs input[type=submit]:hover {
  background: #0D0E0F;
  color: white;
}
div#footer-contacto .message textarea {
  resize: none;
  height: 138px;
  border: 1px solid #C7ADAD;
  font-size: 14px;
}
div#footer-contacto .acceptances {
  display: flex;
  flex-direction: column;
}
div#footer-contacto .acceptances .wpcf7-list-item {
  margin: 0;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
}
div#footer-contacto .wpcf7-response-output {
  max-width: 698px;
  margin: auto !important;
  display: block;
  text-align: center;
  border: none !important;
}
div#footer-contacto .wpcf7-not-valid-tip {
  font-size: 14px;
}

/* ECOMMERCE */
.woocommerce-notices-wrapper {
  max-width: 1320px;
  margin: auto;
  margin-top: 84px;
  display: block;
}
.woocommerce-notices-wrapper .woocommerce-message {
  margin: 0 !important;
  border-color: #0d0e0f;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-notices-wrapper .woocommerce-message:after {
  display: none;
}
.woocommerce-notices-wrapper .woocommerce-message:before {
  color: #0d0e0f;
  top: 22px;
}
.woocommerce-notices-wrapper .woocommerce-message a.button {
  border-radius: 0 !important;
  background: transparent !important;
  transition: 0.3s;
  border: 2px solid #0D0E0F !important;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #0D0E0F !important;
}
.woocommerce-notices-wrapper .woocommerce-message a.button:hover {
  background: #0D0E0F !important;
  color: white !important;
}

#product-wrapper {
  margin-top: 84px;
}
#product-wrapper .product-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .media {
    display: none;
  }
}
#product-wrapper .product-page-grid .media .thumbnail {
  padding: 45px;
  background: #C7ADAD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
#product-wrapper .product-page-grid .media .thumbnail img {
  max-width: 410px;
  width: 100%;
  transition: 0.3s;
}
#product-wrapper .product-page-grid .media .thumbnail:hover img {
  transform: scale(1.05);
}
#product-wrapper .product-page-grid .media .gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
#product-wrapper .product-page-grid .media .gallery .wrapper {
  padding: 16px;
  background-color: #E2E2E2;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-wrapper .product-page-grid .media .gallery .wrapper img {
  object-fit: contain;
  cursor: pointer;
  transition: 0.3s;
}
#product-wrapper .product-page-grid .media .gallery .wrapper:hover img {
  transform: scale(1.05);
}
#product-wrapper .product-page-grid .content span.colection a, #product-wrapper .product-page-grid .content span.colection span {
  font-size: 18px;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content span.colection a, #product-wrapper .product-page-grid .content span.colection span {
    font-size: 16px;
  }
}
#product-wrapper .product-page-grid .content h1.product_title.entry-title {
  font-size: 46px !important;
  line-height: 58px !important;
  margin-bottom: 4px;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content h1.product_title.entry-title {
    font-size: 30px !important;
    line-height: 48px !important;
  }
}
#product-wrapper .product-page-grid .content .woocommerce-product-details__short-description,
#product-wrapper .product-page-grid .content .woocommerce-product-details__short-description p {
  font-size: 22px !important;
  line-height: 34px !important;
  margin-bottom: 16px;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content .woocommerce-product-details__short-description,
  #product-wrapper .product-page-grid .content .woocommerce-product-details__short-description p {
    font-size: 18px !important;
    line-height: 34px !important;
  }
}
#product-wrapper .product-page-grid .content .grid-langs-wrapper .grid-langs {
  display: flex;
  gap: 16px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 22px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
#product-wrapper .product-page-grid .content .grid-langs-wrapper .grid-langs span {
  border: 2px solid #0d0e0f;
  padding: 6px 16px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
}
#product-wrapper .product-page-grid .content .grid-langs-wrapper .grid-langs span:hover, #product-wrapper .product-page-grid .content .grid-langs-wrapper .grid-langs span.active {
  background: #0d0e0f;
  color: white;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content .grid-langs-wrapper {
    height: 54px;
    position: relative;
  }
  #product-wrapper .product-page-grid .content .grid-langs-wrapper .grid-langs {
    flex-wrap: unset;
    overflow: scroll;
    padding-bottom: 8px;
    margin-bottom: 8px;
    width: calc(100dvw - 16px);
    padding-right: 16px;
    position: absolute;
  }
}
#product-wrapper .product-page-grid .content p.price {
  margin-bottom: 16px;
}
#product-wrapper .product-page-grid .content p.price span bdi {
  font-size: 36px !important;
  font-family: "Playfair Display" !important;
  line-height: 48px;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content p.price span bdi {
    font-size: 26px !important;
  }
}
#product-wrapper .product-page-grid .content p.price span bdi span.woocommerce-Price-currencySymbol {
  font-family: "Playfair Display";
}
#product-wrapper .product-page-grid .content .variations,
#product-wrapper .product-page-grid .content .quantity,
#product-wrapper .product-page-grid .content .woocommerce-variation-availability {
  display: none !important;
}
#product-wrapper .product-page-grid .content .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
#product-wrapper .product-page-grid .content .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
  border-radius: 0 !important;
  background: #0D0E0F !important;
  transition: 0.3s;
  border: 2px solid #0D0E0F !important;
  text-transform: uppercase;
  font-size: 18px !important;
  font-weight: 400 !important;
  font-family: "Lexend Deca";
  padding: 16px 24px;
}
#product-wrapper .product-page-grid .content .woocommerce-variation-add-to-cart button.single_add_to_cart_button:hover {
  background: white !important;
  color: #0D0E0F !important;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content .woocommerce-variation-add-to-cart {
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    z-index: 99999;
  }
  #product-wrapper .product-page-grid .content .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
    width: 100%;
  }
}
#product-wrapper .product-page-grid .content .cta-contacto-producto-wrapper {
  margin: 55px 0;
}
#product-wrapper .product-page-grid .content .cta-contacto-producto-wrapper span.cta-contacto-producto {
  display: block;
  padding: 24px 16px;
  text-align: center;
  background: #f0eaea;
  font-family: "Playfair Display";
  font-size: 22px;
  line-height: 34px;
}
#product-wrapper .product-page-grid .content .cta-contacto-producto-wrapper span.cta-contacto-producto a {
  font-family: "Playfair Display";
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content .cta-contacto-producto-wrapper {
    height: 116px;
    position: relative;
  }
  #product-wrapper .product-page-grid .content .cta-contacto-producto-wrapper span.cta-contacto-producto {
    width: 100dvw;
    margin-left: -16px;
    position: absolute;
  }
}
#product-wrapper .product-page-grid .content .btn {
  text-transform: uppercase;
  margin: 0;
  padding: 16px 24px !important;
  line-height: 24px;
  font-weight: 400;
}
@media screen and (max-width: 850px) {
  #product-wrapper .product-page-grid .content .btn {
    display: block;
    width: fit-content;
    margin: auto;
  }
}

.custom-product-content {
  position: relative;
}
.custom-product-content__inner {
  position: relative;
}
.custom-product-content__inner b,
.custom-product-content__inner a {
  font-family: "PlayFair Display" !important;
  font-weight: 700;
}
.custom-product-content .title {
  display: block;
  font-size: 36px;
  line-height: 48px;
  font-weight: bold;
  font-family: "Playfair Display";
  margin-bottom: 24px;
}
.custom-product-content.has-readmore:not(.is-expanded) .custom-product-content__inner p:nth-of-type(n + 3) {
  display: none;
}
.custom-product-content__toggle {
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

section#product-aditional-info {
  margin: 55px 0;
}
@media screen and (max-width: 850px) {
  section#product-aditional-info {
    margin: 55px 0 24px 0;
  }
}
section#product-aditional-info .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media screen and (max-width: 635px) {
  section#product-aditional-info .container {
    grid-template-columns: 1fr;
  }
}
section#product-aditional-info .container card {
  padding: 8px 0;
  border-top: 1px solid #0D0E0F;
  font-size: 16px;
  line-height: 24px;
}
section#product-aditional-info .container card .title {
  font-weight: 500;
}
section#product-aditional-info .container card a {
  text-decoration: none;
  color: #B38F52;
  position: relative;
}
section#product-aditional-info .container card a:after {
  content: "";
  position: absolute;
  right: -20px;
  transition: 0.3s;
  font-size: 22px;
  background-image: url(/wp-content/themes/generatepress-child/assets/media/icons/arrow-right.svg);
  width: 20px;
  height: 26px;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(59%) sepia(70%) saturate(301%) hue-rotate(359deg) brightness(87%) contrast(85%);
}
section#product-aditional-info .container card a:hover {
  color: black;
}
section#product-aditional-info .container card a:hover:after {
  transform: translateX(5px);
  filter: unset;
}
section#product-aditional-info .container card:nth-last-child(-n+2) {
  border-bottom: 1px solid #0D0E0F;
}
@media screen and (max-width: 635px) {
  section#product-aditional-info .container card:nth-last-child(-n+2) {
    border-bottom: 0;
  }
  section#product-aditional-info .container card:last-child {
    border-bottom: 1px solid #0D0E0F;
  }
}

.reviews h2 {
  text-align: center;
  margin-bottom: 40px;
}
.reviews .owl-reviews-slider-wrapper {
  position: relative;
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider {
  padding: 0 65px;
}
@media screen and (max-width: 769px) {
  .reviews .owl-reviews-slider-wrapper .owl-reviews-slider {
    padding: 0;
  }
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider card.item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider card.item span.review-wrapper {
  display: flex;
  gap: 8px;
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider card.item span.review-wrapper img {
  width: 16px !important;
  height: 16px;
  object-fit: contain;
  display: inline-block;
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider card.item span {
  font-family: "Playfair Display";
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider card.item span.author {
  font-size: 24px;
  font-weight: bold;
  line-height: 32px;
}
.reviews .owl-reviews-slider-wrapper .owl-reviews-slider card.item span.comment {
  font-size: 18px;
}
.reviews .owl-reviews-slider-wrapper .navigator-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  z-index: 9999;
}
@media screen and (max-width: 769px) {
  .reviews .owl-reviews-slider-wrapper .navigator-wrapper {
    display: none;
  }
}
.reviews .owl-reviews-slider-wrapper .navigator-wrapper button {
  background: transparent;
  width: 40px;
  height: 40px;
  background-image: url("/wp-content/themes/generatepress-child/assets/svg/arrow-carrusel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.reviews .owl-reviews-slider-wrapper .navigator-wrapper button:hover {
  background-image: url("/wp-content/themes/generatepress-child/assets/svg/arrow-carrusel-hover.svg");
}
.reviews .owl-reviews-slider-wrapper .navigator-wrapper button.owl-prev {
  transform: rotate(180deg);
}

section#galery-lightbox {
  position: fixed;
  z-index: 100000000000000000;
  width: 100%;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.768627451);
  top: 0;
  left: 0;
  padding: 16px;
  display: none;
}
section#galery-lightbox .wrapper {
  display: flex;
  gap: 16px;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
section#galery-lightbox .wrapper span.close {
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
}
section#galery-lightbox .wrapper span.close:hover {
  transform: scale(1.25);
}
section#galery-lightbox .wrapper .img-wrapper img {
  max-height: 80dvh;
  width: 100%;
  object-fit: contain;
  max-width: 90%;
  display: block;
  margin: auto;
}

.mobile-product-slider-wrapper {
  padding: 24px;
  background: #c7adad;
  position: relative;
  margin-bottom: 40px;
  align-items: center;
  display: none;
  aspect-ratio: 1/1;
}
.mobile-product-slider-wrapper .owl-stage {
  align-items: center;
  display: flex;
}
.mobile-product-slider-wrapper .owl-stage .card img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 850px) {
  .mobile-product-slider-wrapper {
    display: flex;
    height: 321px;
    aspect-ratio: unset;
  }
  .mobile-product-slider-wrapper .card {
    max-height: 270px;
  }
  .mobile-product-slider-wrapper .card img {
    max-height: 270px;
  }
}
.mobile-product-slider-wrapper .navigator-product-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
  z-index: 9999;
}
.mobile-product-slider-wrapper .navigator-product-wrapper button {
  background: transparent;
  width: 40px;
  height: 40px;
  background-image: url("/wp-content/themes/generatepress-child/assets/svg/arrow-carrusel.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.mobile-product-slider-wrapper .navigator-product-wrapper button:hover {
  background-image: url("/wp-content/themes/generatepress-child/assets/svg/arrow-carrusel-hover.svg");
}
.mobile-product-slider-wrapper .navigator-product-wrapper button.owl-prev {
  transform: rotate(180deg);
}

.post-type-archive-product .page-description p,
.archive .page-description p {
  font-size: 22px !important;
  line-height: 34px !important;
}
@media screen and (max-width: 844px) {
  .post-type-archive-product .page-description p,
  .archive .page-description p {
    font-size: 18px !important;
    line-height: 30px !important;
  }
}
.post-type-archive-product div#content,
.archive div#content {
  flex-direction: column;
}
.post-type-archive-product div#content div#primary,
.archive div#content div#primary {
  padding: 0 16px;
}
.post-type-archive-product div#content div#primary main#main,
.archive div#content div#primary main#main {
  max-width: 1320px;
  margin: auto;
}
.post-type-archive-product #filter-toggle,
.post-type-archive-product #filter,
.archive #filter-toggle,
.archive #filter {
  padding: 8px 16px !important;
  font-size: 14px;
}
.post-type-archive-product .filter-icon,
.archive .filter-icon {
  background-color: transparent;
  color: #0D0E0F;
  height: 44px;
}
.post-type-archive-product .filter-icon:after,
.archive .filter-icon:after {
  content: "";
  background-image: url(/wp-content/themes/generatepress-child/assets/media/icons/filtrar-dark.svg);
  width: 19px;
  height: 12px;
  display: inline-block;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 6px;
  transition: 0.3s;
}
.post-type-archive-product .filter-icon:hover, .post-type-archive-product .filter-icon.active,
.archive .filter-icon:hover,
.archive .filter-icon.active {
  background-color: #0D0E0F;
  color: #fff;
}
.post-type-archive-product .filter-icon:hover:after, .post-type-archive-product .filter-icon.active:after,
.archive .filter-icon:hover:after,
.archive .filter-icon.active:after {
  background-image: url(/wp-content/themes/generatepress-child/assets/media/icons/filtrar-light.svg);
}

#archive-hero {
  margin: 84px auto 0 auto;
  padding: 0;
  max-width: 1100px;
  text-align: center;
}
#archive-hero h1 {
  margin-bottom: 32px;
  font-weight: 800 !important;
}

section#categories {
  display: flex;
  justify-content: center;
  gap: 16px 32px;
  flex-wrap: wrap;
  min-height: 44px;
  align-items: center;
}
section#categories a {
  font-size: 18px;
  text-decoration: none;
}
section#categories a:hover {
  text-decoration: underline;
}

.filter-wrapper {
  position: relative;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .filter-wrapper {
    margin-bottom: 40px;
  }
}

section#ecommerce-filter {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 950px) {
  section#ecommerce-filter {
    position: unset;
    display: flex;
    justify-content: end;
    margin-top: 18px;
  }
}
section#ecommerce-filter .popup-filters {
  margin-top: 12px;
  right: 0;
  position: absolute;
  box-shadow: 0px 3px 23px rgba(0, 0, 0, 0.1607843137);
  padding: 0 0 26px 0;
  background: white;
  min-width: 300px;
  display: none;
  z-index: 9999999;
}
section#ecommerce-filter .popup-filters button#filter {
  margin: 12px auto 0 auto;
  display: block;
}

.popup-filters card {
  display: flex;
  flex-direction: column;
}
.popup-filters card span.accordeon-title {
  padding: 12px 24px;
  position: relative;
  background: #F5F5F5;
  cursor: pointer;
}
.popup-filters card span.accordeon-title:hover {
  background: #0D0E0F;
  color: white;
}
.popup-filters card span.accordeon-title:after {
  content: "+";
  position: absolute;
  right: 24px;
}
.popup-filters card span.accordeon-title.active {
  background: #0D0E0F;
  color: white;
}
.popup-filters card span.accordeon-title.active:after {
  content: "-";
}
.popup-filters card .accordion-wrapper {
  padding: 16px 24px;
  display: none;
}
.popup-filters card .accordion-wrapper label {
  display: block;
}
.popup-filters card .accordion-wrapper label:not(:last-child) {
  margin-bottom: 11px;
}

#dosde-products-wrapper .woocommerce-notices-wrapper {
  display: none;
}
#dosde-products-wrapper ul.products.columns-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  #dosde-products-wrapper ul.products.columns-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 844px) {
  #dosde-products-wrapper ul.products.columns-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}
#dosde-products-wrapper ul.products.columns-5 li {
  width: 100% !important;
  margin: 0 !important;
  transition: 0.15s ease-in;
}
#dosde-products-wrapper ul.products.columns-5 li:hover {
  background: rgba(239, 220, 216, 0.5);
}
@media screen and (max-width: 844px) {
  #dosde-products-wrapper ul.products.columns-5 li:hover {
    background: transparent;
  }
}
#dosde-products-wrapper ul.products.columns-5:before, #dosde-products-wrapper ul.products.columns-5:after {
  display: none;
}
#dosde-products-wrapper ul.products.columns-5 .product a.woocommerce-loop-product__link {
  padding: 35px 24px;
  height: 100%;
}
@media screen and (max-width: 844px) {
  #dosde-products-wrapper ul.products.columns-5 .product a.woocommerce-loop-product__link {
    padding: 0;
  }
}
#dosde-products-wrapper ul.products.columns-5 .product .product-image-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: end;
  margin-bottom: 16px;
}
#dosde-products-wrapper ul.products.columns-5 .product .product-image-wrapper img {
  box-shadow: 0px 0px 14px rgba(13, 14, 15, 0.2) !important;
  position: absolute;
  margin: 0 !important;
  width: auto;
  height: fit-content;
  max-height: 220px;
  object-fit: contain;
}
#dosde-products-wrapper ul.products.columns-5 .product span.subtitle {
  margin: 0;
  font-size: 16px !important;
  font-family: "Lexend Deca" !important;
  line-height: 24px !important;
}
@media screen and (max-width: 768px) {
  #dosde-products-wrapper ul.products.columns-5 .product span.subtitle {
    font-size: 14px !important;
    line-height: 24px !important;
  }
}
#dosde-products-wrapper ul.products.columns-5 .product h2.woocommerce-loop-product__title {
  padding: 4px 0 !important;
  font-size: 24px !important;
  line-height: 32px !important;
}
@media screen and (max-width: 768px) {
  #dosde-products-wrapper ul.products.columns-5 .product h2.woocommerce-loop-product__title {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}
#dosde-products-wrapper ul.products.columns-5 .product span.price span,
#dosde-products-wrapper ul.products.columns-5 .product span.price bdi {
  font-size: 22px !important;
  font-family: "Playfair Display" !important;
  font-weight: bold;
  color: #0D0E0F;
}
@media screen and (max-width: 768px) {
  #dosde-products-wrapper ul.products.columns-5 .product span.price span,
  #dosde-products-wrapper ul.products.columns-5 .product span.price bdi {
    font-size: 18px !important;
    line-height: 26px !important;
  }
}
#dosde-products-wrapper ul.products.columns-5 .product .star-rating,
#dosde-products-wrapper ul.products.columns-5 .product .add_to_cart_button,
#dosde-products-wrapper ul.products.columns-5 .product .button {
  display: none !important;
}

.woocommerce-pagination {
  margin-bottom: 55px;
}
.woocommerce-pagination ul, .woocommerce-pagination li {
  border: none !important;
}
.woocommerce-pagination a,
.woocommerce-pagination span {
  font-size: 18px !important;
  line-height: 24px !important;
  background-color: white !important;
}
.woocommerce-pagination a.current, .woocommerce-pagination a:hover,
.woocommerce-pagination span.current,
.woocommerce-pagination span:hover {
  color: #CCA45E !important;
}

.woocommerce-account #content,
.woocommerce-cart #content,
.woocommerce-checkout #content {
  padding: 0 20px !important;
}
.woocommerce-account #content #primary,
.woocommerce-cart #content #primary,
.woocommerce-checkout #content #primary {
  max-width: 1320px;
  margin: 72px auto 62px;
}

.woocommerce-cart .wp-block-woocommerce-cart,
.woocommerce-cart .wp-block-woocommerce-checkout,
.woocommerce-checkout .wp-block-woocommerce-cart,
.woocommerce-checkout .wp-block-woocommerce-checkout {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
}

.wc-block-checkout__sidebar.is-sticky.is-large {
  top: 150px;
}

.woocommerce-account .entry-title {
  display: block;
  margin: 0 0 50px;
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 50px;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.woocommerce-MyAccount-navigation li a {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  background: transparent;
  color: #000;
  font-weight: 400 !important;
  text-decoration: none;
  transition: 0.3s;
}
.woocommerce-MyAccount-navigation li a:hover {
  background: #0d0e0f;
  color: #fff;
  border-color: #0d0e0f;
}
.woocommerce-MyAccount-navigation li a {
  padding: 12px;
  display: block;
}
.woocommerce-MyAccount-navigation li.is-active a {
  background: #0d0e0f;
  color: #fff;
}

.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  margin: 0;
}
.woocommerce-MyAccount-content .woocommerce-info {
  border-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}
.woocommerce-MyAccount-content .woocommerce-info:before {
  display: none;
}
.woocommerce-MyAccount-content .woocommerce-info a {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  background: transparent;
  color: #000;
  font-weight: 400 !important;
  text-decoration: none;
  transition: 0.3s;
}
.woocommerce-MyAccount-content .woocommerce-info a:hover {
  background: #0d0e0f;
  color: #fff;
  border-color: #0d0e0f;
}
.woocommerce-MyAccount-content form input,
.woocommerce-MyAccount-content form select,
.woocommerce-MyAccount-content form .select2-selection {
  border-radius: 0 !important;
  font-family: "Lexend Deca" !important;
  font-weight: 300 !important;
  height: 50px !important;
  font-size: 16px;
  padding: 12px !important;
}
.woocommerce-MyAccount-content form .select2-selection__rendered {
  padding: 3px 0 !important;
}
.woocommerce-MyAccount-content table.shop_table,
.woocommerce-MyAccount-content table.shop_table th,
.woocommerce-MyAccount-content table.shop_table td {
  border: 1px solid #000;
  border-radius: 0 !important;
  border-collapse: collapse !important;
  text-align: center;
}
.woocommerce-MyAccount-content a.woocommerce-button.button.view {
  border: 0;
  background: transparent;
  color: #000;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content a.woocommerce-button.button.view {
    margin: unset;
    padding: 4px !important;
  }
}
.woocommerce-MyAccount-content .button {
  border: 1px solid #0d0e0f !important;
  border-radius: 0 !important;
  background: transparent;
  color: #0d0e0f;
  font-weight: 400 !important;
  text-decoration: none;
  transition: 0.3s;
}
.woocommerce-MyAccount-content .button:hover {
  background: #0d0e0f;
  color: #fff;
  border-color: #0d0e0f;
}
.woocommerce-MyAccount-content .button {
  padding: 9px 24px 7px !important;
  display: block !important;
  width: fit-content;
  background-color: transparent !important;
  color: #0d0e0f !important;
  border-color: #0d0e0f !important;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content .woocommerce-orders-table__row {
    margin-bottom: 20px;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__row td {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-bottom: -1px;
  }
  .woocommerce-MyAccount-content .woocommerce-orders-table__row td:before {
    position: absolute;
    left: 12px;
  }
  .woocommerce-MyAccount-content table.shop_table {
    border: 0;
  }
}

.wc-block-checkout__form input,
.wc-block-checkout__form select,
.wc-block-checkout__form .select2-selection {
  border-radius: 0 !important;
  font-family: "Lexend Deca" !important;
  font-weight: 300 !important;
}

.woocommerce-Addresses a.edit {
  border: 1px solid #000 !important;
  border-radius: 0 !important;
  background: transparent;
  color: #000;
  font-weight: 400 !important;
  text-decoration: none;
  transition: 0.3s;
}
.woocommerce-Addresses a.edit:hover {
  background: #0d0e0f;
  color: #fff;
  border-color: #0d0e0f;
}
.woocommerce-Addresses a.edit {
  padding: 12px;
  float: none !important;
  text-align: center;
  display: block;
  margin: 12px 0;
}

/* BLOG */
.single-post div#content {
  flex-direction: column;
}
.single-post div#content section#post-header {
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 45px;
}
.single-post div#content section#post-header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(13, 14, 15, 0.3019607843) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.single-post div#content section#post-header img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.single-post div#content section#post-header .container h1 {
  z-index: 999;
  color: white;
  position: relative;
}
.single-post div#content h2 *, .single-post div#content h3 *, .single-post div#content h4 * {
  font-family: "Playfair Display";
}
.single-post div#content h2 {
  font-size: 36px;
  line-height: 48px;
  margin: 56px 0 24px;
}
.single-post div#content h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 769px) {
  .single-post div#content h2 {
    font-size: 30px;
    line-height: 42px;
    margin: 40px 0 24px;
  }
}
.single-post div#content p {
  font-family: "Playfair Display";
  font-size: 18px;
  line-height: 30px;
}
.single-post div#content p * {
  font-family: "Playfair Display";
}
.single-post #post-content-grid .container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 154px;
}
.single-post #post-content-grid .container .post-sidebar-wrapper .post-sidebar-container {
  position: sticky;
  top: 154px;
}
.single-post #post-content-grid .container .post-sidebar-wrapper .post-sidebar-container span.sidebar-title {
  display: block;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 24px;
  font-family: "Playfair Display";
  font-weight: 800;
}
.single-post #post-content-grid .container .post-sidebar-wrapper .post-sidebar-container ul.sidebar-list {
  margin: 0;
  list-style: none;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list li a {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 36px;
  font-weight: 600;
  color: #B38F52;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list li a .category-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list li a .category-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(13, 14, 15, 0.3019607843) 0% 0% no-repeat padding-box;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list li a .category-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list li a:hover {
  color: #0D0E0F;
}
.single-post #post-content-grid .container div#categories ul.sidebar-list li a:hover .category-icon:after {
  opacity: 1;
}
.single-post #post-content-grid .container div#related a {
  font-size: 16px;
  line-height: 26px;
  text-decoration: none;
}
.single-post #post-content-grid .container div#related ul.sidebar-list li:not(:last-child) {
  border-bottom: 1px solid rgba(13, 14, 15, 0.2);
  margin-bottom: 16px;
  padding-bottom: 16px;
}

section.blog-homepage {
  width: 100%;
}

section#blog-homepage-header h1 {
  margin: 67px 0 46px 0;
  text-align: center;
  font-size: 64px !important;
  line-height: 74px !important;
}
@media screen and (max-width: 768px) {
  section#blog-homepage-header h1 {
    margin: 60px 0 10px 0;
    font-size: 40px !important;
    line-height: 50px !important;
  }
}

#last-post-blog .last-post {
  height: 500px;
  position: relative;
  padding: 40px;
  display: flex;
  align-items: end;
}
#last-post-blog .last-post:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent linear-gradient(180deg, rgba(13, 14, 15, 0) 0%, var(--unnamed-color-0d0e0f) 100%) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, rgba(13, 14, 15, 0) 0%, #0D0E0F 100%) 0% 0% no-repeat padding-box;
}
#last-post-blog .last-post img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
#last-post-blog .last-post .content {
  z-index: 999;
  position: relative;
}
#last-post-blog .last-post .content .category a {
  color: white;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  margin-bottom: 16px;
}
#last-post-blog .last-post .content h2 {
  margin: 0;
}
#last-post-blog .last-post .content h2 a {
  color: white;
  text-decoration: none;
  font-size: 36px;
  line-height: 38px;
  font-family: "Playfair Display";
}

section#categories-grid {
  background: #F5F5F5;
  padding: 40px 0;
}
section#categories-grid .category-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
section#categories-grid .category-list li {
  margin: 0;
}
section#categories-grid .category-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #B38F52;
  font-weight: 600;
  text-decoration: none;
}
section#categories-grid .category-list li a .category-icon {
  width: 73px;
  height: 73px;
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
section#categories-grid .category-list li a .category-icon img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#categories-grid .category-list li a span {
  max-width: calc(100% - 83px);
  display: block;
}

section#last-posts-grid .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
section#last-posts-grid .container .post-item.publi {
  background: #C6C6C6;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#last-posts-grid .container .post-item a.post-thumbnail {
  display: block;
  margin-bottom: 16px;
}
section#last-posts-grid .container .post-item a.post-thumbnail img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
}
section#last-posts-grid .container .post-item span.category {
  display: block;
  margin-bottom: 16px;
}
section#last-posts-grid .container .post-item span.category a {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
}
section#last-posts-grid .container .post-item .content {
  text-decoration: none;
}
section#last-posts-grid .container .post-item .content h2 {
  line-height: 20px !important;
  margin-bottom: 16px;
  text-decoration: none;
  font-size: 24px !important;
  font-weight: 700 !important;
}
section#last-posts-grid .container .post-item .content .excerpt {
  font-family: "Playfair Display";
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

/* GENERAL */
body * {
  font-family: "Lexend Deca", sans-serif;
}

.widget br {
  display: none;
}
.widget p {
  margin: 0;
}

div#page {
  max-width: unset;
}
div#page div#content {
  padding: 0;
}

main#full-width-template {
  width: 100%;
}

.wrapper {
  padding: 0 16px;
}
.wrapper.hidden {
  overflow: hidden;
}
.wrapper .container {
  max-width: 1320px;
  margin: auto;
}

.content-wrapper {
  padding: 0 16px;
}
.content-wrapper .container {
  max-width: 1096px;
  margin: auto;
}

.space {
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .space {
    margin-bottom: 32px;
  }
}
.space-56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .space-56 {
    margin-bottom: 40px;
  }
}
.space-16 {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .space-16 {
    margin-bottom: 24px;
  }
}

.btn-arrow {
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  color: #0d0e0f;
  transition: 0.3s;
  font-weight: 400;
}
.btn-arrow:hover:after {
  transform: translateX(5px);
  filter: invert(57%) sepia(3%) saturate(1073%) hue-rotate(314deg) brightness(103%) contrast(98%);
}
.btn-arrow.no-color-change:hover {
  color: #0d0e0f;
}
.btn-arrow.no-color-change:hover:after {
  filter: unset;
}
.btn-arrow:after {
  content: "";
  width: 27px;
  height: 11px;
  position: absolute;
  background-image: url(/wp-content/themes/generatepress-child/assets/media/icons/arrow-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 5px;
  transition: 0.3s;
}

.btn {
  padding: 16px 24px !important;
  border: 2px solid #0d0e0f;
  display: block;
  transition: 0.3s;
  width: fit-content;
  text-decoration: none;
  background-color: transparent;
  color: #0d0e0f;
  font-size: 18px;
  font-family: "Lexend Deca";
  text-transform: uppercase;
}
.btn.uppercase {
  text-transform: uppercase;
}
.btn.center {
  margin: auto;
}
.btn.small {
  padding: 9px 24px 7px 24px !important;
  font-size: 16px;
}
.btn.disabled {
  opacity: 0.3;
}
.btn.margin-top {
  margin-top: 32px;
}
.btn:hover {
  background-color: #0d0e0f;
  color: white;
}
@media screen and (max-width: 769px) {
  .btn {
    font-size: 16px;
    padding: 12px 24px !important;
  }
}

.content-service * {
  font-family: "Playfair Display" !important;
  font-size: 22px !important;
  line-height: 34px !important;
}
@media screen and (max-width: 769px) {
  .content-service * {
    font-size: 18px !important;
    line-height: 30px !important;
  }
}
.content-service * strong {
  display: block;
  margin: 56px 0 8px 0;
}
@media screen and (max-width: 769px) {
  .content-service * strong {
    margin: 40px 0 8px 0;
  }
}
.content-service * br {
  display: none;
}

header#masthead {
  position: fixed !important;
  width: 100%;
  padding: 24px 16px;
  background: white;
  z-index: 999999;
  top: 0;
}
@media screen and (max-width: 769px) {
  header#masthead {
    position: absolute;
  }
}
header#masthead .inside-header {
  padding: 0;
}
header#masthead img {
  max-width: 128px;
}
header#masthead .main-navigation {
  background: transparent;
}
header#masthead nav#site-navigation {
  display: flex;
  align-items: center;
  background: transparent;
}
header#masthead nav#site-navigation .main-nav ul {
  gap: 40px;
}
@media screen and (max-width: 1095px) {
  header#masthead nav#site-navigation .main-nav ul {
    gap: 30px;
  }
}
header#masthead nav#site-navigation .main-nav ul li a {
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  position: relative;
}
header#masthead nav#site-navigation .main-nav ul li a:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #0D0E0F;
  position: absolute;
  bottom: 3px;
  left: 0;
  opacity: 0;
  transition: 0.3s;
}
header#masthead nav#site-navigation .main-nav ul li a.cart-contents:after, header#masthead nav#site-navigation .main-nav ul li a.gp-account-link:after {
  display: none !important;
}
header#masthead nav#site-navigation .main-nav ul li a:hover {
  color: #0D0E0F;
}
header#masthead nav#site-navigation .main-nav ul li a:hover:after {
  opacity: 1;
}
header#masthead nav#site-navigation .main-nav ul li.current-menu-item a {
  color: #0D0E0F;
}
header#masthead nav#site-navigation .main-nav ul li.current-menu-item a:after {
  opacity: 1;
}
@media screen and (max-width: 769px) {
  header#masthead nav#site-navigation .main-nav ul #search-icon,
  header#masthead nav#site-navigation .main-nav ul .menu-bar-item-account,
  header#masthead nav#site-navigation .main-nav ul .menu-item-cart {
    width: 32% !important;
    margin: auto;
    border: none;
    text-align: center;
    display: inline-flex !important;
    justify-content: center;
    padding-top: 12px !important;
  }
}
@media screen and (min-width: 769px) {
  header#masthead nav#site-navigation .main-nav ul .nav-featured a {
    padding: 9px 24px 7px 24px !important;
    border: 2px solid;
    display: block;
    transition: 0.3s;
  }
  header#masthead nav#site-navigation .main-nav ul .nav-featured a:hover {
    color: white !important;
    background: #0D0E0F;
    border-color: #0D0E0F;
  }
  header#masthead nav#site-navigation .main-nav ul .nav-featured a:after {
    display: none;
  }
}
header#masthead nav#site-navigation .wpml-ls-menu-item .dropdown-menu-toggle {
  padding: 0;
}
header#masthead nav#site-navigation .wpml-ls-menu-item a:hover:after {
  display: none;
}
header#masthead nav#site-navigation .wpml-ls-menu-item .sub-menu {
  padding: 8px !important;
  margin: auto;
  left: -50% !important;
  text-align: center !important;
  width: 150px !important;
  border-radius: 0 0 10px 10px;
  background: #e9e6ed !important;
  display: flex !important;
  flex-direction: column;
  gap: 5px !important;
}
header#masthead nav#site-navigation .wpml-ls-menu-item a {
  text-transform: uppercase;
}
@media screen and (max-width: 769px) {
  header#masthead nav#site-navigation .wpml-ls-menu-item a {
    display: flex;
    justify-content: space-between;
  }
  header#masthead nav#site-navigation .wpml-ls-menu-item .sub-menu {
    left: 0 !important;
    width: 100% !important;
    background: white !important;
    padding: 0 !important;
    gap: 0 !important;
    border: none;
    margin-top: 16px;
  }
  header#masthead nav#site-navigation .wpml-ls-menu-item .sub-menu li {
    font-size: 15px;
    border: none !important;
    margin: 0;
  }
}
header#masthead.is-home {
  transition: 0.3s;
}
header#masthead.is-home.at-top {
  background: #0d0e0f;
}
header#masthead.is-home.at-top img.header-image.is-logo-image {
  filter: invert(1);
}
header#masthead.is-home.at-top a, header#masthead.is-home.at-top svg {
  color: white !important;
}
header#masthead.is-home.at-top a:after {
  background: white !important;
}
header#masthead.is-home.at-top nav#site-navigation .main-nav ul .nav-featured a:hover {
  background-color: white !important;
  color: #0d0e0f !important;
}

@media screen and (max-width: 769px) {
  header#masthead {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  }
  header#masthead nav#site-navigation {
    background: transparent !important;
  }
  header#masthead nav#site-navigation a:hover:after {
    display: none;
  }
  header#masthead .inside-navigation.grid-container {
    width: 100%;
  }
  header#masthead div#primary-menu ul li {
    padding: 16px 0 0 0;
    border-top: 1px solid rgba(13, 14, 15, 0.1019607843);
    margin: 16px 0 0 0;
  }
  header#masthead div#primary-menu ul li:first-child {
    margin-top: 0;
  }
  header#masthead div#primary-menu ul li.wpml-ls-menu-item {
    border-bottom: 1px solid rgba(13, 14, 15, 0.1019607843);
    margin: 16px 0;
    padding: 16px 0;
  }
  header#masthead div#primary-menu ul li.current-menu-item a {
    font-weight: bold;
  }
  header#masthead div#primary-menu ul li.current-menu-item a:after {
    display: none;
  }
  header#masthead button.menu-toggle {
    padding: 0;
    background: transparent !important;
  }
  header#masthead button.menu-toggle svg {
    width: 30px;
  }
  header#masthead.is-home.at-top div#primary-menu ul li {
    border-color: rgba(255, 255, 255, 0.2);
  }
  header#masthead.is-home.at-top svg {
    filter: contrast(0);
  }
}
.breadcrumbs-container {
  position: fixed;
  z-index: 99999;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  padding: 14px 16px;
  top: 0;
}
@media screen and (max-width: 769px) {
  .breadcrumbs-container {
    position: absolute;
  }
}
.breadcrumbs-container #breadcrumbs {
  max-width: 1320px;
  margin: auto;
}
.breadcrumbs-container #breadcrumbs a,
.breadcrumbs-container #breadcrumbs .breadcrumb_last {
  font-size: 14px;
  line-height: 24px;
  color: #0D0E0F;
  text-decoration: none;
}
.breadcrumbs-container #breadcrumbs .breadcrumb_last {
  font-weight: bold;
}

.cart-contents span.gp-cart-count,
.menu-bar-item-account span.gp-cart-count {
  background: #CCA45E;
  aspect-ratio: 1/1;
  position: absolute;
  width: 14px;
  height: 14px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  top: -3px;
  right: -7px;
}
.cart-contents a.gp-account-link,
.menu-bar-item-account a.gp-account-link {
  display: flex;
  align-items: center;
}
.cart-contents svg,
.menu-bar-item-account svg {
  height: 20px;
  width: 20px;
}

section#search-icon {
  position: relative;
}
section#search-icon span#search-toggle {
  cursor: pointer;
}
section#search-icon .search-form-wrapper {
  position: absolute;
  right: 0;
  top: 50px;
  display: none;
}
section#search-icon .search-form-wrapper form {
  display: flex;
  gap: 8px;
  background: white;
  padding: 8px;
  box-shadow: 0px 0px 14px rgba(13, 14, 15, 0.2);
  border-radius: 5px;
}

.site-footer {
  background: #0D0E0F;
  padding: 55px 16px;
}
@media screen and (max-width: 830px) {
  .site-footer {
    padding: 40px 16px;
  }
}
.site-footer .footer-widgets-container {
  padding: 0;
}
.site-footer .footer-widgets-container .inside-footer-widgets {
  display: flex;
  gap: 32px;
  margin: 0 !important;
  justify-content: space-between;
}
@media screen and (max-width: 830px) {
  .site-footer .footer-widgets-container .inside-footer-widgets {
    flex-direction: column;
    gap: 16px;
  }
}
.site-footer .footer-widgets-container .inside-footer-widgets > div {
  max-width: fit-content;
}
@media screen and (max-width: 830px) {
  .site-footer .footer-widgets-container .inside-footer-widgets > div:not(:last-child) {
    margin: 0;
    border-bottom: 1px solid #707070;
    padding-bottom: 16px;
    max-width: 100%;
  }
}
.site-footer .footer-widgets-container .inside-footer-widgets > div > aside {
  padding: 0px;
}
@media screen and (max-width: 830px) {
  .site-footer .footer-widgets-container .inside-footer-widgets .footer-widget-1 {
    padding-bottom: 40px;
  }
}
.site-footer .footer-widgets-container .inside-footer-widgets .footer-widget-1 .wp-block-image img {
  max-width: 130px;
}
.site-footer .footer-widgets-container .inside-footer-widgets .footer-widget-1 section.footer-rrss {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer .footer-widgets-container .inside-footer-widgets .footer-widget-1 section.footer-rrss .title {
  color: white;
  font-size: 16px;
  font-weight: bold;
}
.site-footer .footer-widgets-container .inside-footer-widgets .footer-widget-1 section.footer-rrss .grid-rrss {
  display: flex;
  gap: 20px;
}
.site-footer .footer-widgets-container .inside-footer-widgets .widget_nav_menu .widget-title {
  color: white;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 26px;
  display: block;
  font-weight: bold;
  position: relative;
}
.site-footer .footer-widgets-container .inside-footer-widgets .widget_nav_menu .menu {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.site-footer .footer-widgets-container .inside-footer-widgets .widget_nav_menu .menu li {
  margin: 0;
}
.site-footer .footer-widgets-container .inside-footer-widgets .widget_nav_menu .menu li a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  font-size: 14px;
  line-height: 22px;
}
.site-footer .footer-widgets-container .inside-footer-widgets section.footer-logos {
  display: flex;
  gap: 19px;
}
.site-footer .footer-widgets-container .inside-footer-widgets section.footer-logos > img {
  width: fit-content;
  margin: auto;
  max-width: 100px;
}
.site-footer .footer-widgets-container .inside-footer-widgets section.footer-logos .grid-pay-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}
@media screen and (max-width: 830px) {
  .site-footer .footer-widgets-container .inside-footer-widgets section.footer-logos .grid-pay-icons {
    grid-template-columns: repeat(6, 1fr);
  }
}
.site-footer .footer-widgets-container .inside-footer-widgets section.footer-logos .grid-pay-icons img {
  margin: auto;
}
@media screen and (max-width: 830px) {
  .site-footer .footer-widgets-container .inside-footer-widgets .footer-widget-5 {
    width: 100%;
    max-width: 100% !important;
    padding-top: 40px;
  }
}
.site-footer footer.site-info {
  margin-top: 55px;
}
.site-footer footer.site-info .inside-site-info {
  padding: 0;
}
.site-footer footer.site-info .inside-site-info .copyright-bar {
  width: 100%;
  opacity: 0.7;
}
.site-footer footer.site-info .inside-site-info .copyright-bar > section {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  color: #FFFFFF;
}
@media screen and (max-width: 830px) {
  .site-footer footer.site-info .inside-site-info .copyright-bar > section {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 530px) {
  .site-footer footer.site-info .inside-site-info .copyright-bar > section .copyright {
    font-size: 14px;
  }
}
.site-footer footer.site-info .inside-site-info .copyright-bar > section .legal-links {
  display: flex;
  gap: 33px;
  justify-content: center;
}
@media screen and (max-width: 530px) {
  .site-footer footer.site-info .inside-site-info .copyright-bar > section .legal-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.site-footer footer.site-info .inside-site-info .copyright-bar > section .legal-links a {
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
}
.site-footer footer.site-info .inside-site-info .copyright-bar > section .legal-links a:not(:last-child):after {
  content: "|";
  position: absolute;
  right: -18px;
}
@media screen and (max-width: 530px) {
  .site-footer footer.site-info .inside-site-info .copyright-bar > section .legal-links a:not(:last-child):after {
    display: none;
  }
}
@media screen and (max-width: 530px) {
  .site-footer footer.site-info .inside-site-info .copyright-bar > section .legal-links a {
    font-size: 14px;
  }
}

/* Solo mobile */
@media (max-width: 830px) {
  .footer-widget-2 .widget,
  .footer-widget-3 .widget,
  .footer-widget-4 .widget {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .footer-widget-2 .widget-title,
  .footer-widget-3 .widget-title,
  .footer-widget-4 .widget-title {
    cursor: pointer;
  }
  .footer-widget-2 .widget-title::after,
  .footer-widget-3 .widget-title::after,
  .footer-widget-4 .widget-title::after {
    content: "+";
    font-size: 26px;
    transition: transform 0.2s ease;
    position: absolute;
    right: 0;
    line-height: 26px;
    font-weight: 300;
  }
  .footer-widget-2 .widget.open .widget-title::after,
  .footer-widget-3 .widget.open .widget-title::after,
  .footer-widget-4 .widget.open .widget-title::after {
    content: "−";
  }
  .footer-widget-2 .menu-colecciones-es-container,
  .footer-widget-3 .menu-para-profesionales-es-container,
  .footer-widget-4 .menu-nosotros-es-container {
    display: none;
    padding-top: 16px;
  }
  .footer-widget-2 .widget.open .menu-colecciones-es-container,
  .footer-widget-3 .widget.open .menu-para-profesionales-es-container,
  .footer-widget-4 .widget.open .menu-nosotros-es-container {
    display: block;
  }
}
/* Lexend */
@font-face {
  font-family: "Lexend Deca";
  src: url("../fonts/LexendDeca.woff2") format("woff2");
}
/* Playfair Display */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay.woff2") format("woff2");
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif !important;
}
h1.center, h2.center, h3.center, h4.center, h5.center, h6.center {
  display: block;
  text-align: center;
}
h1.space, h2.space, h3.space, h4.space, h5.space, h6.space {
  margin-bottom: 40px;
}

h1 {
  font-size: 60px !important;
  line-height: 50px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 40px !important;
    line-height: 50px !important;
  }
}

h2 {
  font-size: 36px !important;
  line-height: 46px !important;
  font-weight: bold !important;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 30px !important;
    line-height: 40px !important;
  }
}
h2.section-title {
  font-size: 46px !important;
  line-height: 58px !important;
}
@media screen and (max-width: 768px) {
  h2.section-title {
    font-size: 30px !important;
    line-height: 42px !important;
    margin-bottom: 24px;
  }
}

p {
  font-family: "Playfair Display", serif !important;
  font-size: 18px !important;
  line-height: 30px !important;
  font-weight: 500 !important;
}

section#cta-business {
  background: #CCA45E;
}
section#cta-business .container {
  padding: 55px 0;
  text-align: center;
}
section#cta-business .container h2 {
  max-width: 864px;
  margin: 0 auto 55px auto;
}
@media screen and (max-width: 945px) {
  section#cta-business .container h2 {
    margin: 0 auto 40px auto;
  }
}
section#cta-business .container .grid-offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 55px;
}
@media screen and (max-width: 945px) {
  section#cta-business .container .grid-offers {
    grid-template-columns: 1fr;
  }
}
section#cta-business .container .grid-offers card {
  display: flex;
  flex-direction: column;
  position: relative;
}
section#cta-business .container .grid-offers card:not(:last-child):after {
  content: "";
  position: absolute;
  right: -18px;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
  opacity: 0.5;
}
@media screen and (max-width: 945px) {
  section#cta-business .container .grid-offers card:not(:last-child):after {
    width: 100%;
    height: 1px;
    right: 0;
    bottom: -20px;
  }
}
section#cta-business .container .grid-offers card span,
section#cta-business .container .grid-offers card p {
  font-family: "Playfair Display";
}
section#cta-business .container .grid-offers card .number {
  color: white;
  font-size: 48px;
  line-height: 60px;
  margin-bottom: 8px;
  font-weight: bold;
}
section#cta-business .container .grid-offers card .title {
  font-size: 24px;
  font-weight: bold;
  max-width: 255px;
  margin: auto;
  margin-bottom: 16px;
}
section#cta-business .container .grid-offers card p {
  margin: 0;
}
section#cta-business .container a {
  margin: auto;
}

section#not-found {
  margin: auto;
  height: 70dvh;
  display: flex;
  text-align: center;
}
section#not-found h1 {
  font-size: 120px !important;
  line-height: 130px !important;
}
section#not-found h1 span {
  color: #cca45e;
}
section#not-found p {
  font-size: 24px !important;
  line-height: 34px !important;
}

div#wpadminbar {
  z-index: 99999999999;
}

@media screen and (max-width: 880px) {
  section.content-img {
    padding: 0;
  }
}
section.content-img .container {
  position: relative;
}
section.content-img .container img {
  position: absolute;
  width: 50%;
  height: 100%;
  object-fit: cover;
  top: 0;
}
@media screen and (max-width: 880px) {
  section.content-img .container img {
    position: unset;
    width: 100%;
    height: 250px;
  }
}
section.content-img .container.derecha img {
  right: 0;
}
section.content-img .container.izquierda img {
  left: 0;
}
section.content-img .container .grid-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 140px;
  padding: 50px 0;
}
section.content-img .container .grid-content p:empty {
  display: none;
}
section.content-img .container .grid-content p:not(:empty) {
  margin: 0 !important;
}
@media screen and (max-width: 880px) {
  section.content-img .container .grid-content {
    grid-template-columns: 1fr;
    padding: 40px 16px 0 16px;
    gap: 0;
  }
  section.content-img .container .grid-content h2 {
    margin-bottom: 16px;
  }
}
section.content-img .container.izquierda .grid-content .content {
  order: 2;
}
section.content-img .container.izquierda .grid-content .empty {
  order: 1;
}
section.content-img .container p {
  font-weight: 500;
}

/*# sourceMappingURL=main.css.map */
