/* ==========================================================
   CASA MIXTECO
   CMX-23C · HEADER MÓVIL · LOGO · DISEÑO

   CONTROLA:
   - Tamaño del logo móvil
   - Posición
   - Proporción
   - Nitidez
   - Alineación

   NO CONTROLA:
   - Archivo del logo
   - Hamburguesa
   - Buscador móvil
   - Carrito móvil
   - Barra inferior
   ========================================================== */


/* ==========================================================
   01 · CONTENEDOR DEL LOGO
   ========================================================== */

#cmx-logo-mobile {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    margin: 0;
    padding: 0;

    flex: 0 0 46px;

    text-decoration: none !important;

    overflow: hidden;

    box-sizing: border-box;
}


/* ==========================================================
   02 · IMAGEN DEL LOGO
   ========================================================== */

#cmx-logo-mobile
.cmx-logo-mobile__imagen {

    display: block;

    width: 42px !important;
    max-width: 42px !important;

    height: 42px !important;
    max-height: 42px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain;
    object-position: center center;

    filter: none !important;

    opacity: 1 !important;

    transform: none !important;

    image-rendering: auto;

    box-sizing: border-box;
}


/* ==========================================================
   03 · EVITAR ESTILOS GENERALES DE GENERATEPRESS
   ========================================================== */

#cmx-header-mobile
#cmx-logo-mobile,
#cmx-header-mobile
#cmx-logo-mobile:visited,
#cmx-header-mobile
#cmx-logo-mobile:hover,
#cmx-header-mobile
#cmx-logo-mobile:active {

    color: inherit !important;

    text-decoration: none !important;
}


/* ==========================================================
   04 · FOCO ACCESIBLE
   ========================================================== */

#cmx-logo-mobile:focus-visible {

    outline:
        2px solid var(--cmx-amarillo, #FFEE00);

    outline-offset: 2px;

    border-radius:
        var(--cmx-radio-sm, 6px);
}


/* ==========================================================
   05 · SOLO MÓVIL
   ========================================================== */

@media (max-width: 768px) {

    #cmx-logo-mobile {
        display: flex;
    }

}


/* ==========================================================
   06 · OCULTAR EN PC
   ========================================================== */

@media (min-width: 769px) {

    #cmx-logo-mobile {
        display: none !important;
    }

}