/* TIPOGRAFÍA BROCKMANN CON NOMBRES SEPARADOS */
@font-face {
  font-family: 'brockmannregular';
  src: url('/wp-content/themes/biagiotti-child/fonts/brockmann/brockmann-regular-webfont.woff2') format('woff2');
  font-style: normal;
}

@font-face {
  font-family: 'brockmannsemibold';
  src: url('/wp-content/themes/biagiotti-child/fonts/brockmann/brockmann-semibold-webfont.woff2') format('woff2');
  font-style: normal;
}

@font-face {
  font-family: 'brockmannbold';
  src: url('/wp-content/themes/biagiotti-child/fonts/brockmann/brockmann-bold-webfont.woff2') format('woff2');
  font-style: normal;
}

/* VARIABLES */
:root {
  --title-1: 40px;
  --title-2: 26px;
  --subtitle: 18px;
  --body: 16px;
  --cta: 15px;

  --font-family-1: 'brockmannregular';
  --color-principal: #AAA5FF;
  --color-secundario: #DAFFB6;

}


h1.title-1.titulo-dos-colores,
h2.title-1.titulo-dos-colores,
h3.title-1.titulo-dos-colores,
h4.title-1.titulo-dos-colores,
h5.title-1.titulo-dos-colores,
h6.title-1.titulo-dos-colores{
    text-transform: inherit !important;
    letter-spacing: 0 !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* ESTILOS BASE */
span,input, textarea, td.product-name a, 
.woocommerce-info, label, span.selection *, ul#select2-billing_country-results, 
.woocommerce-order *, .mkdf-product-categories a, footer li a, .mkdf-top-bar *, 
nav.mkdf-mobile-nav.ps span, button{
  font-family:  'brockmannregular' !important;
}
body {
  font-family:  'brockmannregular' !important;
  font-size: var(--body) !important;
  color: #3C3C3C !important;
}

.title-1, h1 {
  font-family: 'brockmannsemibold' !important;
  font-size: var(--title-1) !important;
  font-weight: 600 !important;
}

.title-2, h2 {
  font-family: 'brockmannbold' !important;
  font-size: var(--title-2) !important;
  text-transform: uppercase !important;
}

.subtitle {
  font-family:  'brockmannregular' !important;
  font-size: var(--subtitle) !important;
  font-weight: 500 !important;
}

.body-text, .body-1, .body-2, p {
  font-family:  'brockmannregular' !important;
  font-size: var(--body) !important;
}

.cta-text, .cta, .button {
  font-family: 'brockmannsemibold' !important;
  font-size: var(--cta) !important;
}

/* BOTÓN PERSONALIZADO */
.boton-new, .vc_btn3-container, .button.alt {
  position: relative;
  display: inline-block;
  padding: 10px 17px;
  color: white !important;
  text-decoration: none;
  background-color: transparent !important;
  border: none !important;
  z-index: 2;
  transition: color 0.3s ease;
  font-family: 'brockmannsemibold' !important;
  font-size: var(--cta) !important;
}

.boton-new::before,
.boton-new::after,
.vc_btn3-container::before,
.vc_btn3-container::after,
button#place_order::before,
button#place_order::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(-20deg);
  transition: background-color 0.3s ease;
  z-index: -2;
}

.boton-new::after,
.vc_btn3-container::after, 
button#place_order::after {
  background-color: var(--color-secundario);
  top: 10px;
  left: -15px;
  z-index: -2;
}

.boton-new::before,
.vc_btn3-container::before,
button#place_order::before {
  background-color: var(--color-principal);
  z-index: -1;
}

.boton-new:hover::before,
.vc_btn3-container:hover::before,
button#place_order:hover::before{
  background-color: var(--color-secundario);
}

.boton-new:hover::after,
.vc_btn3-container:hover::after,
button#place_order:hover::after {
  background-color: var(--color-principal);
}

.boton-new:hover,.boton-new:hover a,
.vc_btn3-container a:hover, button#place_order:hover{
  color: black !important;
}

.boton-new a,
.vc_btn3-container a{
  color: white !important;
  border: none !important;
  background: none !important;
  padding: 10px 15px !important;
  display: inline-block;
  text-decoration: none;
}
.form-pop-up .wpcf7-email{
  font-size: 10px !important;
}
body button#place_order {
  background-color: transparent !important;
  border-color: transparent !important;
}

/* BOTÓN AÑADIR AL CARRITO CON ESTILO RESTYLING */
body button.single_add_to_cart_button.button.alt {
  position: relative;
  display: inline-block;
  padding: 6px 40px !important;
  font-family: var(--font-family-1) !important;
  font-size: var(--cta) !important;
  color: white !important;
  background: transparent !important;
  border: none !important;
  text-transform: uppercase;
  z-index: 2;
  transition: color 0.3s ease;
  height: 100%;
}

/* DECORACIÓN EN DIAGONAL */
body button.single_add_to_cart_button.button.alt::before,
body button.single_add_to_cart_button.button.alt::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: skew(-20deg);
  transition: background-color 0.3s ease;
}

body button.single_add_to_cart_button.button.alt::after {
  background-color: var(--color-secundario); /* Ej: #DAFFB6 */
  top: 10px;
  left: -15px;
  z-index: -2;
}

body button.single_add_to_cart_button.button.alt::before {
  background-color: var(--color-principal); /* Ej: #AAA5FF */
  z-index: -1;
}

/* HOVER */
body button.single_add_to_cart_button.button.alt:hover::before {
  background-color: var(--color-secundario);
}
body button.single_add_to_cart_button.button.alt:hover::after {
  background-color: var(--color-principal);
}
body button.single_add_to_cart_button.button.alt:hover {
  color: black !important;
}
/* CENTRAR BOTÓN */
.centrar-button {
  text-align: center !important;
}
.boton-carrito {
  display: inline-block;
  padding: 5px 30px;
  background-color: var(--color-principal);
  color: white !important;
  font-family: 'brockmannsemibold' ;
  font-size: 14px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 0px;
}

.boton-carrito:hover {
  background-color: var(--color-secundario);
  color: black !important;
}
/*---------------Home--------------*/
.mkdf-full-width-inner {
    padding: 0px !important;
}
.titulo-color *{
    color: var(--color-principal) !important;
}
.mkdf-section-title-holder .mkdf-st-title{
    font-weight: 900 !important;
    color: black !important;
}

.linea-izquierda {
  position: relative;
  padding-left: 20px;
  width: 100%;
  text-align: justify !important;
  width: calc(100% - 20px) !important;
}
/*
.linea-izquierda::before {
  content: '';
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 4px;
  height: 32px;
  background-color: var(--color-principal);
  border-radius: 2px;
}*/
.elementos-home-enlaces-cuadrados .wpb_wrapper {
    background-color: #0000001f;
}
.suscribete > div {
  padding: 0px !important;
}

/*---------------filtro--------------*/
.product {
  position: relative;
}
.product-column-new .product .woocommerce-loop-product__link{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.woocommerce .star-rating span:before{
  font-family: Ionicons;
}
.lista-star-section{
  display: flex;
}
.lista-star-section .star-rating{
  margin-left: auto;
  margin-right: auto;
}
.product .mkdf-product-categories{
  margin-top: 5px;
  font-size: 14px;
}
.mkdf-pl-text-action{
  position: relative;
  z-index: 1;
}
.mkdf-pl-text-action p{
  display: none !important;
}
.mkdf-pl-text-action > *{
  float: left !important;
}
.yith-wcwl-add-to-wishlist{
  background: #e2dddd !important;
}
.woocommerce .product .mkdf-onsale{
  color: white !important;
}
.woocommerce .product .br_alabel > span{
  background-color: #3c3c3c !important;
  font-size: 14px !important;
}
.woocommerce .product .br_alabel_image{
  top: 0px !important;
  left: 0px !important;
}
.columns-5.product-column-new{
  display: grid !important;
}
.searchandfilter > ul > li > ul{
  display: inherit !important;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 65px !important;
}
.searchandfilter > ul > li > ul > li{
  display: inline-flex !important;
  font-family: "brockmannsemibold";
  color: white;
  font-weight: 300;
  margin: 5px !important;
  cursor: pointer !important;
}
.searchandfilter > ul > li > ul > li > label{
  cursor: pointer !important;
}
.search-filter-results{
  margin-bottom: 75px;
}
.lista-beneficios {
  list-style: none;
  padding: 0;
  margin: 5px 0 10px;
  font-size: var(--body);
  color: #3c3c3c;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}
.lista-beneficios li {
  margin: 0;
  line-height: 1.4;
  padding: 0px 4px 0px;
}
.product > .imagen-hover-wrap{
  width: 70% !important;
}

.imagen-hover-wrap {
position: relative;
width: 100% !important;
overflow: hidden;
}

.imagen-hover-wrap img {
display: block;
width: 100%;
height: auto;
transition: opacity 0.3s ease-in-out;
}

.imagen-hover-wrap .img-hover {
position: absolute;
top: 0;
left: 0;
opacity: 0;
z-index: 1;
}

.imagen-hover-wrap:hover .img-hover {
opacity: 1;
}

.imagen-hover-wrap:hover .img-principal {
opacity: 0;
}
.searchandfilter .sf-field-reset a.search-filter-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #aea4f7;
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  font-family: 'brockmannregular';
  font-size: 16px !important;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
  gap: 8px;
  padding: 0.8rem 1.5rem !important;

}
#image_header a {
    display: flex;
}
.searchandfilter .sf-field-reset a.search-filter-reset::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url('https://www.nutralie.com/wp-content/uploads/2025/05/Grupo-11163.png');
  background-size: contain;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1); /* icono blanco por defecto */
  transition: filter 0.3s;
}

.searchandfilter .sf-field-reset a.search-filter-reset.filtro-activo {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid black !important;
}

.searchandfilter .sf-field-reset a.search-filter-reset.filtro-activo::before {
  filter: brightness(0); /* icono negro */
}


.searchandfilter > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.searchandfilter > ul > .sf-field-reset{
  margin: 0px !important;
}
body .title-product {
  font-size: 22px !important;
  font-weight: 700 !important;
  font-family: "brockmannregular" !important;
}
body .title-product span {
  font-size: 22px !important;
  font-weight: 700 !important;
  font-family: "brockmannregular" !important;
}
/*-----------------Pagian Product-----------------*/


.producto-custom .product-title {
  font-family: 'brockmannsemibold' ;
  font-size: var(--title-2);
  color: #3C3C3C;
  margin-bottom: 10px;
}

body .price .woocommerce-Price-amount.amount {
  font-size: var(--title-2) !important;
  font-family: var(--font-family-1) !important;

}

.producto-custom .categoria-label {
  font-size: var(--body);
  text-transform: uppercase;
  font-family: 'brockmannsemibold' ;
  display: inline-block;
  text-align: left;
}

.producto-custom .producto-descripcion {
  font-family: 'brockmannregular' ;
  font-size: var(--body);
  color: #3C3C3C;
  margin-top: 15px;
}
.producto-custom .producto-descripcion ul {
  list-style-type: disc;
  padding-left: 20px;
  text-align: left;
  display: inline-block;
}
.woocommerce div.quantity {
  display: flex !important;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-principal);
  border-radius: 999px;
  padding: 3px 15px;
  max-width: 130px;
  margin: auto;
  gap: 10px;
}

.woocommerce div.quantity input.qty {
  width: 30px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: 'brockmannregular' ;
  font-size: var(--cta);
  color: #000;
  padding: 0;
  appearance: textfield;
}

.woocommerce div.quantity input.qty::-webkit-outer-spin-button,
.woocommerce div.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce div.quantity button.plus,
.woocommerce div.quantity button.minus {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  font-family: 'brockmannregular' ;
}
.mkdf-quantity-buttons.quantity * {
  border: 0px !important;
}
.producto-titulo-tophook .product-title {
  font-size: var(--title-2) !important;
  font-family: 'brockmannsemibold' !important;
  text-align: left !important;
}
.producto-boton form, .producto-boton form .bundle_button  {
  display: flex;
  gap: 12%;
  align-items: center;
}
ul.products>.product .mkdf-product-list-title a{
  color:black !important;
  font-weight: 900;
  text-transform: none !important;
}
ul.products>.product .mkdf-pl-text-wrapper:first-of-type {
    margin: 27px 0 10px !important;
}
ul.products>.product .mkdf-pl-text-wrapper:last-of-type {
  margin: 0px !important;
  display: grid;
  grid-template-rows: 0fr 1fr 0fr 0fr !important;
  flex-direction: column;
  align-items: center;
}
.fila-invertible {
  display: flex;
  flex-direction: row;
}
ul.products>.product > .mkdf-pl-text-wrapper{
  margin: 27px 0 10px !important;
}
ul.products>.product .mkdf-pl-inner > .mkdf-pl-image{
  width: 85% !important;
}

ul.products>.product .mkdf-pl-inner{
  display: grid !important;
  grid-template-rows: 0.4fr 1fr 0fr 0fr !important;
  height: 100% !important;
  min-height: 100% !important;
  justify-items: center !important;
}

/* Scroll horizontal solo para la lista de checkboxes */
#search-filter-form-188926 > ul > li > ul {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  gap: 20px;
  white-space: nowrap;
  padding: 10px 0;
  scrollbar-width: thin;
}

#search-filter-form-188926 > ul > li > ul > li {
  flex: 0 0 auto;
  min-width: max-content;
}

#search-filter-form-188926 > ul > li > ul::-webkit-scrollbar {
  height: 6px;
}

#search-filter-form-188926 > ul > li > ul::-webkit-scrollbar-thumb {
  background-color: #AAA5FF;
  border-radius: 3px;
}



.sf-filtro-todo {
  margin-bottom: 15px;
  display: inline-block;
}

.sf-todo-button {
  background-color: #AAA5FF;
  color: white !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: var(--cta);
  font-family: 'brockmannsemibold' ;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: 2px solid #AAA5FF;
  transition: all 0.3s ease;
}

.sf-todo-button:hover {
  background-color: white;
  color: #AAA5FF !important;
}
.mobile_display{
  display: none !important;
}
.desktop_display{
  display: block !important;
}
.img_ancho img {
    width: 70% !important;
}
.elementos-home-enlaces-cuadrados a > span::after{
  display: none !important;
}


body .woocommerce .mkdf-onsale,
body .woocommerce .mkdf-sold {
  top: 8px !important; 
  font-style: normal;
  background: #AAA5FF !important;
  color: white !important;
  font-family: var(--font-family-1) !important;
  font-size: 14px;
  padding: 0px 15px;
  position: relative;
  display: inline-block;
  text-transform: uppercase !important;
}

body .woocommerce .mkdf-onsale::before,
body .woocommerce .mkdf-sold::before {
  content: "";
  position: absolute !important;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #DAFFB6; /* verde claro */
}
/*-----------------info Product-----------------*/
.mkdf-woo-single-page .woocommerce-tabs .entry-content>h2{
  display: block !important;
}
.woocommerce-tabs div {
  display: block !important;
}
.woocommerce-tabs ul {
  display: none !important;
}

.woocommerce .product .br_alabel > span {
    position: relative;
    display: inline-block;
    padding: 0px 17px !important;
    color: white !important;
    text-decoration: none;
    background-color: transparent !important;
    border: none !important;
    z-index: 2;
    transition: color 0.3s ease;
    font-family: 'brockmannsemibold' !important;
    font-size: var(--cta) !important;
}

.woocommerce .product .br_alabel > span::before,
.woocommerce .product .br_alabel > span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: skew(-20deg);
    transition: background-color 0.3s ease;
    z-index: -2;
}

.woocommerce .product .br_alabel > span::after {
    background-color: var(--color-secundario);
    top: -6px;
    left: 6px;
    z-index: -2;
}

.woocommerce .product .br_alabel > span::before {
    background-color: var(--color-principal);
    z-index: -1;
}
  .searchandfilter {
    overflow-x: auto;              /* Permite scroll horizontal */
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .searchandfilter > ul {
    display: inline-flex; 
    gap: 1.2rem !important;
    min-width: max-content;
    white-space: nowrap;
    padding: 10px 0;
  }
/*-----------------info Product-----------------*/
html body.product-template-default .woocommerce-tabs.wc-tabs-wrapper{
  width: 100% !important;
  margin: auto 0 !important;
}
.productos-relacionados-restyling{
  width: 85% !important;
  margin: auto !important;
}
body.single-product .woocommerce-product-gallery__image img{
  width: 100%;
}
div#tab-description {
  display: none !important;
}

.titulo-productos-color{
  color: var(--color-principal) !important;


}
.mkdf-woo-single-page .woocommerce-tabs .entry-content>h2, 
.titulo-productos-color{
  font-weight: 600 !important;
}

body .tab-mid {
  display: flex !important;
  gap: 40px;
  flex-wrap: nowrap;
  align-items: stretch;
}

.tab-mid .modo-empleo-texto,
.tab-mid .modo-empleo-imagen {
  flex: 1;
}
.modo-empleo-texto{
  height: max-content !important;
}
.modo-empleo-tab-wrapper .modo-empleo-imagen img {
  width: 100%;
  object-fit: cover;
  display: block;
}
/* HEADER */
/* PREHEADER */
.preheader-2025{
  float: left;
  width: 100%;
  background-image: url(https://www.nutralie.com/wp-content/uploads/2025/05/background-preheader-scaled.png);
  position: relative;
  z-index: 999;
  background-size: cover;
  background-repeat: no-repeat;
}
.preheader-2025 > .header-content .mkdf-vertical-align-containers{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /*max-width: 1100px;*/
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.preheader-2025 > .header-content p{
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.preheader-2025 > .header-content p,
.preheader-2025 > .header-content p > a{
  color: white !important;
}
.preheader-2025 .mkdf-position-center{
  position: relative !important;
}
.header-column-1 > p{
  text-align: left;
}
.header-column-2 > p{
  text-align: center;
}
.header-column-3 > p{
  text-align: right;
}
.preheader-2025 .mkdf-logged-in-user + .mkdf-login-dropdown{
  position: absolute;
  background: black;
  padding: 15px;
  min-width: 200px;
  text-align: left;
  top: -100vh;
  transition: 0.5s;
  left: -25px;
}
.preheader-2025 .mkdf-logged-in-user:hover + .mkdf-login-dropdown,
.preheader-2025 .mkdf-logged-in-user + .mkdf-login-dropdown:hover{
  top: calc(100% + 5px);
}
.preheader-2025 .mkdf-logged-in-user + .mkdf-login-dropdown > li > a{
  padding: 0px !important;
}
.preheader-2025 .widget.mkdf-login-register-widget.mkdf-user-logged-in *{
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}
.preheader-2025 .mkdf-login-register-widget.mkdf-user-logged-in .mkdf-logged-in-user .mkdf-logged-in-user-inner>span .mkdf-logged-in-user-name:before{
  content: "";
  background-image: url(https://www.nutralie.com/wp-content/uploads/2025/05/user-icon.png);
  width: 17px;
  height: 17px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  top: -2px;
  left: -22px;
}
.preheader-2025 + .mkdf-top-bar{
  display: none !important;
}
.mkdf-page-header{
  box-shadow: 0px 2px 1px #7070705e;
}
body.logged-in .mkdf-page-header .mkdf-menu-area.active,
body:not(.logged-in) .mkdf-page-header .mkdf-menu-area.active{
  top: 89px !important;
}

@media (max-width: 480px) {
  .woocommerce div.quantity {
    max-width: 110px;
    gap: 5px;
  }
}

.thumbs-slider {
	margin-top: 15px;
}
body .thumbs-slider img {
  height: 120px !important;
  width: 120px !important;
	object-fit: cover;
	opacity: 0.5;
	transition: 0.3s;
}
body .thumbs-slider .swiper-wrapper div{
  width: 120px !important;
}
html body.single-product .mkdf-container-inner.clearfix {
    width: 80% !important;
}
.thumbs-slider .swiper-slide-thumb-active img {
	opacity: 1;
}
.swiper-slide-active img {
  width: 100% !important;
}

.swiper-button-prev,
.swiper-button-next{
  color: black !important;  
}
ul.lista-beneficios-producto{
  display: flex !important;
  font-weight: 600;
}
/**/
.imagen-hover-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.imagen-hover-wrap img {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

.imagen-hover-wrap .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}
/*
.imagen-hover-wrap:hover .img-hover {
  opacity: 1;
}

.imagen-hover-wrap:hover .img-principal {
  opacity: 0;
}*/
.mkdf-pl-text-wrapper .centrar-button{
  z-index: 4 !important;
}

.search-filter-results .product:hover .img-hover {
  opacity: 1;
}

.search-filter-results .product:hover .img-principal {
  opacity: 0;
}
body .lista-beneficios li {
  font-weight: 800 !important;
}
.lista-beneficios {
  list-style: none;
  padding: 0;
  margin: 13px !important;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  font-size: var(--body);
  font-weight: 600;
}

.lista-beneficios li {
  margin: 0 4px;
  line-height: 1;
  font-size: 14px;
}
body.product-template-default .mkdf-container-inner .product.type-product{
  width: 83%;
  margin: auto;
}
html body.product-template-default .mkdf-single-product-content{
  width: 100% !important;
  display: flex !important;
}
section.productos-relacionados-restyling .title-2 {
  font-weight: 600;
}
section.productos-relacionados-restyling {
    margin-top: 85px !important;
}
section.productos-relacionados-restyling .centrar-button {
    text-align: left !important;
}
.product .mkdf-pl-inner {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
h2.yikes-custom-woo-tab-title {
  text-transform: lowercase !important;
}
h2.yikes-custom-woo-tab-title::first-letter {
  text-transform: uppercase !important;
}
h2.yikes-custom-woo-tab-title.yikes-custom-woo-tab-title-faqs{
  text-transform: uppercase !important;
}
.modo-empleo-imagen {
  padding-top: 3%;
}
.woocommerce-Tabs-panel table{
  width: 70% !important;
  margin: 30px 0 !important;
}

/*-----------------Pagian Product-----------------*/


/*-----------------elementos decoracion-----------------*/
.vc_row.vc_row-flex::after, .vc_row.vc_row-flex::before {
  display: unset !important;
}
body .background-home-seis {
  background-image: none !important;
}
div.hoja-izquierda, div.elementos-hoja, .elemento-home-s3,
.elemento-home-s4, .elemento_sobre, .elemento-home-s5, .primera_figura figure, 
.elemento-primer-formulas, .elemento-segundo-formulas {
  position: relative !important;
  overflow: visible !important;
  z-index: 22;
  isolation: isolate;
}

div.hoja-izquierda::before{
  content: "";
  position: absolute;
  top: -85px;
  left: -185px;
  width: 576px !important;
  height: 551px !important;
  background-image: url('/wp-content/uploads/2025/05/hoja-izquierda-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

div.hoja-izquierda::after{
  content: "";
  position: absolute;
  bottom: -227px;
  left: 81%;
  width: 100% !important;
  aspect-ratio: 7 / 2 !important;
  background-image: url(/wp-content/uploads/2025/05/flor-fondo.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

div.elementos-hoja::before{
  content: "";
  position: absolute;
  top: 34px;
  left: -59px;
  width: 400px !important;
  height: 400px !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-1737-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}


div.elemento-home-s3::before{
  content: "";
  position: absolute;
  bottom: -96px;
  right: 75%;
  width: 600px !important;
  height: 400px !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-1736-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
div.elemento-home-s3::after{
  content: "";
  position: absolute;
  bottom: -380px;
  left: 73%;
  width: 800px !important;
  height: 699px !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-1807-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
div.elemento-home-s4::after{
  content: "";
  position: absolute;
  bottom: -10vw;
  left: -67%;
  width: 100% !important;
  aspect-ratio: 5 / 2 !important;
  background-image: url(/wp-content/uploads/2025/05/Grupo-18172x.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
div.elemento-primer-formulas::before {
  content: "";
  position: absolute;
  top: -88px;
  left: -33%;
  width: 90% !important;
  aspect-ratio: 3 / 2 !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-18812x.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -16;
  pointer-events: none;
}
div.elemento-primer-formulas::after {
    content: "";
    position: absolute;
    top: -15vw;
    left: 73%;
    width: 100% !important;
    aspect-ratio: 4 / 2 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-116862x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}
.front_video {
    z-index: 23;
}
.elemento-segundo-formulas::after {
  content: "";
  position: absolute;
  top: -63px; 
  left: 94%;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-18792x.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
/*-----------------elementos decoracion-----------------*/

/* FILTROS */
.sf-field-search h4,
.sf-field-taxonomy-product_cat h4,
.sf-field-post-meta-estaciones_producto h4{
  font-size: 20px !important;
  color: #3c3c3c !important;
}
.sf-field-search br{
  display: none !important;
}
.sf-field-search{
  margin-top: 0px !important;
}
.sf-field-search label{
  width: 100% !important;
}
.sf-field-search p{
  margin-top: 0px;
}
.sf-field-taxonomy-product_cat .sf-label-checkbox{
  font-family: "Montserrat" !important;
  color: #838383 !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  border: 3px solid;
  text-transform: uppercase !important;
}
.sf-field-taxonomy-product_cat ul > li{
  padding: 0px !important;
  margin-bottom: 5px !important;
}
.sf-field-taxonomy-product_cat .sf-count{
  display: none !important;
}
.searchandfilter input.sf-input-text{
  color: #838383 !important;
}
.mkdf-title-holder{
  height: auto !important;
  margin-top: 45px;
  margin-bottom: 45px;
  background: none !important;
}
.mkdf-title-holder > .mkdf-title-wrapper{
  height: auto !important;
}
body .searchandfilter > ul > li > ul .sf-level-0 label{
  transition: 0.5s;
  border: 1px solid;
  padding: 0.8rem 1.5rem !important;
}
.sf-level-0 > input{
  display: none !important;
}
.sf-level-0.sf-option-active label.sf-label-checkbox,
.sf-level-0:hover label.sf-label-checkbox{
  color: white !important;
}

.filtro-producto-2025-2 .searchandfilter > ul > li > ul .sf-level-0:hover label.sf-label-checkbox{
  color: black !important;
}
.img_ancho img {
  object-fit: contain !important;
}

.widget ul:not(.mkdf-shortcode-list) li{
  margin: 0px !important;
}

/* Estilo del botón FILTRAR */
.boton-filtrar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 2px solid #000;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Icono */
.boton-filtrar .icono-filtrar {
    height: 18px;
    width: 18px;
}


.boton-filtrar:hover {
    background: #c2a7ff; 
    color: #fff;
    border-color: #c2a7ff;
}
@media (max-width: 1420px) {
  body .searchandfilter > ul > li > ul .sf-level-0 label{
    padding: 5px 15px !important;
  }
  .sf-field-taxonomy-product_cat .sf-label-checkbox{
    font-size: 1rem !important;
  }
  .searchandfilter .sf-field-reset a.search-filter-reset{
    padding: 5px 15px !important;
    font-size: 1rem !important;
  }
  body .filtros-nutralie .filtro-trigger.linea-izquierda{
    padding: 5px 15px 5px 30px !important;
  }
}



/*---------------filtro--------------*/
/*---------------Home--------------*/

.products *{
  font-family: 'brockmannregular' !important;
}




/*-----------------newsletter-----------------*/
.newsletter-new-section{
  background-color: #AAA5FF !important;
}
.newsletter-new-section:before{
  display: none !important;
}
.newsletter-new-section:after{
  display: none !important;
}
.title-middle-30 *{
  font-family:  'brockmannregular' !important;
  font-weight: 200 !important;

}
.mkdf-btn.mkdf-btn-solid {
  color: #000000 !important;
  background-color: #DAFFB6 !important;
  border: 0px !important;
}
body .mkdf-btn.mkdf-btn-solid:not(.mkdf-btn-custom-hover-bg):hover {
  background-color: #ffffff !important;
}
.form-unete-nuestra-newsletter > p {
  display: flex;
  align-content: center;

}
.suscribirse-newsletter-aceptacion label, .suscribirse-newsletter-aceptacion label a {
    font-family: var(--font-family-1) !important;
    font-size: 10px !important;
    color: white !important;
}
body div.newsletter-new-section {
  background-image: none !important;
}
.wpcf7-list-item * {
    color: #AAA5FF !important;
    font-family: var(--font-family-1) !important; 
    font-weight: 300 !important;
}
/*-----------------newsletter-----------------*/

/*-----------------Contacto-----------------*/
#respond input[type=text], #respond textarea, .mkdf-style-form textarea, 
.post-password-form input[type=password], .wpcf7-form-control.wpcf7-date, 
.wpcf7-form-control.wpcf7-number, .wpcf7-form-control.wpcf7-quiz, 
.wpcf7-form-control.wpcf7-select, .wpcf7-form-control.wpcf7-text, 
.wpcf7-form-control.wpcf7-textarea, input[type=email], input[type=password], 
input[type=text]{
    border: 1px solid #AAA5FF !important;
    border-radius: 5px !important;
}
.cf7_custom_style_3 label{
    font-family: 'brockmannregular' !important;
    font-weight: 600 !important;
}
.contacto_elemento_primero::before {
    content: "";
    position: absolute;
    bottom: -36vh;
    left: -2%;
    width: 100% !important;
    aspect-ratio: 8 / 3 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-114272x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
}/*
.front_video {
    z-index: 23;
}*/
.contacto_elemento_primero::after {
    content: "";
    position: absolute;
    bottom: -17vh;
    left: 69%;
    width: 100% !important;
    aspect-ratio: 6 / 1 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-112522x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}
.mkdf-btn.mkdf-btn-small {
  padding: 10px 70px !important;
}
.podemos-ayudarte-section::after {
    content: "";
    position: absolute;
    top: 60%;
    left: 69%;
    width: 100% !important;
    aspect-ratio: 6 / 2 !important;
    background-image: url(/wp-content/uploads/2025/05/Grupo-112502x.png);
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

/*-----------------Contacto-----------------*/

/*-----------------about-----------------*/

.sliders_icon .slick-track {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 25px;
}
.slick-track:before, .slick-track:after{
  display: none !important;
}
/* .sliders_icon .slick-track > div {
  width: 78% !important;
} */

/*-----------------about-----------------*/

/*-----------------Formulas-----------------*/

.text-img .vc_column-inner{
  width: calc(1600px / 1.9) !important;
  max-width: calc(1600px / 1.9) !important;
  margin-left: auto;
  padding-right: 10% !important;
  padding-left: 30px !important;
}
.img-text .vc_column-inner{
  width: calc(1600px / 2) !important;
  max-width: calc(1600px / 2) !important;
  margin-right: auto;
  padding-left: 10% !important;
}
.text_img{
  padding-left: 7%;
}
.linea-izquierda .textwidget{
  text-align: justify !important;
}

/*-----------------Formulas-----------------*/



/* FOOTER */
footer.mkdf-page-footer{
  background: #AAA5FF !important;
  padding-top: 35px;
  background-image: url(https://www.nutralie.com/wp-content/uploads/2025/05/footer-flores-1.png), url(https://www.nutralie.com/wp-content/uploads/2025/05/footer-flores-2.png) !important;
  background-size: 325px, 405px !important;
  background-position: -5% 0%, 111% 33% !important;
  background-repeat: no-repeat !important;
}
footer.mkdf-page-footer > *{
  background: none !important;
}
footer.mkdf-page-footer *{
  font-family: 'brockmannregular' !important;
}
footer.mkdf-page-footer .mkdf-grid-col-3:before,
footer.mkdf-page-footer .mkdf-grid-col-3:after,
footer.mkdf-page-footer .mkdf-grid-col-3 > .mkdf-separator-widget:nth-child(1){
  display: none !important;
}
footer.mkdf-page-footer  .mkdf-widget-title{
  padding-bottom: 15px;
}
footer.mkdf-page-footer .menu-item > a{
  padding-left: 0px !important;
  font-size: 11px !important;
  line-height: 15px !important;
}
footer.mkdf-page-footer .mkdf-widget-title-holder h4{
  font-weight: bold;
  letter-spacing: 0px;
  font-weight: 500;
}
footer.mkdf-page-footer .fab,
footer.mkdf-page-footer .fab:before{
  font-family: "Font Awesome 6 Brands" !important;
}
footer.mkdf-page-footer .mkdf-footer-bottom-holder{
  border-color: #ffffff6b !important;
}
.newsletter-new-section{
  border-bottom: 1px solid white;
}
footer.mkdf-page-footer .mkdf-footer-top-holder .mkdf-grid-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  width: 100% !important;
}
footer.mkdf-page-footer .mkdf-grid-row > .mkdf-grid-col-3{
  width: 100% !important;
}
footer.mkdf-page-footer .mkdf-grid-row:before,
footer.mkdf-page-footer .mkdf-grid-row:after{
  display: none !important;
}
footer.mkdf-page-footer .mkdf-footer-top-inner{
  width: 85% !important;
}
footer.mkdf-page-footer .mkdf-footer-bottom-inner{
  float: left;
  width: 100%;
}
footer.mkdf-page-footer .mkdf-footer-top-inner img{
  max-width: 250px !important;
}
footer.mkdf-page-footer a.mkdf-social-icon-widget-holder.mkdf-icon-has-hover span{
  border: 2px solid #ffffff73;
  width: 25px !important;
  height: 25px !important;
  line-height: 25px;
  font-size: inherit;
}
footer.mkdf-page-footer .mkdf-page-footer .mkdf-footer-bottom-holder .mkdf-footer-bottom-inner .menu >* a{
  font-size: 16px !important;
  letter-spacing: 0px !important;
}
footer.mkdf-page-footer .mkdf-footer-bottom-column-1.widget_nav_menu{
  margin-bottom: 25px !important;
}
.nutralie-copy-footer-text{
  text-align: center;
  font-size: 11px !important;
  line-height: 1;
}
/* NEWSLETTER ANTES DEL FOOTER */
.newsletter-new-section .vc_column-inner{
  padding-left: 0px !important;
  padding-right: 0px !important;
}
.newsletter-new-section .mkdf-row-grid-section{
  width: 83% !important;
}
.newsletter-new-section form.wpcf7-form{
  float: right;
}
.newsletter-new-section form.wpcf7-form .wpcf7-email{
  border-radius: 0px !important;
  border: 1px solid white !important;
}
.newsletter-new-section form.wpcf7-form .wpcf7-email::placeholder{
  opacity: 0.35;
}
div.newsletter-new-section > .wpb_column > .vc_column-inner{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}
.newsletter-new-section form.wpcf7-form input[name="mailjet-aceptacion"]{
  display: none !important;
}
.newsletter-new-section form.wpcf7-form input[name="mailjet-aceptacion"] + .checkbox-span{
  width: 19px;
  height: 19px;
  border: 1px solid white;
  float: left;
  position: relative;
  margin-right: 7px;
  margin-bottom: -5px;
  border-radius: 3px;
  background: #AAA5FF;
}
.newsletter-new-section form.wpcf7-form input[name="mailjet-aceptacion"] + .checkbox-span:after{
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  top: 2px;
  left: 2px;
  background: white;
  transition: 0.5s;
  opacity: 0;
  border-radius: 3px;
}
.newsletter-new-section form.wpcf7-form input[name="mailjet-aceptacion"]:checked + .checkbox-span:after{
  opacity: 1;
}

.mkdf-quantity-minus .mkdf-quantity-plus {
    border-bottom: 0px !important;
}
.product-title-mobile {
	display: none;
}
.mkdf-woo-single-page .mkdf-single-product-summary .price{
  text-align: left;
}
.mkdf-woo-single-page .mkdf-single-product-summary{
  width: 100% !important;
}
.mkdf-main-menu>ul>li>a{
  padding: 0 2rem !important;
}
.productos-por-estacion h3{
  text-transform: capitalize;
}
.mkdf-vertical-align-containers .mkdf-position-left{
  display: flex !important;
}
.mkdf-grid-row, .mkdf-container-inner, .mkdf-grid-1300 .elementor-widget-wrap>.mkdf-row-grid-section.elementor-element, .mkdf-grid-1300 .mkdf-container-inner, .mkdf-grid-1300 .mkdf-grid, .mkdf-grid-1300 .mkdf-row-grid-section {
    max-width: 100% !important;
    margin: auto !important;
}
.background-origen-nuestras-img > .vc_column-inner{
    background-size: cover;
    background-position: 50%;
}
.origen-nuestros-ingredientes-section > .vc_column-inner{
    padding-top: 0px !important;
}
.video_full .mkdf-video-button-holder {
    display: block !important;
}
/*--------------Formulas--------------*/
.titulo-dos-colores.title-1{
    line-height: 1.2;
}
.text_img {
    padding-left: 7% !important;
}
.ultsl-record:before{
  content: "" !important;
}
/*--------------Formulas--------------*/
.products-section-new-container .searchandfilter{
  display: flex;
  justify-content: flex-start;
}
.searchandfilter > ul > li > ul{
  max-width: 100% !important;
}
/*--------------Filtros Producto--------------*/
.filtro-producto-2025-1 li.sf-field-post-meta-estaciones_producto {
    display: none !important;
}

.filtro-producto-2025-1{
  .searchandfilter > ul{
    width: 90% !important;
    justify-content: flex-start !important;
  }
  
  .sf-field-taxonomy-product_cat{
    width: 88% !important;
  }
  .widget ul:not(.mkdf-shortcode-list) li ul{
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start;
    flex-direction: row;
    max-width: 100% !important;
    gap: 1.2rem !important;
  }
  .filtros-nutralie{
    width: 90% !important;
  }

}
.filtro-producto-2025-2 > div{
  width: 90% !important;
}
.filtro-producto-2025-2{
  display: flex !important;
}
/* Estructura general */
.filtro-producto-2025-2 .searchandfilter > ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.products  .added_to_cart {
  display: none !important;

}
/* ---------- CAMPOS (categorías + estaciones) ---------- */

/* Checkbox base */
.filtro-producto-2025-2 .pf-form 
.sf-field-taxonomy-product_cat ul > li > input + label,
.filtro-producto-2025-2 .pf-form 
.sf-field-post-meta-estaciones_producto ul > li > input + label {
  position: relative;
  color: black !important;
  padding: 0px 58px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
}

/* Cuadro exterior del checkbox */
.filtro-producto-2025-2 .pf-form 
.sf-field-taxonomy-product_cat ul > li > input + label:before,
.filtro-producto-2025-2 .pf-form 
.sf-field-post-meta-estaciones_producto ul > li > input + label:before {
  content: "";
  width: 20px;
  height: 20px;
  border: #AAA5FF 1px solid;
  position: absolute;
  left: 0px;
  top: 0px;
}

/* Cuadro interior (relleno cuando está seleccionado) */
.filtro-producto-2025-2 .pf-form 
.sf-field-taxonomy-product_cat ul > li > input + label:after,
.filtro-producto-2025-2 .pf-form 
.sf-field-post-meta-estaciones_producto ul > li > input + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #AAA5FF;
  position: absolute;
  left: 5px;
  top: 5px;
  transition: 0.5s;
  opacity: 0;
}

/* Hover efecto medio */
.filtro-producto-2025-2 .pf-form 
.sf-field-taxonomy-product_cat ul > li > input + label:hover:after,
.filtro-producto-2025-2 .pf-form 
.sf-field-post-meta-estaciones_producto ul > li > input + label:hover:after {
  opacity: 0.5;
}

/* Checked: relleno completo */
.filtro-producto-2025-2 .pf-form 
.sf-field-taxonomy-product_cat ul > li > input:checked + label:after,
.filtro-producto-2025-2 .pf-form 
.sf-field-post-meta-estaciones_producto ul > li > input:checked + label:after {
  opacity: 1;
}

/* ---------- CONTROL DE ABRIR / CERRAR ---------- */

/* cerrado */
.filtro-producto-2025-2 
.sf-field-taxonomy-product_cat ul,
.filtro-producto-2025-2 
.sf-field-post-meta-estaciones_producto ul {
  display: none;
}

/* abierto */
.filtro-producto-2025-2 
.sf-field-taxonomy-product_cat ul.open,
.filtro-producto-2025-2 
.sf-field-post-meta-estaciones_producto ul.open {
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem;
}


.filtro-producto-2025-1 .sf-field-taxonomy-product_cat h4{
  display: none !important;
}
.filtro-producto-2025-2 .sf-field-reset{
  display: none !important;
}
.filtro-producto-2025-2 .searchandfilter {
  display: flex;
  justify-content: flex-start;
}
.filtro-producto-2025-2 .sf-level-0 label{
  padding: 0px 30px !important;
}
.filtro-producto-2025-2 .sf-field-taxonomy-product_cat ul {
  display: flex !important;
  gap: 15px !important;
  flex-direction: column;
}

.filtro-producto-2025-2 .pf-form .sf-field-taxonomy-product_cat ul > li > input:checked + label.sf-label-checkbox{
  color: black !important;
}
body.woocommerce-page .mkdf-page-subtitle{
  font-family: var(--font-family-1) !important;
}





/* ==============================
   FILTROS NUTRALIE (panel lateral)
   ============================== */

.filtros-nutralie .filtro-trigger.linea-izquierda {
  position: relative;
  padding-left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1rem 0.8rem 2.5rem !important;
  border: 2px solid #000;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.25s ease;
  width: max-content !important;
}
.filtros-nutralie .filtro-trigger.linea-izquierda::before {
  font-family: "Font Awesome 6 Free"; 
  content: "\f03a"; 
  font-weight: 900;
  font-size: 18px;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.filtros-nutralie #abrir-filtro {
  font-family: 'brockmannsemibold', sans-serif !important;
  font-size: 16px !important;
  color: #000;
  text-decoration: none;
}
.filtros-nutralie .filtro-trigger.linea-izquierda:hover *, .filtros-nutralie .filtro-trigger.linea-izquierda:hover {
    color: white !important;
    background-color: var(--color-principal);
}
 .filtros-nutralie .filtro-trigger.linea-izquierda:hover {
    border: 2px solid transparent;
}

/* ---------- PANEL IZQUIERDA ---------- */

.filtros-nutralie .panel-filtro {
  position: fixed;
  top: 0;
  left: -100%;
  width: 425px;
  max-width: 100%;
  height: calc(100vh - 20%);
  background: #fff;
  box-shadow: 6px 0 20px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: left 0.35s ease;
  padding: 10% 5vw;
  gap: 50px;
  overflow: scroll !important;
}

.filtros-nutralie .panel-filtro.activo {
  left: 0;
}

.filtros-nutralie .pf-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: var(--subtitle) !important;
}

.filtros-nutralie .pf-cerrar {
  background: transparent;
  border: 0;
  font-size: 24px;
  cursor: pointer;
}

.filtros-nutralie .pf-acciones .boton-new span {
  display: inline-block;
  padding: 10px 18px;
}

/* ---------- OVERLAY ---------- */

.filtros-nutralie .pf-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 999;
}

/* ---------- BARRA DE CHIPS ---------- */

.filtros-nutralie .barra-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 6px;
}

.filtros-nutralie .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  font-family: 'brockmannsemibold', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.filtros-nutralie .chip button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}


/* ---------- SEARCH & FILTER (limpio) ---------- */

.filtros-nutralie .pf-form ul,
.filtros-nutralie .pf-form li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filtros-nutralie .pf-form label {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 6px 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  width: auto !important;
  font-size: 16px !important;
}

.filtros-nutralie .pf-form input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #B7B2FF;
  border-radius: 3px;
  background: #fff;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}

.filtros-nutralie .pf-form input[type="checkbox"]:checked {
  background: #AAA5FF;
  border-color: #AAA5FF;
}

.filtros-nutralie .pf-form input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filtros-nutralie .pf-form li + li {
  margin-top: 10px;
}

/* ---------- RADIO OPCIONAL ---------- */

.filtros-nutralie .pf-form input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #B7B2FF;
  border-radius: 50%;
  background: #fff;
  position: relative;
  cursor: pointer;
  flex: 0 0 auto;
}

.filtros-nutralie .pf-form input[type="radio"]:checked {
  border-color: #AAA5FF;
}

.filtros-nutralie .pf-form input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: #AAA5FF;
  border-radius: 50%;
}
.filtros-nutralie .searchandfilter > ul > li > ul > li{
  display: block !important;
}



.filtro-producto-2025-2 .sf-field-taxonomy-product_cat ul,
.filtro-producto-2025-2 .sf-field-post-meta-estaciones_producto ul {
  display: none !important;
}

body .sf-field-taxonomy-product_cat ul.open,
body .sf-field-post-meta-estaciones_producto ul.open {
  display: flex !important;
  gap: 0.5rem;
}
.mkdf-title-holder.mkdf-standard-type .mkdf-page-subtitle{
  font-size: var(--title-1);
  color: black !important;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

h4, .mkdf-h4 {
  font-family: 'brockmannsemibold', sans-serif !important;
}

#panel-filtro *{
  font-family: 'brockmannsemibold', sans-serif !important;
}
body .mkdf-single-product-summary .added_to_cart {
  display: none !important;
}
input#coupon_code{
  height: 100% !important;
}

  html body:not(.cart-reload) .mkdf-sc-opener-count, html body:not(.cart-reload) .mkdf-sc-dropdown{
    display: block !important;
  }
.mkdf-content .mkdf-content-inner>.mkdf-container>.mkdf-container-inner{
  padding-top: 70px !important;
  padding-bottom: 40px !important;
}

button#place_order{
  background-color: transparent !important;
  border-color: transparent !important;
}
.woocommerce-notices-wrapper .woocommerce-message {
    display: none !important;
}

.woocommerce-form-coupon-toggle{
  display: none;
}

.shop_table .woocommerce-form-coupon-toggle{
  display: block !important;
}
.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a{
  align-items: center !important;
}
.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper #image_header a > img{
  height: 80px !important;
  width: auto !important;
}
.section-aviso-legal *,
.section-aviso-legal ul li span,
.section-aviso-legal .wpb_wrapper ul li span,
.section-aviso-legal .wpb_wrapper ul li,
.section-aviso-legal .wpb_wrapper ul li *,
.section-aviso-legal ol li span,
.section-aviso-legal .wpb_wrapper ol li span,
.section-aviso-legal .wpb_wrapper ol li,
.section-aviso-legal .wpb_wrapper ol li *{
  color: black !important;
  font-family: 'brockmannregular' !important;
}
.section-aviso-legal ul{
  list-style-type: '- '
}

.section-aviso-legal table td{
  padding: 8px 90px 8px 10px;
}
.title-2-aviso-legal,
.title-2-aviso-legal *, 
.title-2-politica, 
.title-2-politica *{
  font-size: 26px !important;
  line-height: 64px !important;
}
.section-aviso-legal table *{
  border: none !important;
  text-align: left !important;
  place-content: center !important;
}
.section-aviso-legal table tr{
  border-bottom: 1px solid #2B2E34 !important;
}
.section-aviso-legal table tr:first-child{
  border-top: 1px solid #2B2E34 !important;
}
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}
.cf7-hidden {
  display: none !important;
}
.wpcf7-form-control-wrap[data-name="website"] {
  display: none !important;
}


/*--------------FAse3 Cookies --------------*/
.aviso-legal-color *, .aviso-legal-color{
  color: white !important;
  font-size: 13px !important;
}
.form-pop-up p{
  display: block !important;
}

.form-pop-up{
  color: white !important;
}
.form-pop-up {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-pop-up .wpcf7-list-item{
  margin: 0px !important;
}
.form-pop-up .wpcf7-list-item span{
  font-size: 13px !important;
}
.form-pop-up .text-aviso{
  text-decoration: none !important;
}
.newsletter-new-section form.wpcf7-form{
  max-width: 100% !important;
}
.textos-adicionales-newsletter p {
    margin-top: 10px !important;
    font-size: 13px !important;
}
.suscribirse-newsletter-aceptacion p, .suscribirse-newsletter-aceptacion, .suscribirse-newsletter-aceptacion label {
    margin: 0px;
    font-size: 11px !important;
    color: white;
}
.textos-adicionales-newsletter * {
    color: white !important;
}
.textos-adicionales-newsletter a {
    text-decoration: underline;
}
.custom-legal-box p{
  font-size: 12px !important;
  font-weight: 600 !important;
}
.custom-legal-box label {
  font-size: 10px !important;
}
.user-registration.ur-frontend-form{
  box-shadow: none !important;
}
.close-button-block .close-x-button{
  font-size: 17px !important;
}
.close-button-block {
  top: 10px !important;
  right: 15px !important;
}
.form-pop-up .wpcf7-form-control.wpcf7-submit{
  max-width: 100% !important;
}
span .wpcf7-not-valid-tip{
  position: relative !important;
  margin-top: 0px !important;
  font-size: 14px !important;
}
.form-pop-up .wpcf7-email{
  margin-bottom: 3px !important;
}
.popup-example .wpcf7, .pop-title-1 p, .pop-title-2 p{
  width: 85% !important;
}
button.btn.button.ur-submit-button{
    background-color:#DAFFB6 !important;
  color:#000000 !important;
  border:2px solid #DAFFB6 !important;
}
.popmake-content .wpcf7-response-output {
    margin: auto !important;
    color: white !important;
    width: 100% !important;
    text-align: center !important;
    border: 0px !important;
}
.user-registration.ur-frontend-form .ur-button-container > button:hover:after {
    background: #DAFFB6 !important;
    color: black !important;
}
.user-registration.ur-frontend-form .ur-button-container > button:hover {
    color: black !important;
}
.mkdf-modal-holder .mkdf-modal-content label{
    color: black !important;
}
.custom-legal-box p a{
  font-size: 12px !important;
  font-weight: 600 !important;
  text-decoration: underline !important;
  color: #3c3c3c !important;
}
.checkout-restyling-2025 .place-order a {
  color: #3c3c3c !important;
  text-decoration: underline !important;
}
.checkout-restyling-2025 label a{
  color: black !important;
  text-decoration: underline !important;
}
@media (min-width: 769px) {
  div#customer_details {
    width: 45% !important;
  }
}

@media (max-width: 768px) {
  :root {
    --title-1: 22px;
    --title-2: 19px;
    --subtitle: 16px;
    --body: 14px;
    --cta: 10px;
  }
  .full_padding img {
    max-width: 85% !important;
  }
  .columns-5.product-column-new{
    grid-template-columns: repeat(1, 1fr);
  }
  .mkdf-product-list-title{
    font-size: 22px !important;
  }
  .fila-invertible {
    flex-direction: column-reverse;
  }
  #search-filter-form-188926 > ul > li > ul {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
  }
  div.hoja-izquierda::after {
    top: 183px;
    left: 58%;
    width: 358px !important;
    height: 330px !important;
  }
  div.hoja-izquierda::before {
    content: "";
    position: absolute;
    top: -59%;
    right: 80%;
    width: 181px !important;
    height: 180px !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-1737-1.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    pointer-events: none;
    transform: rotate(87deg);
  }
  div.elemento-home-s4::after {
    content: "";
    position: absolute;
    top: -60%;
    left: 51%;
    width: 100% !important;
    aspect-ratio: 4 / 2 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-18172x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}
div.elemento-home-s5::before {
  content: "";
  position: absolute;
  top: 35%;
  left: -14%;
  width: 100% !important;
  aspect-ratio: 4 / 2 !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-11110-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
div.elemento-home-s5::after {
  content: "";
  position: absolute;
  top: -20%;
  left: 66%;
  width: 100% !important;
  aspect-ratio: 4 / 2 !important;
  background-image: url('/wp-content/uploads/2025/05/Grupo-11106-1.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}
  div.elementos-hoja::before{
    display: none;
  }

  div.elementos-hoja::after{

  }
  .mobile_display{
    display: block !important;
  }
  .desktop_display{
    display: none !important;
  }
  .columns-4.product-column-new{
      grid-template-columns: repeat(1, 1fr) !important;
  }
  .searchandfilter {
    overflow-x: auto;              /* Permite scroll horizontal */
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .searchandfilter > ul {
    display: inline-flex; 
    gap: 10px;  
    min-width: max-content;
    white-space: nowrap;
    padding: 10px 0;
  }
  .product .centrar-button {
      margin: 10px 0px;
  }
  .searchandfilter .sf-field-reset a.search-filter-reset,
  .sf-field-taxonomy-product_cat .sf-label-checkbox{
    font-size: 14px !important;
  }
  .sf-level-0 label{
    padding: 10px 17px !important;
  }
  .searchandfilter .sf-field-reset a.search-filter-reset{
    padding: 13px 17px !important;
  }
  .tab-mid img {
    height: auto !important;
  }
  body .tab-mid{
    display: unset !important;
  }
  ul.lista-beneficios-producto {
    display: flex !important;
    font-weight: 600;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
  }
  .producto-custom .producto-descripcion{
    margin: 0px !important;
  }
  .ul.lista-beneficios-producto li {
    font-size: 14px !important;
  }
  div.newsletter-new-section{
    background-image: none !important;
  }
  .elemento_sobre{
    z-index: 23 !important;
  }
  body .sliders_icon .slick-track {
    display: block !important;
  }
  .primera_figura figure::after{
      content: "";
      position: absolute;
      bottom: 5%;
      width: 130vh !important;
      aspect-ratio: 31 / 1 !important;
      background-image: url(/wp-content/uploads/2025/05/Rectangulo-966-1-scaled.png);
      background-repeat: no-repeat;
      background-size: contain;
      z-index: 0;
      pointer-events: none;
  }
  .form.cart{
    display: flex !important;
    justify-content: center !important;
  }
  .wpcf7-form-control.wpcf7-text{
    padding: 5px 16px !important;
  }
  .podemos-ayudarte-section::after {
    content: "";
    position: absolute;
    top: 94%;
    right: 10% !important;
    width: 100% !important;
    aspect-ratio: 4 / 2 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-112502x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
  }
  .contacto_elemento_primero::before {
    content: "";
    position: absolute;
    bottom: -3rem;
    left: -1rem;
    width: 100% !important;
    aspect-ratio: 8 / 3 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-11247.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
  }
  .contacto_elemento_primero::after {
    content: "";
    position: absolute;
    bottom: -3rem;
    left: 24rem;
    width: 100% !important;
    aspect-ratio: 12 / 3 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-11251.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
  }
  .mkdf-quantity-buttons.quantity{
    margin: 10px auto 10px !important;
  }

  .title-2-aviso-legal,
  .title-2-aviso-legal *{
    font-size: 20px !important;
    line-height: 24px !important;
  }

}
@media (min-width: 1025px){
  .columns-5.product-column-new{
      grid-template-columns: repeat(5, 1fr) !important;
  }
  .full_mid img {
      height: 62vh !important;
  }
  .img_valores * {
    height: 100% !important;
  }
}
@media (min-width: 768px) and (max-width: 1024px){
  .columns-5.product-column-new{
      grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px){
  .widget_custom_html form.searchandfilter{
      display: none !important;
  }
  form.searchandfilter h4,
  form.searchandfilter .sf-field-taxonomy-product_cat li{
    text-align: left !important;
  }
  form.searchandfilter h4{
    font-family: 'brockmannregular' !important;
    font-weight: 600 !important;
  }
  .thumbs-slider {
    display: none !important;
  }
  /* FOOTER */
  body div.newsletter-new-section{
    background: #AAA5FF !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background-image: url(https://www.nutralie.com/wp-content/uploads/2025/05/footer-flores-1.png), url(https://www.nutralie.com/wp-content/uploads/2025/05/footer-flores-2.png) !important;
    background-size: 296px, 333px !important;
    background-position: -140px 84px, 225px 97px !important;
    background-repeat: no-repeat !important;
  }
  footer.mkdf-page-footer{
    background-image: none !important;
    padding-top: 20px !important;
  }
  footer.mkdf-page-footer .mkdf-footer-top-holder .mkdf-grid-row{
    display: block !important;
    margin-left: 0px !important;
    margin-right: 0px !important;
    padding-bottom: 35px;
    float: left;
  }
  footer.mkdf-page-footer img.image{
    margin-left: auto !important;
    margin-right: auto !important;
  }
  body > div.mkdf-wrapper > div.mkdf-wrapper-inner > footer > div.mkdf-footer-top-holder > div > div > div:nth-child(3),
  body > div.mkdf-wrapper > div.mkdf-wrapper-inner > footer > div.mkdf-footer-top-holder > div > div > div:nth-child(4){
    float: left !important;
    width: calc(50% - 7.5px) !important;
    position: relative !important;
    top: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
    right: 0px !important;
  }
  body > div.mkdf-wrapper > div.mkdf-wrapper-inner > footer > div.mkdf-footer-top-holder > div > div > div:nth-child(1){
    display: none !important;
  }
  body > div.mkdf-wrapper > div.mkdf-wrapper-inner > footer > div.mkdf-footer-top-holder > div > div > div:nth-child(2){
    margin-bottom: 25px !important;
  }
  .newsletter-new-section .form-unete-nuestra-newsletter > p{
    display: grid !important;
    grid-gap: 40px;
  }
  .newsletter-new-section .form-unete-nuestra-newsletter{
    float: left;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .newsletter-new-section .mkdf-row-grid-section{
    width: 90% !important;
  }
  .newsletter-new-section .wpcf7-submit{
    background: none !important;
  }
  .newsletter-new-section .wpcf7-submit > .mkdf-btn-text{
    position: relative;
    letter-spacing: 0px !important;
  }
  .newsletter-new-section .wpcf7-submit > .mkdf-btn-text:before{
    content: "";
    transform: skew(-20deg);
    background: #DAFFB6;
    position: absolute;
    width: calc(100% + 70px);
    height: calc(100% + 30px);
    left: -35px;
    top: -16px;
    z-index: -1;
  }
  footer.mkdf-page-footer a.mkdf-social-icon-widget-holder.mkdf-icon-has-hover span{
    background: white !important;
    color: #AAA5FF !important;
    border-radius: 50px;
  }
  div.elemento-primer-formulas::after {
    content: "";
    position: absolute;
    top: -25%;
    left: 70%;
    width: 100% !important;
    aspect-ratio: 5 / 2 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-116862x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -3;
    pointer-events: none;
  }
  div.elemento-primer-formulas::before {
    content: "";
    position: absolute;
    top: -21%;
    left: -23%;
    width: 90% !important;
    aspect-ratio: 3 / 2 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-18812x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -16;
    pointer-events: none;
  }
  .elemento-segundo-formulas::after {
    content: "";
    position: absolute;
    top: 64%;
    left: 51%;
    width: 100% !important;
    aspect-ratio: 3 / 3 !important;
    background-image: url('/wp-content/uploads/2025/05/Grupo-18792x.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
  }
  .text-img .vc_column-inner{
    padding-right: 7% !important;
    padding-left: 7% !important;
  }
  .front_text p, .front_text span{
    z-index: 25 !important;

  }
  .elemento-primer-formulas, .elemento-segundo-formulas{
    z-index: 1 !important;
  }
   .woocommerce-Tabs-panel table{
    width: 100% !important;
  }
  .imagen-hover-wrap img {
    width: 100% !important;
  }
  .swiper-button-next:after, .swiper-button-prev:after{
    font-size: 20px !important;
  }
  .swiper-slide-active img{
    width: 89% !important;
  }
  .swiper-slide{
    text-align: -webkit-center !important;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px) !important;
    left: auto;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next{
    left: var(--swiper-navigation-sides-offset, 0px) !important;
    right: auto;
  }
  .mkdf-woo-single-page .mkdf-single-product-content .mkdf-single-product-summary{
    margin: 20px 0 0 !important;
  }
  .product-title-mobile {
		display: block;
		margin-bottom: 15px;
		text-align: center;
	}

	.producto-titulo-tophook {
		display: none;
	}
  .header-content {
    display: none;
  }


  .mkdf-vertical-align-containers {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mkdf-position-left,
  .mkdf-position-center,
  .mkdf-position-right {
    flex: 1;
    text-align: center;
  }

  .mkdf-position-left {
    text-align: left;
  }
  .mkdf-position-right {
    text-align: right;
  }
  .mkdf-vertical-align-containers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
  }
  .mkdf-position-left {
    text-align: left;
  }
  .mkdf-position-center {
    text-align: center;
  }
  .mkdf-position-right {
    text-align: right;
  }
  .mkdf-position-left-inner {
    display: flex !important;
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  .mkdf-vertical-align-containers .mkdf-position-left{
    height: auto !important;
  }
  .mkdf-vertical-align-containers .mkdf-position-right{
    position: unset !important;
  }

  header a.mkdf-modal-opener.mkdf-login-opener{
    min-width: 0px !important;
    left: 0px !important;
  }
  .mkdf-vertical-align-containers > .mkdf-position-right{
    width: auto !important;
    float: none !important;
  }
  header #image_header img{
    width: 120px !important;
  }
  html body header.mkdf-mobile-header .mkdf-position-right-inner{
    margin-bottom: 9px !important;
  }
  html body > div.mkdf-wrapper > div.mkdf-wrapper-inner > header.mkdf-mobile-header > div > nav{
    height: 95vh !important;
  }
  .mkdf-mobile-header .mkdf-mobile-nav ul li{
    border-bottom: 1px solid #595959;
  }
  nav.mkdf-mobile-nav.ps li.menu-item *{
    margin: 8px 0px !important;
    text-align: left;
  }
  .mkdf-mobile-header li.menu-item-type-wpml_ls_menu_item{
    justify-content: flex-start !important;
    border-bottom: 0px !important;
  }
  html .mkdf-mobile-header .mkdf-mobile-nav .mkdf-grid>ul>li>a span:after{
    height: 0px !important;
  }
  .mkdf-mobile-menu-opened .fa-icon-menu::before {
    content: "\58";
  }
  .mkdf-position-left, .mkdf-position-center, .mkdf-position-right{
    display: flex !important;
    align-content: center;
    align-items: center;
    flex-direction: row;
  }
  .mkdf-vertical-align-containers .mkdf-position-center{
    position: relative !important;
  }
  .linea-izquierda .textwidget {
    text-align: left;
  }
  html body.single-product .mkdf-container-inner.clearfix{
    width: 100% !important;
  }
  html body.product-template-default .mkdf-single-product-content {
    display: unset !important;
  }
  .mkdf-woo-single-page .mkdf-single-product-summary .price{
    text-align: center !important;
  }
  .revision-politicas,
  .revision-politicas *{
    font-size: 12px !important;
    line-height: 19px !important;
  }
  .pum-container.pum-responsive{
    padding: 5px !important;
  }


}
@media (min-width: 1400px) {
    .mkdf-woo-single-page .woocommerce-product-gallery {
    width: 30% !important;
  }

}
@media (max-width: 1600px) {
  body li.menu-item a {
    padding: 0px 13px !important;
  }
}





/* ---------- RESPONSIVE ---------- */

@media (max-width: 768px) {
  .filtros-nutralie .panel-filtro {
    width: 90%;
  }
  .filtros-nutralie .panel-filtro{
    padding: 20% 5vw;
    gap: 0rem;
  }

  .filtros-nutralie .chip {
    font-size: 12px;
    padding: 5px 8px;
  }
}


