/* WC Category Accordion - Frontend */
.wca {
  --wca-text: #005795;
  --wca-hover: #92C1E9;
  --wca-icon: #000000;
  --wca-count: #666666;
  font-size: 14px;
}

.wca .wca-list,
.wca .wca-sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wca .wca-item { margin: 0; }
.wca .wca-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.wca .wca-bullet {
  color: var(--wca-text);
  font-size: 18px;
  line-height: 1;
  flex: 0 0 14px;
}

.wca .wca-link {
  color: var(--wca-text);
  text-decoration: none;
  flex: 1;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.wca .wca-link:hover { color: var(--wca-hover); }

.wca .wca-count {
  color: var(--wca-count);
  font-weight: 700;
  margin-left: 10px;
  flex: 0 0 auto;
}

.wca .wca-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  flex: 0 0 22px;
  color: var(--wca-icon);
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.wca .wca-toggle--spacer { cursor: default; }

.wca .wca-sub { padding-left: 18px; }

/* Presets (layout only) */
.wca--preset-minimal .wca-row { border-bottom: 0; }
.wca--preset-boxed .wca-row { border-bottom: 1px solid rgba(0,0,0,0.08); }
.wca--preset-clean .wca-row { padding: 8px 0; }



.wca--preset-boxed .wca-row{
  background: var(--wca-boxed-bg);
}
.wca--preset-boxed .wca-row:hover{
  background: var(--wca-boxed-bg-hover);
}


/* Boxed style */
.wca--preset-boxed .wca-item{
  margin-bottom: 5px;
}
.wca--preset-boxed .wca-item:last-child{
  margin-bottom: 0;
}
.wca--preset-boxed .wca-row{
  background: var(--wca-boxed-bg);
  border-radius: var(--wca-boxed-radius, 6px);
  padding: 10px 12px;
}
.wca--preset-boxed .wca-row:hover{
  background: var(--wca-boxed-bg-hover);
}

/* Clean style (more compact) */
.wca--preset-clean .wca-row { padding: 6px 0; gap: 8px; }
.wca--preset-clean .wca-sub { padding-left: 14px; }


.wca .wca-accordion-title{font-weight:700;margin-bottom:8px;color:var(--wca-text);}
