/* ==========================================================
   CASA MIXTECO
   CMX-29C · HEADER MÓVIL · UBICACIÓN · DISEÑO

   REFERENCIA:
   - Fila de ubicación tipo Mercado Libre
   - Adaptada a Casa Mixteco
   - Prioridad San Martín Peras

   CONTROLA:
   - Apariencia de la fila de ubicación
   - Icono
   - Texto
   - Flecha
   - Espaciado
   - Hover / foco

   NO CONTROLA:
   - Detección automática
   - GPS
   - IP
   - Código postal
   - Cálculo de entrega
   - Reglas logísticas
   ========================================================== */


/* ==========================================================
   01 · BOTÓN GENERAL
   ========================================================== */

#cmx-mobile-location {
    width: 100%;

    min-height: 32px;

    margin: 0;
    padding: 3px 2px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 7px;

    border: 0;
    border-radius: 6px;

    background: transparent;

    color:
        var(--cmx-negro, #000000);

    font-family:
        var(--cmx-fuente, Arial, sans-serif);

    text-align: left;

    cursor: pointer;

    box-sizing: border-box;

    transition:
        background-color 0.15s ease;
}


/* ==========================================================
   02 · ICONO UBICACIÓN
   ========================================================== */

#cmx-mobile-location
.cmx-mobile-location__icon {

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        var(--cmx-negro, #000000);
}


#cmx-mobile-location
.cmx-mobile-location__icon svg {

    display: block;

    width: 19px;
    height: 19px;

    margin: 0;
    padding: 0;

    stroke: currentColor;

    stroke-width: 1.9;
}


/* ==========================================================
   03 · CONTENIDO DE TEXTO
   ========================================================== */

#cmx-mobile-location
.cmx-mobile-location__content {

    min-width: 0;

    display: flex;
    align-items: center;

    gap: 4px;

    flex: 0 1 auto;

    line-height: 1.1;
}


/* ==========================================================
   04 · "ENTREGA EN"
   ========================================================== */

#cmx-mobile-location
.cmx-mobile-location__label {

    color:
        rgba(0, 0, 0, 0.66);

    font-size: 12px;
    font-weight: 400;

    white-space: nowrap;
}


/* ==========================================================
   05 · LUGAR PRINCIPAL
   ========================================================== */

#cmx-mobile-location
.cmx-mobile-location__place {

    color:
        var(--cmx-negro, #000000);

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    overflow: hidden;
    text-overflow: ellipsis;

    max-width: 180px;
}


/* ==========================================================
   06 · FLECHA
   ========================================================== */

#cmx-mobile-location
.cmx-mobile-location__arrow {

    width: 16px;
    height: 16px;

    flex: 0 0 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color:
        rgba(0, 0, 0, 0.70);
}


#cmx-mobile-location
.cmx-mobile-location__arrow svg {

    display: block;

    width: 15px;
    height: 15px;

    stroke: currentColor;
}


/* ==========================================================
   07 · HOVER
   ========================================================== */

#cmx-mobile-location:hover {

    background-color:
        rgba(0, 0, 0, 0.05);
}


/* ==========================================================
   08 · ACTIVO
   ========================================================== */

#cmx-mobile-location:active {

    background-color:
        rgba(0, 0, 0, 0.08);
}


/* ==========================================================
   09 · FOCO ACCESIBLE
   ========================================================== */

#cmx-mobile-location:focus-visible {

    outline:
        2px solid var(--cmx-azul, #0000A6);

    outline-offset: 1px;
}


/* ==========================================================
   10 · PANTALLAS MUY PEQUEÑAS
   ========================================================== */

@media (max-width: 360px) {

    #cmx-mobile-location
    .cmx-mobile-location__place {

        max-width: 135px;
    }

}


/* ==========================================================
   11 · SOLO MÓVIL
   ========================================================== */

@media (max-width: 768px) {

    #cmx-mobile-location {
        display: flex;
    }

}


/* ==========================================================
   12 · OCULTAR EN PC
   ========================================================== */

@media (min-width: 769px) {

    #cmx-mobile-location {
        display: none !important;
    }

}