/* Product category navigation beside secondary category results. */
.product-category-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:36px;align-items:start}
.product-category-results{min-width:0}
.category-sidebar{min-width:0;position:sticky;top:24px}
.category-sidebar__panel{border:1px solid var(--line);border-top:3px solid var(--accent);border-radius:var(--radius);background:white;padding:24px 18px 18px}
.category-sidebar__heading{font-size:22px;line-height:1.3;margin:0 0 20px;padding-inline:10px}
.category-sidebar__toggle{display:none}
.category-sidebar__list,.category-sidebar__children{list-style:none;margin:0;padding:0}
.category-sidebar__list>li+li{margin-top:20px}
.category-sidebar__root{display:block;color:var(--ink);font-weight:700;font-size:16px;line-height:1.5;padding:10px 12px 14px;border-bottom:1px solid var(--line)}
.category-sidebar__children{margin-top:10px}
.category-sidebar__children li+li{margin-top:5px}
.category-sidebar__children a{display:block;font-size:15px;line-height:1.55;color:var(--ink);padding:12px 12px 12px 14px;border-left:3px solid transparent;overflow-wrap:break-word;border-radius:0 3px 3px 0}
.category-sidebar a:hover{background:var(--mist);color:var(--accent);text-decoration:none}
.category-sidebar a[aria-current="page"]{background:#e5f2f2;color:var(--accent);border-left-color:var(--accent);font-weight:700}
.category-sidebar a:focus-visible,.category-sidebar__toggle:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.product-category-results .section-heading--split{flex-wrap:wrap;gap:16px 24px;margin-bottom:28px}
.product-category-results .section-heading--split h2{margin:0}
.product-category-results .section-heading--split .search-form{flex:1 1 290px;margin:0}
.product-category-results .purchase-tip{flex-wrap:wrap;gap:20px}
@media(max-width:1250px){
  .product-category-layout{grid-template-columns:260px minmax(0,1fr);gap:28px}
  .product-category-results .product-grid{grid-template-columns:1fr}
  .product-category-results .section-heading--split{display:block}
  .product-category-results .section-heading--split .search-form{margin-top:20px;max-width:none}
}
@media(max-width:900px){
  .product-category-layout{grid-template-columns:1fr;gap:30px}
  .category-sidebar{position:static}
  .category-sidebar__panel{padding:20px 64px 20px 18px}
  .category-sidebar.is-enhanced .category-sidebar__heading{display:none}
  .category-sidebar.is-enhanced .category-sidebar__toggle{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;padding:0;border:0;background:transparent;color:var(--ink);font-family:inherit;font-size:19px;font-weight:700;line-height:1.4;text-align:left;cursor:pointer}
  .category-sidebar__toggle svg{width:20px;height:20px;flex-shrink:0;fill:none;stroke:currentColor;stroke-width:1.8}
  .category-sidebar__toggle[aria-expanded="true"] svg{transform:rotate(180deg)}
  .category-sidebar.is-enhanced .category-sidebar__nav:not([hidden]){padding-top:18px}
}
@media(max-width:520px){
  .product-category-layout{gap:26px}
  .category-sidebar__panel{padding:18px 48px 18px 14px}
  .category-sidebar__children a{font-size:16px}
}

/* Counts reflect published products in the current language, including children. */
.category-sidebar .category-sidebar__root,.category-sidebar .category-sidebar__children a{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:start;gap:10px}
.category-sidebar__name{min-width:0}
.category-sidebar__count{font-size:13px;font-weight:700;line-height:1.5;padding:2px 7px;min-width:27px;text-align:center;white-space:nowrap;color:var(--muted);background:var(--mist);border-radius:3px}
.category-sidebar a[aria-current="page"] .category-sidebar__count{background:var(--accent);color:white}
