/*
Theme Name: Tiendas Bolivia
Template: twentytwentyone
Version: 1.0.0
*/

/* RESET DE SUBRAYADOS */
.barra-inferior a, 
.barra-inferior span, 
.nombre-categoria {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    display: block;
}

.barra-inferior {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #0d0630;
    z-index: 9999;
    display: flex;
    align-items: center;
}

.contenedor-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab; /* Indica que se puede arrastrar */
}

.contenedor-scroll:active {
    cursor: grabbing;
}

.contenedor-scroll::-webkit-scrollbar {
    display: none; /* Oculta barra visual */
}

.lista-categorias {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
}

.categoria-item a {
    display: flex;
    flex-direction: column-reverse; /* Texto arriba */
    align-items: center;
    text-align: center;
}

.nombre-categoria {
    margin-bottom: 5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.circulo-icono {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}










/* --- ESTILO UNIFICADO ICONOS BARRA INFERIOR --- */

/* 1. El Círculo: Tamaño fijo y centrado */
.barra-inferior .circulo-icono {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    background: rgba(255,255,255,0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

/* 2. La Imagen: Ocupando TODO el círculo */
.barra-inferior .circulo-icono img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    
    /* 'cover' hace que la imagen se expanda hasta llenar el círculo */
    object-fit: cover !important; 
    
    display: block !important;
    position: absolute !important; /* Para asegurar que se centre perfectamente */
    top: 0;
    left: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* 3. El Contenedor: Espaciado para que no se amontonen */
.lista-categorias li.categoria-item {
    width: 85px !important;
    flex-shrink: 0 !important;
    list-style: none !important;
}




.nombre-usuario-logueado {
    font-size: 0.9rem !important;
    font-weight: 700;
    text-transform: none;
    align-self: center;
    white-space: nowrap;
}


