/* CONTENT ELEMENTS */
.product-item {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  text-decoration: none;
  padding: var(--sp-small);
  background: var(--c-green-light);
  transition: 0.3s;
}
.product-item--mite {
  background-color: var(--c-red);
}
.product-item--beetle {
  background-color: var(--c-yellow);
}
.product-item__label {
  font-family: "Centra", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--c-white);
  transition: 0.3s;
}
@media (min-width: 992px) {
  .product-item__label {
    font-size: 1.5rem;
  }
}
.product-item__name {
  font-family: "Centra", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 1.75rem;
  flex: 1 0;
  margin: 0 0 var(--sp-small);
  transition: 0.3s;
  color: var(--c-white);
}
@media (min-width: 768px) {
  .product-item__name {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .product-item__name {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .product-item__name {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .product-item__name {
    min-height: 6rem;
  }
}
[lang=es-es] .product-item__name {
  font-family: "Centra", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 1.75rem;
  flex: 1 0;
  margin: 0 0 var(--sp-small);
  transition: 0.3s;
  color: var(--c-white);
}
@media (min-width: 768px) {
  [lang=es-es] .product-item__name {
    font-size: 1.75rem;
  }
}
@media (min-width: 992px) {
  [lang=es-es] .product-item__name {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  [lang=es-es] .product-item__name {
    font-size: 2.5rem;
    min-height: 6rem;
  }
}

.product-item__image {
  aspect-ratio: 1/1;
  object-fit: contain;
  width: 100%;
  transition: 0.3s ease-out;
}
.product-item__button {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--f-special);
  background: transparent;
  display: inline-flex;
  align-items: center;
  color: var(--c-green-lighter);
  border-color: var(--c-green-lighter);
  color: var(--c-green-lighter);
}
.product-item__button span {
  position: relative;
  display: block;
  width: calc(2rem - 6px);
  overflow: hidden;
  padding: 0.5rem 0;
  color: var(--c-green-lighter);
}
.product-item__button span:before {
  content: "a";
}
.product-item__button span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border: 3px solid var(--c-green-lighter);
  width: 200%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s 0s ease, border-color 0.3s 0s ease;
}
.product-item__button span:nth-child(1)::before, .product-item__button span:nth-child(3)::before {
  color: transparent;
}
.product-item__button span:nth-child(2) {
  width: auto;
  padding: 0.5rem 0.5rem 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
  color: var(--c-green-lighter);
  background-color: transparent;
}
.product-item__button span:nth-child(2)::before {
  content: "";
  border: none;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 3px;
  width: 60%;
  background-color: var(--c-green-lighter);
  border-radius: 0;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
}
.product-item__button span:nth-child(2)::after {
  content: "";
  border: none;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 60%;
  background-color: var(--c-green-lighter);
  border-radius: 0;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
}
.product-item__button span:nth-child(3)::after {
  left: auto;
  right: 0;
}
.product-item__button:hover span:nth-child(1)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item__button:hover span:nth-child(3)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item__button:hover span:nth-child(2) {
  color: var(--c-white);
  background-color: transparent;
  border-color: var(--c-white);
  transition: color 0.3s 0.3s ease, background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item__button:hover span:nth-child(2)::before {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.3s 0s ease, background-color 0.3s 0.3s ease;
}
.product-item__button:hover span:nth-child(2)::after {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.3s 0s ease, background-color 0.3s 0.3s ease;
}
.product-item__button:hover span {
  border-color: var(--c-white);
  color: var(--c-white);
}
.product-item__button:hover span:nth-child(1)::after {
  background: transparent;
}
.product-item__button:hover span:nth-child(3)::after {
  background: transparent;
}
.product-item__button:hover span:nth-child(2) {
  color: var(--c-white);
  background: transparent;
}
.product-item:hover .product-item__button span:nth-child(1)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.1s 0.1s ease, border-color 0.1s 0.1s ease;
}
.product-item:hover .product-item__button span:nth-child(3)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.1s 0.1s ease, border-color 0.1s 0.1s ease;
}
.product-item:hover .product-item__button span:nth-child(2) {
  color: var(--c-white);
  background-color: transparent;
  border-color: var(--c-white);
  transition: color 0.1s 0.1s ease, background-color 0.1s 0.1s ease, border-color 0.1s 0.1s ease;
}
.product-item:hover .product-item__button span:nth-child(2)::before {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.1s 0s ease, background-color 0.1s 0.1s ease;
}
.product-item:hover .product-item__button span:nth-child(2)::after {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.1s 0s ease, background-color 0.1s 0.1s ease;
}

.product-item--mite .product-item__button {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--f-special);
  background: transparent;
  display: inline-flex;
  align-items: center;
  color: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-white);
  opacity: 0.6;
}
.product-item--mite .product-item__button span {
  position: relative;
  display: block;
  width: calc(2rem - 6px);
  overflow: hidden;
  padding: 0.5rem 0;
  color: var(--c-white);
}
.product-item--mite .product-item__button span:before {
  content: "a";
}
.product-item--mite .product-item__button span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border: 3px solid var(--c-white);
  width: 200%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s 0s ease, border-color 0.3s 0s ease;
}
.product-item--mite .product-item__button span:nth-child(1)::before, .product-item--mite .product-item__button span:nth-child(3)::before {
  color: transparent;
}
.product-item--mite .product-item__button span:nth-child(2) {
  width: auto;
  padding: 0.5rem 0.5rem 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
  color: var(--c-white);
  background-color: transparent;
}
.product-item--mite .product-item__button span:nth-child(2)::before {
  content: "";
  border: none;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 3px;
  width: 60%;
  background-color: var(--c-white);
  border-radius: 0;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
}
.product-item--mite .product-item__button span:nth-child(2)::after {
  content: "";
  border: none;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 60%;
  background-color: var(--c-white);
  border-radius: 0;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
}
.product-item--mite .product-item__button span:nth-child(3)::after {
  left: auto;
  right: 0;
}
.product-item--mite .product-item__button:hover span:nth-child(1)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item--mite .product-item__button:hover span:nth-child(3)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item--mite .product-item__button:hover span:nth-child(2) {
  color: var(--c-white);
  background-color: transparent;
  border-color: var(--c-white);
  transition: color 0.3s 0.3s ease, background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item--mite .product-item__button:hover span:nth-child(2)::before {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.3s 0s ease, background-color 0.3s 0.3s ease;
}
.product-item--mite .product-item__button:hover span:nth-child(2)::after {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.3s 0s ease, background-color 0.3s 0.3s ease;
}
.product-item--mite .product-item__button:hover span {
  border-color: var(--c-white);
  color: var(--c-white);
}
.product-item--mite .product-item__button:hover span:nth-child(1)::after {
  background: transparent;
}
.product-item--mite .product-item__button:hover span:nth-child(3)::after {
  background: transparent;
}
.product-item--mite .product-item__button:hover span:nth-child(2) {
  color: var(--c-white);
  background: transparent;
}

.product-item--mite:hover .product-item__button {
  opacity: 1;
}

.product-item--beetle .product-item__button {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  font-size: 1.25rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--f-special);
  background: transparent;
  display: inline-flex;
  align-items: center;
  color: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-white);
  opacity: 0.7;
}
.product-item--beetle .product-item__button span {
  position: relative;
  display: block;
  width: calc(2rem - 6px);
  overflow: hidden;
  padding: 0.5rem 0;
  color: var(--c-white);
}
.product-item--beetle .product-item__button span:before {
  content: "a";
}
.product-item--beetle .product-item__button span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  border: 3px solid var(--c-white);
  width: 200%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s 0s ease, border-color 0.3s 0s ease;
}
.product-item--beetle .product-item__button span:nth-child(1)::before, .product-item--beetle .product-item__button span:nth-child(3)::before {
  color: transparent;
}
.product-item--beetle .product-item__button span:nth-child(2) {
  width: auto;
  padding: 0.5rem 0.5rem 0.5rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
  color: var(--c-white);
  background-color: transparent;
}
.product-item--beetle .product-item__button span:nth-child(2)::before {
  content: "";
  border: none;
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  height: 3px;
  width: 60%;
  background-color: var(--c-white);
  border-radius: 0;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
}
.product-item--beetle .product-item__button span:nth-child(2)::after {
  content: "";
  border: none;
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 60%;
  background-color: var(--c-white);
  border-radius: 0;
  transition: width 0.3s 0.3s ease, background-color 0.3s 0s ease;
}
.product-item--beetle .product-item__button span:nth-child(3)::after {
  left: auto;
  right: 0;
}
.product-item--beetle .product-item__button:hover span:nth-child(1)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item--beetle .product-item__button:hover span:nth-child(3)::after {
  background: transparent;
  border-color: var(--c-white);
  transition: background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item--beetle .product-item__button:hover span:nth-child(2) {
  color: var(--c-white);
  background-color: transparent;
  border-color: var(--c-white);
  transition: color 0.3s 0.3s ease, background-color 0.3s 0.3s ease, border-color 0.3s 0.3s ease;
}
.product-item--beetle .product-item__button:hover span:nth-child(2)::before {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.3s 0s ease, background-color 0.3s 0.3s ease;
}
.product-item--beetle .product-item__button:hover span:nth-child(2)::after {
  width: 100%;
  background-color: var(--c-white);
  transition: width 0.3s 0s ease, background-color 0.3s 0.3s ease;
}
.product-item--beetle .product-item__button:hover span {
  border-color: var(--c-white);
  color: var(--c-white);
}
.product-item--beetle .product-item__button:hover span:nth-child(1)::after {
  background: transparent;
}
.product-item--beetle .product-item__button:hover span:nth-child(3)::after {
  background: transparent;
}
.product-item--beetle .product-item__button:hover span:nth-child(2) {
  color: var(--c-white);
  background: transparent;
}

.product-item--mite:hover .product-item__button {
  opacity: 1;
}

.product-item:hover {
  text-decoration: none;
}
.product-item:hover .product-item__label {
  opacity: 0;
  transform: translateY(-3rem);
}
.product-item:hover .product-item__name {
  opacity: 0;
  transform: translateY(-2.5rem);
}
.product-item:hover .product-item__image {
  transform: scale3d(1.25, 1.25, 1.25);
  transform-origin: bottom;
}
.product-item__info {
  position: absolute;
  inset: 1rem;
  pointer-events: none;
}

.products-carousel {
  overflow: hidden;
  margin: 0 0 var(--sp-large);
}
.products-carousel__animate {
  transition: 0.2s ease-in-out;
}
[lux-inview--init] .products-carousel__animate {
  transition-delay: 0;
  opacity: 0.01;
  transform: translate3d(0, 50px,0);
}

[lux-inview--partial] .products-carousel__animate {
  transition-delay: 0s;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

[lux-inview--seen] .products-carousel__animate {
  transition-delay: 0s;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.products-carousel__track {
  overflow: visible !important;
}
.products-carousel__title {
  font-family: "Centra", sans-serif;
  font-weight: 500;
  line-height: 1;
  font-size: 1.75rem;
  color: var(--c-green-dark);
  margin: 0 0 2rem;
}
@media (min-width: 768px) {
  .products-carousel__title {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .products-carousel__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .products-carousel__title {
    font-size: 3rem;
  }
}
.products-carousel__title h1, .products-carousel__title h2, .products-carousel__title h3, .products-carousel__title h4, .products-carousel__title h5, .products-carousel__title h6, .products-carousel__title p {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-family: inherit;
  color: inherit;
}
.products-carousel__title h1, .products-carousel__title h2, .products-carousel__title h3, .products-carousel__title h4, .products-carousel__title h5, .products-carousel__title h6, .products-carousel__title p {
  margin: 0;
  padding: 0;
}
.products-carousel__footer {
  display: flex;
  justify-content: center;
  margin: var(--sp-small) 0 0;
}
.products-carousel__product {
  transition: 0.2s ease-in-out;
}
[lux-inview--init] .products-carousel__product {
  transition-delay: 0s;
  opacity: 0.01;
  transform: translate3d(0, 50px,0);
}

[lux-inview--partial] .products-carousel__product {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
[lux-inview--partial] .products-carousel__product:nth-child(1) {
  transition-delay: 0.1s;
}
[lux-inview--partial] .products-carousel__product:nth-child(2) {
  transition-delay: 0.2s;
}
[lux-inview--partial] .products-carousel__product:nth-child(3) {
  transition-delay: 0.3s;
}
[lux-inview--partial] .products-carousel__product:nth-child(4) {
  transition-delay: 0.4s;
}
[lux-inview--partial] .products-carousel__product:nth-child(5) {
  transition-delay: 0.5s;
}
[lux-inview--partial] .products-carousel__product:nth-child(6) {
  transition-delay: 0.6s;
}
[lux-inview--partial] .products-carousel__product:nth-child(7) {
  transition-delay: 0.7s;
}
[lux-inview--partial] .products-carousel__product:nth-child(8) {
  transition-delay: 0.8s;
}
[lux-inview--partial] .products-carousel__product:nth-child(9) {
  transition-delay: 0.9s;
}
[lux-inview--partial] .products-carousel__product:nth-child(10) {
  transition-delay: 1s;
}
[lux-inview--partial] .products-carousel__product:nth-child(11) {
  transition-delay: 1.1s;
}
[lux-inview--partial] .products-carousel__product:nth-child(12) {
  transition-delay: 1.2s;
}
[lux-inview--partial] .products-carousel__product:nth-child(13) {
  transition-delay: 1.3s;
}
[lux-inview--partial] .products-carousel__product:nth-child(14) {
  transition-delay: 1.4s;
}
[lux-inview--partial] .products-carousel__product:nth-child(15) {
  transition-delay: 1.5s;
}
[lux-inview--partial] .products-carousel__product:nth-child(16) {
  transition-delay: 1.6s;
}
[lux-inview--partial] .products-carousel__product:nth-child(17) {
  transition-delay: 1.7s;
}
[lux-inview--partial] .products-carousel__product:nth-child(18) {
  transition-delay: 1.8s;
}
[lux-inview--partial] .products-carousel__product:nth-child(19) {
  transition-delay: 1.9s;
}
[lux-inview--partial] .products-carousel__product:nth-child(20) {
  transition-delay: 2s;
}

[lux-inview--seen] .products-carousel__product {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}