/* === 5. НАВИГАЦИЯ КАТЕГОРИЙ (КАТАЛОГ) === */
.nav-layers-wrapper { 
    background: transparent; 
    margin-bottom: 20px; 
    max-width: 1200px;
    margin: 0 auto;
}

.nav-row {
    display: flex; 
    overflow-x: auto; overflow-y: hidden;
    padding: 10px 15px; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 25px;
    justify-content: flex-start;
}
.nav-row::-webkit-scrollbar {      
    display: none; }

/* Уровень 1: Родители (Иконки) */
.parents-row { 
    border-bottom: 1px solid var(--text-light); 
    padding-bottom: 15px; margin-bottom: 5px; 
    }
.nav-item-root { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-decoration: none; 
    color: var(--text-color); 
    min-width: 65px; 
    width: 90px;
    flex-shrink: 0;
    }
.nav-icon-circle {
    width: 54px; 
    height: 54px; 
   /* background: var(--coffe-light-color); 
    border-radius: var(--border-radius); */
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 22px; 
    margin-bottom: 6px; 
    border: 2px solid transparent; 
    transition: 0.3s;
    box-shadow: var(--shadow);
}
.nav-item-root.active .nav-icon-circle { 
   /* background: var(--accent); */
    color: var(--text-dark); 
    }

.nav-item-root.active .nav-label-root { 
    color: var(--text-dark); font-weight: bold; 
    }
.nav-label-root { 
    font-size: 11px; text-align: center; 
    white-space: normal;
    word-wrap: break-word;
    }

/* Уровень 2: Дети (Кнопки-пилюли) */
.children-row { 
    padding: 12px 15px; 
    }
.nav-pill {
    background: var(--accent);      
    padding: 7px 18px; 
    border-radius: 25px;
    text-decoration: none; 
    color: var(--text-dark); 
    font-size: 13px; 
    font-weight: 500; 
    white-space: nowrap;
    box-shadow: var(--shadow);
}
.nav-pill.active { 
    background: var(--teracot-color); 
    color: #fff; 
}

/* Уровень 3: Внуки (Теги) */
.nav-tag {
    text-decoration: none; color: var(--teracot-color); font-size: 12px;
    border: 1px dashed var(--teracot-color); 
    padding: 4px 12px; 
    border-radius: 8px; 
    white-space: nowrap;
}
.nav-tag.active { 
    background: var(--teracot-color); 
    color: #fff; 
    border-style: solid; 
}



