/******************************************************
  BASE RESET FOR WIDGET
******************************************************/
.cpc-wrapper * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none !important;
}

/******************************************************
  ROW LAYOUT (ARROW + LABEL)
******************************************************/
.cpc-row {
    display: grid;
    grid-template-columns: 16px auto;
    align-items: flex-start;
    column-gap: 6px;
    margin: 3px 0;
}

/******************************************************
  ARROWS
******************************************************/
.cpc-toggle,
.cpc-no-toggle {
    width: 16px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    user-select: none;
}

.cpc-no-toggle {
    visibility: hidden;
}

/******************************************************
  LABELS (PARENT CATEGORIES)
******************************************************/
.cpc-row > a {
    font-family: "Roboto", sans-serif !important;
    font-size: 14px !important;
    text-decoration: none;
    color: inherit;
}

/******************************************************
  COUNTS
******************************************************/
.cpc-count {
    color: #666;
    font-size: 12px;
    margin-left: 4px;
}

/******************************************************
  SUBCATEGORY FONT SIZE (FORCE 12PX ROBOTO)
******************************************************/
.cpc-wrapper .cpc-children a,
.cpc-wrapper .cpc-children .cpc-row > a,
.cpc-wrapper .cpc-children * a,
.cpc-wrapper .cpc-children div a {
    font-family: "Roboto", sans-serif !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

/* Optional: smaller counts for subcategories */
.cpc-wrapper .cpc-children .cpc-count {
    font-size: 11px !important;
}

/******************************************************
  INDENTATION LEVELS
******************************************************/
.cpc-level-0 { padding-left: 0; }
.cpc-level-1 { padding-left: 24px; }
.cpc-level-2 { padding-left: 48px; }
.cpc-level-3 { padding-left: 72px; }

/******************************************************
  CHILDREN CONTAINER
******************************************************/
.cpc-children {
    display: none;
    margin-left: 0;
}

/******************************************************
  HIDE CATEGORIES WITH ZERO ITEMS
******************************************************/

/* Hide the count itself */
.cpc-wrapper .cpc-count:contains("(0)") {
    display: none !important;
}

/* Hide the entire row if count is 0 */
.cpc-wrapper .cpc-row:has(.cpc-count:contains("(0)")) {
    display: none !important;
}

/* Safari fallback (no :has support) */
.cpc-wrapper .cpc-row .cpc-count[innerHTML="(0)"] {
    display: none !important;
}