/**
 * Brezo Category Navigation Styles
 * Catalog bold, counts right-aligned, subcategories indented, long names clipped
 */

.brezo-back-to-catalog {
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray, #DBDBDB);
}

.brezo-back-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700 !important;
    color: var(--darkgray, #19191A);
    text-decoration: none;
    transition: color 0.2s ease;
}

.brezo-back-link:hover {
    color: var(--primary, #E4308A);
    text-decoration: none;
}

.brezo-back-arrow {
    margin-right: 4px;
}

.brezo-category-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.brezo-category-nav-item {
    margin-bottom: 4px;
}

/* One vertical line for the whole subcategory group */
.brezo-category-nav-children-wrap {
    list-style: none;
    border-left: 1px solid var(--gray, #DBDBDB);
}

.brezo-category-nav-children {
    list-style: none;
    margin: 0 0 0 1em !important;
    padding: 0;
}

.brezo-category-nav-item--child {
    margin-bottom: 4px;
}

.brezo-category-nav-item--child:last-child {
    margin-bottom: 0;
}

.brezo-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    color: var(--darkgray, #19191A);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.brezo-category-link:hover {
    color: var(--primary, #E4308A);
    text-decoration: none;
}

.brezo-category-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.brezo-category-nav-item.current-cat .brezo-category-link {
    font-weight: 600;
    color: var(--primary, #E4308A);
}

.brezo-category-link .count {
    flex-shrink: 0;
    font-weight: 400;
    color: var(--darkergray, #AAAAB3);
    font-size: 12px;
}

.brezo-category-nav-item.current-cat .brezo-category-link .count {
    color: var(--primary-dark, #d12c7e);
    opacity: 0.9;
}

