<style>
  .page-products {
    --pg-orange: #E67E22;
    --pg-yellow: #F1C40F;
    --pg-teal: #16A085;
    --pg-purple: #8E44AD;
    --pg-ink: #2C3E50;
    --pg-forest: #1F4E3D;
    --pg-cream: #F5F0E6;
    --pg-sand: #E8E0D5;
    --pg-slate: #34495E;
    background: var(--pg-cream);
    color: var(--pg-ink);
    position: relative;
    overflow-x: clip;
  }
  .page-products img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }
  .page-products .container {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: 1rem;
  }
  .page-products .catalog-rail {
    position: absolute;
    left: 0;
    top: 6rem;
    width: 200px;
    opacity: .55;
    z-index: 0;
    display: none;
  }

  /* Hero */
  .page-products .catalog-hero {
    background: var(--pg-slate);
    color: #fff;
    position: relative;
    z-index: 1;
  }
  .page-products .catalog-hero-inner {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 1.8rem 1rem 2.2rem;
    display: grid;
    gap: 1rem;
  }
  .page-products .breadcrumbs {
    font-family: var(--font-mono);
    font-size: .82rem;
    color: rgba(255,255,255,.7);
    display: flex;
    gap: .4rem;
    align-items: center;
  }
  .page-products .breadcrumb-link {
    color: var(--pg-yellow);
    text-decoration: none;
  }
  .page-products .breadcrumb-sep {
    color: rgba(255,255,255,.5);
  }
  .page-products .catalog-hero h1 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.9rem, 5vw, 3rem);
    line-height: 1.2;
    margin: 0;
    color: #fff;
    letter-spacing: .02em;
  }
  .page-products .catalog-lead {
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 820px;
    color: rgba(255,255,255,.82);
  }
  .page-products .catalog-lead strong {
    color: var(--pg-yellow);
    font-weight: 700;
  }
  .page-products .catalog-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .55rem;
  }
  .page-products .stat-card {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    padding: .7rem .8rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: .2rem;
  }
  .page-products .stat-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--pg-yellow);
    line-height: 1;
  }
  .page-products .stat-name {
    font-size: .76rem;
    color: rgba(255,255,255,.72);
  }

  /* Section heads */
  .page-products .section-block {
    margin-top: 3.4rem;
    scroll-margin-top: 1rem;
  }
  .page-products .section-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .6rem;
    padding-bottom: .6rem;
    border-bottom: 4px solid var(--pg-ink);
    margin-bottom: 1.4rem;
  }
  .page-products .section-index {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .82rem;
    color: var(--pg-orange);
  }
  .page-products .section-title {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 0;
    color: var(--pg-ink);
  }
  .page-products .section-desc {
    font-size: .85rem;
    color: var(--pg-gray, #7F8C8D);
    font-family: var(--font-mono);
    margin-left: auto;
  }

  /* Tile matrix */
  .page-products .tile-grid.catalog-tile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .6rem;
  }
  .page-products .catalog-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: .2rem;
    min-height: 118px;
    border-radius: var(--radius);
    padding: .8rem .75rem;
    text-decoration: none;
    color: var(--pg-cream);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease;
    overflow: hidden;
  }
  .page-products .catalog-tile::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: var(--pg-yellow);
    opacity: .9;
  }
  .page-products .catalog-tile.tone-ink {
    background: linear-gradient(150deg, #2C3E50, #243342);
  }
  .page-products .catalog-tile.tone-forest {
    background: linear-gradient(150deg, #1F4E3D, #1a4234);
  }
  .page-products .catalog-tile:hover,
  .page-products .catalog-tile:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .page-products .tile-label {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
  }
  .page-products .tile-count {
    font-family: var(--font-mono);
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--pg-yellow);
  }
  .page-products .tile-unit {
    font-size: .72rem;
    color: rgba(255,255,255,.72);
    font-family: var(--font-mono);
    margin-top: .15rem;
  }
  .page-products .tile-preview {
    position: absolute;
    right: .5rem;
    top: .5rem;
    max-width: 170px;
    display: none;
    background: rgba(18, 22, 28, .94);
    color: #fff;
    padding: .5rem .6rem;
    border-radius: 4px;
    font-size: .72rem;
    line-height: 1.5;
    z-index: 3;
  }
  .page-products .catalog-tile:hover .tile-preview,
  .page-products .catalog-tile:focus .tile-preview {
    display: block;
  }
  .page-products .tile-preview b {
    display: block;
    margin-bottom: .2rem;
    color: var(--pg-yellow);
    font-family: var(--font-mono);
  }
  .page-products .tile-preview span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Subcategory tree */
  .page-products .catalog-split {
    display: grid;
    gap: 1.2rem;
  }
  .page-products .catalog-tree-img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-sm);
    background: var(--pg-sand);
  }
  .page-products .catalog-tree {
    display: grid;
    gap: .55rem;
  }
  .page-products .catalog-details {
    border-radius: var(--radius);
    background: var(--pg-cream);
  }
  .page-products .catalog-toggle {
    list-style: none;
    cursor: pointer;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .4rem .6rem;
    align-items: center;
    padding: .85rem .9rem;
    background: var(--pg-ink);
    color: #fff;
    border-radius: var(--radius);
    font-weight: 600;
  }
  .page-products .catalog-details.tone-forest .catalog-toggle {
    background: var(--pg-forest);
  }
  .page-products .catalog-toggle::-webkit-details-marker {
    display: none;
  }
  .page-products .catalog-details[open] .catalog-toggle {
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .page-products .cat-code {
    font-family: var(--font-mono);
    font-size: .78rem;
    color: var(--pg-yellow);
  }
  .page-products .cat-name {
    font-weight: 900;
    font-size: 1rem;
  }
  .page-products .cat-count {
    font-family: var(--font-mono);
    font-size: .8rem;
    color: rgba(255,255,255,.85);
  }
  .page-products .cat-count em {
    font-style: normal;
    font-weight: 900;
    color: var(--pg-yellow);
    font-size: 1.05rem;
  }
  .page-products .cat-subcount {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: rgba(255,255,255,.65);
  }
  .page-products .catalog-panel {
    background: var(--pg-sand);
    border: 1px solid rgba(44, 62, 80, .22);
    border-top: 0;
    border-radius: 0 0 var(--radius) var(--radius);
    padding: .4rem;
    display: grid;
    gap: .35rem;
  }
  .page-products .catalog-subrow {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .15rem .6rem;
    padding: .5rem .6rem;
    background: rgba(245, 240, 230, .8);
    border-radius: 4px;
    text-decoration: none;
    color: var(--pg-ink);
  }
  .page-products .catalog-subrow:hover {
    background: #fff;
    box-shadow: var(--shadow-sm);
  }
  .page-products .srow-name {
    font-weight: 600;
  }
  .page-products .srow-count {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: .82rem;
    color: var(--pg-orange);
  }
  .page-products .srow-period {
    font-family: var(--font-mono);
    font-size: .72rem;
    color: var(--pg-gray, #7F8C8D);
  }
  .page-products .status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .08rem .42rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 600;
    font-family: var(--font-mono);
    width: fit-content;
  }
  .page-products .badge-new {
    background: var(--pg-yellow);
    color: #1A1A1A;
  }
  .page-products .badge-updating {
    background: var(--pg-teal);
    color: #fff;
  }
  .page-products .badge-hot {
    background: var(--pg-purple);
    color: #fff;
  }
  .page-products .badge-archived {
    background: var(--pg-gray, #7F8C8D);
    color: #fff;
  }

  /* Table */
  .page-products .table-band {
    background: var(--pg-sand);
    border-radius: var(--radius);
    padding: 1rem .9rem 1.4rem;
    position: relative;
  }
  .page-products .table-deco-img {
    position: absolute;
    inset: auto 0 0 0;
    width: 100%;
    height: 100px;
    object-fit: cover;
    opacity: .18;
    pointer-events: none;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .page-products .catalog-table-wrap {
    position: relative;
    z-index: 1;
  }
  .page-products .table-scroll {
    overflow-x: auto;
    border-radius: var(--radius);
  }
  .page-products .data-table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
    background: var(--pg-cream);
  }
  .page-products .data-table th {
    position: sticky;
    top: 0;
    z-index: 3;
    background: var(--pg-slate);
    color: #fff;
    font-family: var(--font-mono);
    font-size: .82rem;
    text-align: left;
    padding: .7rem .8rem;
    white-space: nowrap;
  }
  .page-products .data-table td {
    padding: .62rem .8rem;
    border-bottom: 1px solid rgba(44, 62, 80, .12);
    font-size: .9rem;
    background: rgba(255,255,255,.6);
  }
  .page-products .data-table tbody tr:hover td {
    background: var(--pg-sand);
  }

  /* Tag cloud */
  .page-products .tag-band {
    background: var(--pg-forest);
    padding: 1.2rem .9rem 1.6rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }
  .page-products .tag-band .section-title {
    color: #fff;
  }
  .page-products .tag-band .section-desc {
    color: rgba(255,255,255,.75);
  }
  .page-products .tag-band .section-head {
    border-bottom-color: var(--pg-yellow);
  }
  .page-products .tagband-img {
    position: absolute;
    right: -1rem;
    bottom: -1rem;
    width: 55%;
    max-width: 420px;
    opacity: .16;
    pointer-events: none;
    transform: rotate(-3deg);
  }
  .page-products .catalog-tag-cloud {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: .4rem 0 0;
  }
  .page-products .tag-block {
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    color: #fff;
    border-radius: 999px;
    padding: .35rem .7rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background .15s ease, transform .15s ease;
  }
  .page-products .tag-block span {
    font-family: var(--font-mono);
    font-size: .72rem;
    margin-left: .2rem;
    color: var(--pg-yellow);
  }
  .page-products .tag-block:hover,
  .page-products .tag-block[data-active="true"] {
    background: var(--pg-orange);
    border-color: var(--pg-orange);
    color: #fff;
    transform: translateY(-1px);
  }
  .page-products .tag-all {
    background: var(--pg-yellow);
    border-color: var(--pg-yellow);
    color: #1A1A1A;
    font-weight: 900;
  }
  .page-products .tag-xl {
    font-size: 1.05rem;
    padding: .5rem 1rem;
  }
  .page-products .tag-l {
    font-size: .95rem;
  }
  .page-products .tag-m {
    font-size: .84rem;
  }

  /* Index strip */
  .page-products .index-band {
    background: var(--pg-ink);
    padding: 1.1rem .9rem 1.5rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }
  .page-products .index-band .section-title {
    color: #fff;
  }
  .page-products .index-band .section-desc {
    color: rgba(255,255,255,.75);
  }
  .page-products .indexband-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .1;
    object-fit: cover;
    pointer-events: none;
  }
  .page-products .strip-head {
    position: relative;
    z-index: 1;
    color: var(--pg-yellow);
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
    margin: 1rem 0 .45rem;
    letter-spacing: .08em;
  }
  .page-products .index-strip {
    position: relative;
    z-index: 1;
    display: flex;
    gap: .35rem;
    overflow-x: auto;
    padding-bottom: .3rem;
  }
  .page-products .index-item {
    flex: 0 0 auto;
    font-family: var(--font-mono);
    font-size: .82rem;
    font-weight: 700;
    min-width: 2.2rem;
    text-align: center;
    padding: .45rem .4rem;
    border-radius: 4px;
    background: rgba(255,255,255,.12);
    color: #fff;
    text-decoration: none;
  }
  .page-products .index-item:hover,
  .page-products .index-item.is-active {
    background: var(--pg-orange);
    color: #fff;
  }

  /* Path cards */
  .page-products .catalog-paths {
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  .page-products .path-card {
    display: grid;
    gap: .25rem;
    background: var(--pg-slate);
    color: #fff;
    padding: 1rem 1.1rem;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform .16s ease, box-shadow .16s ease;
  }
  .page-products .path-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .page-products .path-code {
    font-family: var(--font-mono);
    font-size: .74rem;
    color: var(--pg-yellow);
    font-weight: 700;
  }
  .page-products .path-name {
    font-weight: 900;
    font-size: 1.05rem;
  }
  .page-products .path-meta {
    font-size: .82rem;
    color: rgba(255,255,255,.7);
  }

  /* Desktop */
  @media (min-width: 860px) {
    .page-products .catalog-rail {
      display: block;
    }
    .page-products .catalog-hero-inner {
      padding: 2.6rem 1.5rem 3rem;
    }
    .page-products .catalog-stats {
      grid-template-columns: repeat(6, 1fr);
    }
    .page-products .section-block {
      margin-top: 4.2rem;
    }
    .page-products .tile-grid.catalog-tile-grid {
      grid-template-columns: repeat(12, 1fr);
      gap: .8rem;
    }
    .page-products .catalog-tile {
      grid-column: span 2;
      min-height: 140px;
    }
    .page-products .catalog-tile.lg {
      grid-column: span 4;
    }
    .page-products .catalog-tile.xl {
      grid-column: span 6;
      min-height: 170px;
    }
    .page-products .catalog-split {
      grid-template-columns: 360px 1fr;
      align-items: start;
    }
    .page-products .catalog-tree-img {
      position: sticky;
      top: 2rem;
    }
    .page-products .catalog-subrow {
      grid-template-columns: 1fr auto auto auto;
      align-items: center;
    }
    .page-products .srow-period {
      grid-column: auto;
    }
    .page-products .table-band {
      padding: 1.4rem 1.2rem 2rem;
    }
    .page-products .catalog-tag-cloud {
      gap: .65rem;
    }
    .page-products .catalog-paths {
      grid-template-columns: repeat(3, 1fr);
    }
  }
</style>
<<<PAGE_CSS_END>>>

.page-products {
  --pg-gray: transparent;
}
