/* ==========================================================
   CASA MIXTECO
   CMX-19C · HEADER PC · CATEGORÍAS · DISEÑO

   CONTROLA:
   - Barra de categorías del Header PC
   - Botón Categorías
   - Enlaces de categorías
   - Enlace Ver todo
   - Separaciones
   - Hover
   - Scroll horizontal si hace falta

   NO CONTROLA:
   - PHP de categorías
   - Header móvil
   - Dropdown avanzado
   - Ranking por ventas
   - Buscador
   - Cuenta
   - Carrito
   ========================================================== */


/* ==========================================================
   01 · CONTENEDOR GENERAL
   ========================================================== */

#cmx-header-pc-categories {
    width: 100%;

    margin: 0;
    padding: 0;

    background-color: #000080;

    color:
        var(--cmx-blanco, #FFFFFF);

    box-sizing: border-box;
}


/* ==========================================================
   02 · CONTENEDOR INTERIOR
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__inner {

    width: 100%;
    max-width: 1280px;

    min-height: 36px;

    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;

    gap: 18px;

    box-sizing: border-box;
}


/* ==========================================================
   03 · BOTÓN PRINCIPAL "CATEGORÍAS"
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__all {

    flex: 0 0 auto;

    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin: 0;
    padding: 0 10px;

    border-radius: 4px;

    color:
        var(--cmx-blanco, #FFFFFF) !important;

    font-family:
        var(--cmx-fuente, Arial, sans-serif);

    font-size: 13px;
    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}


/* ==========================================================
   04 · ICONO HAMBURGUESA
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__menu-icon {

    width: 18px;
    height: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 18px;
}


#cmx-header-pc-categories
.cmx-header-pc-categories__menu-icon svg {

    width: 18px;
    height: 18px;

    display: block;

    stroke:
        currentColor;
}


/* ==========================================================
   05 · LISTA DE CATEGORÍAS
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__list {

    flex: 1 1 auto;
    min-width: 0;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;

    gap: 18px;

    list-style: none;

    overflow-x: auto;
    overflow-y: hidden;

    white-space: nowrap;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}


/* Ocultar scrollbar */

#cmx-header-pc-categories
.cmx-header-pc-categories__list::-webkit-scrollbar {

    display: none;
}


/* ==========================================================
   06 · ITEM
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__item {

    flex: 0 0 auto;

    margin: 0;
    padding: 0;

    list-style: none;
}


/* ==========================================================
   07 · ENLACES DE CATEGORÍA
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__link {

    display: flex;
    align-items: center;

    min-height: 36px;

    margin: 0;
    padding: 0;

    color:
        rgba(255, 255, 255, 0.90) !important;

    font-family:
        var(--cmx-fuente, Arial, sans-serif);

    font-size: 12px;
    font-weight: 400;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        color 0.15s ease;
}


/* ==========================================================
   08 · HOVER DE CATEGORÍAS
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__link:hover {

    color:
        var(--cmx-amarillo, #FFEE00) !important;
}


/* ==========================================================
   09 · HOVER BOTÓN CATEGORÍAS
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__all:hover {

    background-color:
        rgba(255, 255, 255, 0.12);

    color:
        var(--cmx-amarillo, #FFEE00) !important;
}


/* ==========================================================
   10 · VER TODO
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__shop {

    flex: 0 0 auto;

    min-height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0;
    padding: 0 6px;

    color:
        var(--cmx-amarillo, #FFEE00) !important;

    font-family:
        var(--cmx-fuente, Arial, sans-serif);

    font-size: 12px;
    font-weight: 600;

    line-height: 1;

    text-decoration: none !important;

    white-space: nowrap;
}


/* ==========================================================
   11 · HOVER VER TODO
   ========================================================== */

#cmx-header-pc-categories
.cmx-header-pc-categories__shop:hover {

    color:
        var(--cmx-blanco, #FFFFFF) !important;
}


/* ==========================================================
   12 · ESTADOS DE ENLACE
   ========================================================== */

#cmx-header-pc-categories a,
#cmx-header-pc-categories a:link,
#cmx-header-pc-categories a:visited,
#cmx-header-pc-categories a:active {

    text-decoration: none !important;
}


/* ==========================================================
   13 · FOCO ACCESIBLE
   ========================================================== */

#cmx-header-pc-categories a:focus-visible {

    outline:
        2px solid var(--cmx-amarillo, #FFEE00);

    outline-offset: 2px;
}


/* ==========================================================
   14 · SOLO PC
   ========================================================== */

@media (min-width: 769px) {

    #cmx-header-pc-categories {
        display: block;
    }

}


/* ==========================================================
   15 · MOBILE
   Tendrá navegación propia más adelante.
   ========================================================== */

@media (max-width: 768px) {

    #cmx-header-pc-categories {
        display: none !important;
    }

}