/* Css para Menu movil Regla 1.1 BOTÓN Inicio*/
.mm-header {
    
}
.wclrm-form-blocked-notice {
    background-color: #EEC5BD !important;
    border: 1px dashed rgba(0,0,0,.2)!important;
    padding: 12px;
    font-size: 14px;
    opacity: .85!important;
    color: #000 !important;
    border-radius: 5px;
}

.mm-toggle {
    font-size: 0px !important;
    background: none !important;
    color:#000 !important;
    border: 0px !important;
    cursor: pointer;
    border:none !important;
    
    
    /*prueba*/
    position: relative !important;
    z-index: 3;
    
    padding: 8px !important;
    /*prueba*/
    
   
}

.mm-overlay {
    position: fixed;
    top: var(--wclrm-mm-top);
    left: 0;

    width: 100vw;
    height: calc(100vh - var(--wclrm-mm-top));

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .3s ease;
    z-index: 9998;
}

/* Overlay activo */
body.mm-active .mm-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}




.mm-panel {
    
    top: var(--wclrm-panel-top, 0px);
    height: calc(100vh - var(--wclrm-panel-top, 0px));
    overflow-y:auto;
    
}


/* PANEL */
.mm-panel {
    
    position: fixed;
    left: -70%;
    width: 70%;
    transition: .3s ease;
    z-index: 9999 !important;
    display: flex;
    flex-direction: column;
}

/* ACTIVO */
.mm-active .mm-panel {
    left: 0;
}

.mm-active .mm-overlay {
    opacity: 1;
    visibility: visible;
}

/* MENÚ */
.mm-list {
    list-style: none;
    padding-left: 0px;
    margin-top:5px;
 
}


.mm-list a {
    color: #011342;
    text-decoration: none;
    padding-left: 30px;
    padding-right: 30px;
    display: block;
    font-size: 15px ;
}


.mm-btn {
    display: block;
    padding: 12px;
    text-align: center;
    background: #011342;
    color: #fff !important;
    border-radius: 5px;
    margin-bottom: 10px;
}

.mm-btn.outline {
    background: none;
    border: 1px solid #011342;
    color: #011342 !important;
    
}



@media (min-width: 769px){

.wclrm-login-btn {
    display:flex;
    align-items: center;
    text-align: center;
    border:0px !important;
}
}

@media (min-width: 769px) {

.wclrm-user-box {
    border:0px !important;
   
}    
   
}

/* SUBMENÚ ACORDEÓN REAL */
.mm-list .sub-menu {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    padding-left: 15px;
     list-style: none;
}

/* Estado abierto */
.menu-item-has-children.open > .sub-menu {
    overflow: hidden;
     
}

/* Icono */
.mm-sub-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .3s ease;
    margin-top: -12px;
    margin-bottom: -13px;
 
}


.mm-list li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔑 CLAVE */
    width: 100%;
}




.mm-list li.menu-item-has-children > a .mm-sub-toggle {
    flex-shrink: 0;
    
}


/* ICONO TOGGLE */
.mm-sub-toggle {
    font-size: 20px;
    
    cursor: none;
    user-select: none;
    
    
}


/* Cuando el submenú está abierto */
.menu-item-has-children.open .mm-sub-toggle {
    transform: rotate(180deg);
    
      
}

/* Botón flotante de Adopt */
#adopt-controller-button,
.adopt-c-cyPWlR {
    z-index: 1 !important;
}


/* display: inline-flex;*/
.wclrm-user-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: px;
    border: 0px solid ;
    border-radius: 5px;
    padding: 0px;
   
}


.wclrm-user-avatar img {
    border-radius: 50%;
    width: 18px ;
    height: 18px;
    
    
}


.wclrm-auth-btn {
    display: inline-flex;
    text-align: center;
    align-items: center;
    align-content: center;
    border-radius: 5px;
    text-decoration: none;
    gap: 0px;

}

.wclrm-auth-icon {
    display: flex;
    align-items: center;
    order: 2;
    padding: 3.5px;
    width: 33px;
}


.wclrm-auth-btn:hover .wclrm-auth-icon {
    transform: translateX(3px);
    transition: transform .2s ease;
}


.wclrm-user-area {
    padding: 10px !important;
}


.wclrm-login-btn {
    display:flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: 011342;
    gap: 12px !important;

}

.wclrm-logout-btn {
    background: transparent;
    border: 1px solid currentColor;
    
}



.wclrm-auth-btn .dashicons {
    font-size: 18px;
    width: 20px;
    height: 20px;
    line-height:1 ;
    order: 2;
 
}

.wclrm-auth-text {
    line-height:1 ;
}


.wclrm-user-icon {
   display:flex    ;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 17px;
    height: 16px;
    border-radius: 50%;
    order: 2;
     
     
}

.mm-toggle::before {
    content: "☰";
    font-size: 22px;
    line-height: 1;
    color: #fff;
    display: inline-block;
    transition: transform .3s ease, opacity .3s ease;
     transform: scaleY(0.8);  
    transform-origin: center;
    

}

/* Menú abierto */
.mm-toggle.is-open::before {
    content: "✕";
    transform: rotate(90deg);
}



/* El panel NO scrollea */
.mm-panel {
    overflow: hidden;
}


/* El área scrolleable compensa el padding */
.mm-menu {
    
    -webkit-overflow-scrolling: touch;

    margin-right: 0px;   
    padding-right: 0px;  

    flex: 1 1 auto;
    min-height: 0;
}


.mm-panel .mm-list > li {
    width: 100% !important;
}

.mm-panel .mm-list > li > a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100% !important;
}


.mm-panel .mm-list > li > a .mm-text {
    flex: 1 1 auto;     
    display: block;
}


.mm-panel .mm-list > li > a .mm-text {
    flex: 1 1 auto;     
    display: block;
}



.mm-panel .mm-list > li > a .mm-sub-toggle {
    flex: 0 0 auto !important;
    margin-left: 0 !important;
}

/* Enlace base */
.mm-panel .mm-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.mm-panel .mm-list > li > a {
    text-align: left; /* default */
}


body.wclrm-mm-align-center .mm-panel .mm-list > li > a {
    justify-content: center;
}

body.wclrm-mm-align-right .mm-panel .mm-list > li > a {
    justify-content: flex-end;
}


.mm-panel .mm-list > li > a .mm-sub-toggle {
    margin-left: auto;
}


.mm-panel .mm-list > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.mm-panel .mm-list > li > a .mm-text {
    flex: 1 1 auto;       
    display: block;
}


.mm-panel .mm-list > li > a .mm-sub-toggle {
    flex: 0 0 auto;
    margin-left: 16px;
}


body.wclrm-mm-align-left .mm-panel .mm-list > li > a .mm-text {
    text-align: left;
}

/* Centro */
body.wclrm-mm-align-center .mm-panel .mm-list > li > a .mm-text {
    text-align: center;
}

/* Derecha */
body.wclrm-mm-align-right .mm-panel .mm-list > li > a .mm-text {
    text-align: right;
}



/* BASE sub-menú */
.mm-panel .mm-list .sub-menu li > a {
    display: block;
    width: 100%;
}

/* IZQUIERDA */
body.wclrm-mm-align-left .mm-panel .mm-list .sub-menu li > a {
    text-align: left;
}

/* CENTRO */
body.wclrm-mm-align-center .mm-panel .mm-list .sub-menu li > a {
    text-align: center;
}

/* DERECHA */
body.wclrm-mm-align-right .mm-panel .mm-list .sub-menu li > a {
    text-align: right;
}

.mm-panel .mm-list > li {
    padding-bottom: 6px;
    
    
}

.wclrm-mm-separator {
    border-bottom: 1px solid rgba(255,255,255,.15);
opacity: .5;
}

.mm-panel .mm-text {
    white-space: normal;
}

.mm-panel li.menu-item-has-children > a {
    align-items: flex-start;
}

.wclrm-mobile-social {
    display: flex;
    justify-content: center;
    gap: 12px;
padding-bottom: 30px;}

.wclrm-social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wclrm-social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}
/* --- FIX SVG redes en móvil real --- */



.mm-menu {
    min-height: 100%;
    
    display: flex;
    flex-direction: column;
}

.wclrm-mobile-social {
    margin-top: auto;
    margin-bottom: 10px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.Lb_siguenos {
        display: flex ;
    flex-direction: column ;
    align-items: center ;
    
   
}

.Lb_siguenos p{
    
    margin-top: 25px !important;
}


.woocommerce-form__label-for-checkbox span {
    white-space: nowrap;
}


.Lb_siguenos p {
    margin-bottom:  0px !important;
 
}


.mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 18px;
}

/* LOGO */
.mm-logo img {
    max-height: 40px;
    width: auto;
    display: block;
}

/* BOTÓN CERRAR */
.mm-close {
    background: none !important;
    border: none !important;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    margin-top: -15px;
    margin-right: -6px;
    padding: 8px !important;
    
}


.mm-panel {
    height: 100vh;
    max-height: 100vh;
    display: flex;              
    flex-direction: column;     
    overflow: hidden !important;
}

.mm-close {
    flex: 0 0 auto;
}
.mm-menu {
    
    flex: 1 1 auto;             
    overflow-y: auto;           
    overflow-x: hidden;
    min-height: 0;              
    -webkit-overflow-scrolling: touch;
}

body.mm-active {
    overflow: hidden !important;
    height: 100vh;
    position: fixed;
    width: 100%;
}


/* Interacción → más visible */
.mm-panel:active::-webkit-scrollbar-thumb,
.mm-panel:focus-within::-webkit-scrollbar-thumb {
    opacity: 1;
    
}


/* Enlace completo */
.mm-panel li.menu-item-has-children > a {
    cursor: pointer;
}

/* Icono de submenú */
.mm-panel .mm-sub-toggle,
.mm-panel .mm-sub-toggle svg {
    cursor: pointer !important;
}

/* Mantener pointer en hover */
.mm-panel li.menu-item-has-children > a:hover,
.mm-panel li.menu-item-has-children > a:hover .mm-sub-toggle,
.mm-panel li.menu-item-has-children > a:hover .mm-sub-toggle svg {
    cursor: pointer !important;
}

.mm-panel {
    overflow-y: auto;

    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: currentColor transparent; 
}

/* WebKit (Chrome, Safari, Edge) */
.mm-panel::-webkit-scrollbar {
    width: 6px;
}

.mm-panel::-webkit-scrollbar-track {
  /*  background: transparent; */
}

.mm-panel::-webkit-scrollbar-thumb {
   background-color: currentColor; 
    border-radius: 6px;
    opacity: 0.4;
}

.wclrm-form-error {
    border: 1px solid red;
    padding: 10px;
    border-radius: 3px;
    font-size: 14px;
    background-color:#F7EEEE;
    color: #242323;
}

.wclrm-lost-password-intro {
    margin-bottom: 20px;
}

.wclrm-lost-password-title {
    font-weight: 600;
    
    margin-bottom: 8px;
}

.wclrm-lost-password-text {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

.wclrm-form-message {
    border: 1px solid green !important;
    padding: 10px;
    border-radius: 3px;
    background-color: #F5F5FF;
    color: #242323;
}

@media (max-width: 768px) {


    .woocommerce-MyAccount-navigation {
        width: 100%;
        
    }

    .woocommerce-MyAccount-navigation ul {
        padding: 0;
        
    }

    .woocommerce-MyAccount-navigation li {
        width: 100%;
        margin-bottom: 10px;
        margin-left: 0px !important;
        
    }

    .woocommerce-MyAccount-navigation li a {
        display: block;
        width: 100%;
        text-align: center;
    }

}
@media (max-width: 768px) {

    .woocommerce-account .e-con-inner {
        display: block;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

}


.wclrm-mobile-custom-block
{
    padding: 0 30px;
    line-height: 20px !important;
}


.wclrm-mobile-custom-block iframe,
.wclrm-mobile-custom-block video {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 3px;
}


/* enlace NO define color */
.wclrm-mobile-social a {
    color: inherit !important;
}

/* el SVG usa SOLO la variable del plugin */
.wclrm-mobile-social svg {
    fill: var(--wclrm-social-color);
    transition: fill 0.2s ease;
}

/* hover opcional (si lo usas) */
.wclrm-mobile-social a:hover svg {
    fill: var(--wclrm-social-hover-color, var(--wclrm-social-color));
}


.password-input {
    position: relative !important;
    display: block;
}
.password-input .show-password-input,
.password-input .wclrm-password-toggle {
    position: absolute !important;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: auto;
}
#password_strength,
.woocommerce-password-hint {
    margin-top: 8px;
}


/* INPUT */
.mm-panel .dgwt-wcas-search-input {
    width: 100%;
    font-size: 16px; /* evita zoom en iOS */
    border-radius: 8px;
}

/* ICONO */
.mm-panel .dgwt-wcas-search-icon {
    left: 12px;
}

/* RESULTADOS */
.mm-panel .dgwt-wcas-suggestions-wrapp {
    position: fixed !important;
    top: var(--wclrm-mm-header-height, 60px);
    left: 0;
    right: 0;
    max-height: 65vh;
    z-index: 999999;
}

/* ITEM */
.mm-panel .dgwt-wcas-suggestion {
    padding: 10px 12px;
}

/* PRECIO */
.mm-panel .dgwt-wcas-price {
    font-size: 14px;
}

.mm-panel .dgwt-wcas-product-image {
    width: 48px;
    height: 48px;
}

.mm-panel .dgwt-wcas-title {
    font-size: 14px;
    line-height: 1.3;
}

.mm-panel .dgwt-wcas-stock {
    display: none; /* ruido visual */
}

