.preview-frame { transition: none; }

.taxonomy-intro h1 { max-width: 11ch; }

.taxonomy-intro .taxonomy-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted);
}
.taxonomy-breadcrumb a { color: inherit; text-decoration: none; }
.taxonomy-breadcrumb a:hover { color: var(--signal); }
.taxonomy-breadcrumb a:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }
.taxonomy-breadcrumb [aria-current="page"] { color: var(--ink); }

.catalog-range-links.taxonomy-range-links {
  display: grid;
  grid-template-columns: minmax(112px, .9fr) repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 0 18px;
  margin: 0;
  padding: 12px clamp(24px, 6cqw, 80px);
  border-color: var(--line);
  color: var(--ink);
  background: var(--paper);
}

.catalog-range-links.taxonomy-range-links > span {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.catalog-range-links.taxonomy-range-links > a {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: .69rem;
  font-weight: 650;
  line-height: 1.35;
  text-decoration: none;
}

.catalog-range-links.taxonomy-range-links > a::after { content: "↗"; color: var(--signal); }
.catalog-range-links.taxonomy-range-links > a:hover { color: var(--signal); }
.catalog-range-links.taxonomy-range-links > a:focus-visible { outline: 2px solid var(--signal); outline-offset: 4px; }

.taxonomy-catalog {
  grid-template-columns: clamp(268px, 24cqw, 348px) minmax(0, 1fr);
  min-height: 900px;
}

.taxonomy-catalog .hybrid-catalog__rail {
  position: sticky;
  top: 78px;
  min-height: 760px;
  padding: clamp(22px, 2.4cqw, 34px) clamp(16px, 1.8cqw, 26px) 32px;
  background: #ebe8de;
}

.taxonomy-tree {
  --taxonomy-ease: cubic-bezier(.22, .61, .36, 1);
  --taxonomy-motion: 200ms;
  display: grid;
  border-bottom: 1px solid var(--line);
}

.taxonomy-tree__family { border-top: 1px solid var(--line); }

.taxonomy-tree__family > .directory-tab > em {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.taxonomy-tree__family > .directory-tab > em::after {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translate(-1px, 1px);
  transform-origin: center;
  transition: transform var(--taxonomy-motion) var(--taxonomy-ease);
}

.taxonomy-tree__family.is-open > .directory-tab > em::after,
.taxonomy-tree__family > .directory-tab[aria-expanded="true"] > em::after {
  transform: rotate(225deg) translate(-1px, 1px);
}

.taxonomy-tree .directory-tab {
  width: 100%;
  min-height: 66px;
  padding: 9px 8px;
  border-top: 0;
  transition: color var(--taxonomy-motion) var(--taxonomy-ease), background-color var(--taxonomy-motion) var(--taxonomy-ease);
}

.taxonomy-tree .directory-tab::before { transition: transform var(--taxonomy-motion) var(--taxonomy-ease); }
.taxonomy-tree .directory-tab > span,
.taxonomy-tree .directory-tab > em { transition: color var(--taxonomy-motion) var(--taxonomy-ease); }
.taxonomy-tree .directory-tab:is(:hover, .is-active) { padding-left: 8px; }
.taxonomy-tree__family:not(.is-active) > .directory-tab:hover { background: rgba(255, 255, 255, .28); }

.taxonomy-tree .directory-tab:last-child { border-bottom: 0; }

.taxonomy-tree__family.is-active > .directory-tab {
  color: #f8f4ea;
  background: var(--ink);
}

.taxonomy-tree__family.is-active > .directory-tab::before { transform: scaleY(1); }

.taxonomy-tree__family.is-active > .directory-tab > span,
.taxonomy-tree__family.is-active > .directory-tab > em { color: #ff9b7f; }

.taxonomy-tree__categories {
  display: grid;
  padding: 5px 0 9px;
  background: rgba(255, 255, 255, .36);
}

.taxonomy-tree.is-interactive .taxonomy-tree__categories {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  visibility: hidden;
  pointer-events: none;
  transition: max-height var(--taxonomy-motion) var(--taxonomy-ease), padding var(--taxonomy-motion) var(--taxonomy-ease), visibility 0s linear var(--taxonomy-motion);
}

.taxonomy-tree.is-interactive .taxonomy-tree__family.is-open > .taxonomy-tree__categories {
  max-height: var(--taxonomy-panel-height, 320px);
  padding: 5px 0 9px;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.taxonomy-tree__categories button {
  display: grid;
  width: 100%;
  min-height: 46px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 0;
  border-bottom: 1px solid rgba(23, 25, 22, .09);
  color: var(--ink);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color var(--taxonomy-motion) var(--taxonomy-ease), background-color var(--taxonomy-motion) var(--taxonomy-ease);
}

.taxonomy-tree__categories button:last-child { border-bottom: 0; }

.taxonomy-tree__categories button > span,
.taxonomy-tree__categories button > em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: .51rem;
  font-style: normal;
}

.taxonomy-tree__categories button strong {
  font-size: clamp(.63rem, .74cqw, .74rem);
  line-height: 1.3;
}

.taxonomy-tree__categories button:is(:hover, .is-active) {
  color: var(--signal);
  background: rgba(255, 255, 255, .72);
}

.taxonomy-tree__categories button > em { transition: color var(--taxonomy-motion) var(--taxonomy-ease), transform var(--taxonomy-motion) var(--taxonomy-ease); }
.taxonomy-tree__categories button.is-active > em { color: var(--signal); transform: translateX(2px); }

.taxonomy-stage {
  min-width: 0;
  padding: clamp(28px, 3.4cqw, 52px);
  background: var(--paper-soft);
}

.taxonomy-family-head {
  margin-bottom: 12px;
  padding-bottom: 22px;
}

.taxonomy-family-head h2 { max-width: 24ch; }

.taxonomy-family-head__actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.taxonomy-family-head__actions > span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, .42);
  font-family: var(--mono);
  font-size: .58rem;
  font-weight: 700;
  white-space: nowrap;
}

.taxonomy-family-head__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .045em;
  line-height: 1.4;
  text-decoration: none;
  text-transform: uppercase;
}

.taxonomy-family-head__link span {
  color: var(--signal);
  transition: transform 180ms var(--taxonomy-ease);
}

.taxonomy-family-head__link:is(:hover, :focus-visible) span { transform: translate(2px, -2px); }

.taxonomy-stage__path {
  margin: 0 0 clamp(20px, 2.4cqw, 34px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.55;
  text-transform: uppercase;
}

.taxonomy-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: clamp(12px, 1.35cqw, 19px);
  padding: 0;
}

.taxonomy-product-grid[data-count="1"] { grid-template-columns: minmax(0, 380px); }
.taxonomy-product-grid[data-count="2"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.taxonomy-product-card {
  min-height: clamp(350px, 27cqw, 410px);
  grid-template-rows: minmax(185px, 1fr) auto;
  animation: taxonomy-product-in 180ms ease-out both;
  transition: transform 160ms ease-out, box-shadow 160ms ease-out, opacity 120ms ease-out;
}

@keyframes taxonomy-product-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: none; }
}

.taxonomy-product-card figure {
  position: relative;
  display: grid;
  min-height: 185px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .96), rgba(255, 255, 255, .18) 64%),
    #d6d2c8;
}

.taxonomy-product-card figure img {
  width: 100%;
  height: 100%;
  padding: clamp(12px, 1.4cqw, 22px);
  object-fit: contain;
  object-position: center;
  transition: transform 180ms ease-out;
}

.taxonomy-product-card[data-category="gn-pc"] figure { background: #b9bab4; }
.taxonomy-product-card[data-category="gn-pc"] figure img {
  filter: brightness(.72) contrast(2.15) saturate(.7);
}

.taxonomy-product-card figure[data-catalog-reference] img {
  padding: 0;
  object-fit: cover;
  object-position: 50% 18%;
}

.taxonomy-product-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 185px;
  place-items: center;
  padding: 24px;
  color: #7a7a72;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(217, 78, 43, .14) 46% 54%, transparent 54%),
    repeating-linear-gradient(-45deg, rgba(23, 25, 22, .035) 0 7px, transparent 7px 14px),
    #e2dfd5;
  font-family: var(--mono);
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
}

.taxonomy-product-card > div {
  display: grid;
  min-height: 150px;
  align-content: start;
  padding: 18px 19px 17px;
}

.taxonomy-product-card p {
  margin: 0 0 9px;
  color: var(--signal);
  font-family: var(--mono);
  font-size: .53rem;
  font-weight: 700;
  letter-spacing: .045em;
  line-height: 1.45;
  text-transform: uppercase;
}

.taxonomy-product-card h3 {
  min-height: 2.55em;
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(.98rem, 1.3cqw, 1.32rem);
  letter-spacing: -.028em;
  line-height: 1.16;
}

.taxonomy-product-card button {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: .62rem;
  font-weight: 700;
  cursor: pointer;
}

.taxonomy-product-card button span { color: var(--signal); transition: transform 200ms var(--ease); }
.taxonomy-product-card button:hover span { transform: translateX(4px); }

.taxonomy-product-card.is-standard-product-card {
  min-height: 0;
  align-self: start;
  grid-template-rows: auto auto;
  border-color: rgba(23, 25, 22, .16);
}

.taxonomy-product-card.is-standard-product-card figure {
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.taxonomy-product-card.is-standard-product-card figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.taxonomy-product-card.is-standard-product-card:is(:hover, :focus-within) figure img { transform: none; }
.taxonomy-product-card.is-standard-product-card[data-category="gn-pc"] figure img { filter: none; }

.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__placeholder {
  min-height: 0;
}

.taxonomy-product-card.is-standard-product-card > .taxonomy-product-card__body {
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto auto;
  align-content: start;
  padding: 14px 14px 15px;
}

.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(23, 25, 22, .11);
}

.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__code {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--signal);
  font-family: var(--mono);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.taxonomy-product-card__status {
  flex: 0 0 auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .46rem;
  font-weight: 700;
  letter-spacing: .025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__title {
  min-height: 0;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(.92rem, 1.08cqw, 1.12rem);
  letter-spacing: -.028em;
  line-height: 1.12;
}

.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__action {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 25, 22, .11);
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  text-decoration: none;
}
.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__action span {
  color: var(--signal);
  transition: transform 200ms var(--ease);
}
.taxonomy-product-card.is-standard-product-card .taxonomy-product-card__action:hover span { transform: translateX(4px); }

.taxonomy-product-card.is-gn-spec {
  overflow: hidden;
  min-height: 0;
  grid-template-rows: 188px auto;
  border-color: rgba(23, 25, 22, .16);
}

.taxonomy-product-card.is-gn-spec figure {
  min-height: 188px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, .98), rgba(255, 255, 255, .24) 61%, transparent 62%),
    #d8d4ca;
}

.taxonomy-product-card.is-gn-spec figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  padding: 15px 18px 12px;
  object-fit: contain;
  object-position: center;
  transform: scale(var(--gn-image-scale, 1));
}
.taxonomy-product-card.is-gn-spec[data-gn-format="1/1"] { --gn-image-scale: 1.55; }
.taxonomy-product-card.is-gn-spec[data-gn-format="1/2"] { --gn-image-scale: 1.9; }
.taxonomy-product-card.is-gn-spec[data-gn-format="1/3"] { --gn-image-scale: 1.1; }
.taxonomy-product-card.is-gn-spec[data-gn-format="1/4"] { --gn-image-scale: 1.1; }
.taxonomy-product-card.is-gn-spec[data-gn-format="1/6"] { --gn-image-scale: 1.5; }
.taxonomy-product-card.is-gn-spec[data-gn-format="1/9"] { --gn-image-scale: 1.55; }
.taxonomy-product-card.is-gn-spec[data-gn-format="2/1"] { --gn-image-scale: 1.33; }
.taxonomy-product-card.is-gn-spec[data-gn-format="2/3"] { --gn-image-scale: 1.4; }
.taxonomy-product-card.is-gn-spec:is(:hover, :focus-within) figure img {
  transform: scale(var(--gn-image-scale, 1));
  filter: brightness(1.025);
}

.taxonomy-product-card.is-gn-spec > div {
  min-height: 218px;
  padding: 17px 18px 18px;
}

.taxonomy-product-card.is-gn-spec h3 {
  min-height: 0;
  margin-bottom: 12px;
}

.gn-card__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.gn-card__summary > span {
  padding: 5px 7px;
  border: 1px solid rgba(23, 25, 22, .11);
  color: #5f615b;
  background: rgba(255, 255, 255, .56);
  font-family: var(--mono);
  font-size: .47rem;
  font-weight: 700;
  line-height: 1.35;
}

.gn-card__summary .gn-card__shared-count {
  border-color: rgba(53, 94, 85, .25);
  color: #355e55;
  background: #d9e8e3;
}

.gn-card__available-depths {
  display: grid;
  gap: 7px;
  margin: 1px 0 17px;
}

.gn-card__available-depths > p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .47rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.gn-card__depth-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gn-card__depth-list > span {
  padding: 6px 8px;
  border: 1px solid rgba(23, 25, 22, .14);
  color: var(--ink);
  background: rgba(255, 255, 255, .72);
  font-family: var(--mono);
  font-size: .52rem;
  font-weight: 750;
  line-height: 1;
}

.gn-card__depth-list > .is-shared {
  border-color: rgba(53, 94, 85, .34);
  background: #d9e8e3;
}

.taxonomy-product-grid.is-gn-depth-view {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3cqw, 36px);
}

.gn-format-group {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding-top: 2px;
}

.gn-format-group + .gn-format-group {
  padding-top: clamp(22px, 3cqw, 34px);
  border-top: 1px solid var(--line);
}

.gn-format-group__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.gn-format-group__head > div { display: grid; gap: 4px; }
.gn-format-group__head p {
  margin: 0;
  color: var(--signal);
  font-family: var(--mono);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gn-format-group__head h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4cqw, 2rem);
  letter-spacing: -.045em;
  line-height: .95;
}
.gn-format-group__head > span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, .52);
  font-family: var(--mono);
  font-size: .48rem;
  font-weight: 700;
  line-height: 1.3;
}

.gn-format-group__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.taxonomy-product-card.is-gn-depth-card {
  min-height: 0;
  grid-template-rows: 154px auto;
}

.taxonomy-product-card.is-gn-depth-card figure { min-height: 154px; }
.taxonomy-product-card.is-gn-depth-card figure img { padding: 9px 11px 7px; }
.taxonomy-product-card.is-gn-depth-card > div {
  min-height: 142px;
  padding: 14px 14px 15px;
}
.taxonomy-product-card.is-gn-depth-card .gn-depth-card__identity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 11px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(23, 25, 22, .11);
  color: inherit;
  line-height: 1;
  text-transform: none;
}
.gn-depth-card__identity > span:first-child {
  color: var(--signal);
  font-family: var(--mono);
  font-size: .5rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.gn-depth-card__identity > span:last-child {
  overflow: hidden;
  color: var(--muted);
  font-family: var(--mono);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.taxonomy-product-card.is-gn-depth-card h4 {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 0 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.7cqw, 2rem);
  letter-spacing: -.05em;
  line-height: .9;
}
.taxonomy-product-card.is-gn-depth-card h4::after {
  color: var(--muted);
  content: "DEPTH";
  font-family: var(--mono);
  font-size: .48rem;
  font-weight: 800;
  letter-spacing: .09em;
}

.gn-depth-card__link {
  color: inherit;
  text-decoration: none;
}

.gn-depth-card__link::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
}

.gn-depth-card__link:focus-visible { outline: none; }
.taxonomy-product-card.is-gn-depth-card:has(.gn-depth-card__link:focus-visible) {
  outline: 3px solid var(--signal);
  outline-offset: -3px;
}

.taxonomy-product-card.is-gn-depth-card.is-shared-depth {
  border-color: rgba(53, 94, 85, .34);
}

.gn-depth-card__meta {
  display: flex;
  min-height: 24px;
  align-items: center;
  flex-wrap: wrap;
  align-content: start;
  gap: 5px;
  margin-bottom: 9px;
}
.gn-depth-card__meta > span {
  padding: 0;
  border: 0;
  color: #5f615b;
  background: transparent;
  font-family: var(--mono);
  font-size: .48rem;
  font-weight: 700;
  line-height: 1.25;
}
.gn-depth-card__meta > .gn-depth-card__shared {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  color: #355e55;
}
.gn-depth-card__shared::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #5c8c80;
  content: "";
}

.taxonomy-product-card.is-gn-depth-card .gn-card__toggle {
  position: relative;
  z-index: 2;
  width: 100%;
  justify-content: space-between;
  margin-top: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(23, 25, 22, .11);
  color: var(--ink);
}

.gn-depth-card__details {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 13px -14px -15px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--line);
  background: rgba(235, 232, 222, .55);
  animation: gn-spec-details-in 180ms ease-out both;
}

.gn-depth-card__details[hidden] { display: none; }
.gn-depth-card__thickness {
  display: grid;
  gap: 2px;
  min-width: 64px;
  padding: 7px 8px;
  border: 1px solid rgba(23, 25, 22, .11);
  color: var(--ink);
  background: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}
.gn-depth-card__thickness:is(:hover, :focus-visible) {
  border-color: var(--signal);
  background: var(--paper-light);
  outline: none;
  transform: translateY(-1px);
}
.gn-depth-card__thickness.is-shared {
  border-color: rgba(53, 94, 85, .28);
  background: #d9e8e3;
}
.gn-depth-card__thickness strong { font-family: var(--display); font-size: .7rem; line-height: 1; }
.gn-depth-card__thickness small { color: var(--muted); font-family: var(--mono); font-size: .42rem; font-weight: 700; }

.taxonomy-product-card .gn-card__toggle { color: var(--ink); }
.taxonomy-product-card .gn-card__toggle span {
  display: inline-block;
  transition: transform 180ms var(--ease);
}
.taxonomy-product-card.is-expanded .gn-card__toggle span { transform: rotate(180deg); }
.taxonomy-product-card.is-expanded .gn-card__toggle:hover span { transform: rotate(180deg) translateY(3px); }

.gn-card__details {
  margin: 16px -18px -18px;
  border-top: 1px solid var(--line);
  background: rgba(235, 232, 222, .55);
  animation: gn-spec-details-in 180ms ease-out both;
}

@keyframes gn-spec-details-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: none; }
}

.gn-card__spec-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(23, 25, 22, .09);
}

.gn-card__thickness { display: grid; align-content: start; gap: 3px; }
.gn-card__thickness strong { font-family: var(--display); font-size: .76rem; }
.gn-card__thickness small { color: var(--muted); font-family: var(--mono); font-size: .44rem; font-weight: 700; }

.gn-card__depths { display: flex; flex-wrap: wrap; align-content: start; gap: 5px; }
.gn-card__depths > span {
  padding: 4px 6px;
  border: 1px solid rgba(23, 25, 22, .1);
  color: #555750;
  background: rgba(255, 255, 255, .65);
  font-family: var(--mono);
  font-size: .44rem;
  font-weight: 700;
  line-height: 1.25;
}
.gn-card__depths > .is-shared {
  border-color: rgba(53, 94, 85, .24);
  color: #355e55;
  background: #d9e8e3;
}

.gn-card__shared-note {
  margin: 0;
  padding: 11px 14px 13px;
  color: #355e55 !important;
  background: rgba(217, 232, 227, .5);
  font-family: var(--body) !important;
  font-size: .58rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

.taxonomy-product-card.is-selected {
  outline: 2px solid var(--signal);
  outline-offset: -2px;
  transform: translateY(-3px);
}

.taxonomy-product-card.is-request-only {
  background:
    repeating-linear-gradient(-45deg, rgba(23, 25, 22, .018) 0 8px, transparent 8px 16px),
    var(--paper);
}

.taxonomy-stage__audit {
  margin: clamp(18px, 2cqw, 26px) 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--signal);
  color: #585a54;
  background: #e8e4d8;
  font-size: .68rem;
  line-height: 1.65;
}

.taxonomy-stage__audit strong { color: var(--signal); }
.taxonomy-source-data { display: none !important; }
.taxonomy-explanation h2 { max-width: 20ch; }

@container preview (max-width: 1140px) {
  .taxonomy-catalog { grid-template-columns: clamp(245px, 29cqw, 285px) minmax(0, 1fr); }
  .taxonomy-catalog .hybrid-catalog__rail { position: sticky; top: 74px; min-height: 700px; }
  .taxonomy-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .taxonomy-product-card { min-height: 350px; }
}

@container preview (max-width: 980px) {
  .taxonomy-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@container preview (min-width: 901px) {
  .gn-format-group__grid { grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .gn-format-group__grid > .is-gn-depth-card { grid-column: span 2; }
}

@container preview (max-width: 900px) {
  .taxonomy-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gn-format-group__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gn-format-group__grid > .is-gn-depth-card { grid-column: auto; }
}

@container preview (max-width: 760px) {
  .catalog-range-links.taxonomy-range-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 16px;
    padding: 14px 18px;
  }
  .catalog-range-links.taxonomy-range-links > span { grid-column: 1 / -1; padding-bottom: 6px; }
  .catalog-range-links.taxonomy-range-links > a { min-height: 40px; font-size: .66rem; }
  .taxonomy-catalog { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .taxonomy-catalog .hybrid-catalog__rail {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 20px 18px 24px;
    border-right: 0;
  }
  .taxonomy-catalog .directory-search { max-width: none; }
  .taxonomy-catalog .directory-search-results { top: 96px; right: 18px; left: 18px; width: auto; }
  .taxonomy-tree { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; border: 0; }
  .taxonomy-tree__family { border: 1px solid var(--line); }
  .taxonomy-tree__family.is-open { grid-column: 1 / -1; }
  .taxonomy-tree .directory-tab { min-height: 62px; border: 0; }
  .taxonomy-tree .directory-tab::before { inset: auto 0 0; width: auto; height: 3px; transform: scaleX(0); }
  .taxonomy-tree__family.is-active > .directory-tab::before { transform: scaleX(1); }
  .taxonomy-tree__categories { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 7px 10px 10px; }
  .taxonomy-tree.is-interactive .taxonomy-tree__family.is-open > .taxonomy-tree__categories { padding: 7px 10px 10px; }
  .taxonomy-tree__categories button { min-height: 50px; border: 1px solid rgba(23, 25, 22, .09); }
  .taxonomy-stage { padding: 28px 18px 38px; }
}

@container preview (max-width: 620px) {
  .taxonomy-tree { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .taxonomy-tree__family {
    max-height: 76px;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transition: max-height var(--taxonomy-motion) var(--taxonomy-ease), opacity var(--taxonomy-motion) var(--taxonomy-ease), border-color var(--taxonomy-motion) var(--taxonomy-ease), visibility 0s linear 0s;
  }
  .taxonomy-tree.has-open-family { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .taxonomy-tree.has-open-family > .taxonomy-tree__family:not(.is-open) {
    display: block;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    border-color: transparent;
    pointer-events: none;
    transition-delay: 0s, 0s, 0s, var(--taxonomy-motion);
  }
  .taxonomy-tree__family.is-open { max-height: var(--taxonomy-family-open-height, 260px); grid-column: auto; }
  .taxonomy-tree .directory-tab {
    min-height: 76px;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 7px;
    padding: 10px 8px;
  }
  .taxonomy-tree__family.is-open > .directory-tab strong::after {
    display: block;
    margin-top: 4px;
    color: #aaa79e;
    content: "Tap to view all families";
    font-family: var(--mono);
    font-size: .47rem;
    font-weight: 600;
    letter-spacing: .025em;
    line-height: 1.35;
  }
  .taxonomy-tree__categories {
    grid-template-columns: none;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .taxonomy-tree.is-interactive .taxonomy-tree__categories,
  .taxonomy-tree.is-interactive .taxonomy-tree__family.is-open > .taxonomy-tree__categories { display: flex; }
  .taxonomy-tree__categories button {
    flex: 0 0 min(82%, 280px);
    scroll-snap-align: start;
  }
  .taxonomy-family-head { grid-template-columns: minmax(0, 1fr); gap: 15px; }
  .taxonomy-family-head h2 { font-size: 1.8rem; }
  .taxonomy-family-head__actions { justify-items: start; }
  .taxonomy-family-head__actions > span { width: max-content; }
  .taxonomy-product-grid { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .taxonomy-product-grid[data-count] { grid-template-columns: minmax(0, 1fr); }
  .gn-format-group__head { align-items: start; }
  .gn-format-group__head > span { max-width: 48%; text-align: right; }
  .gn-format-group__grid {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding-bottom: 8px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }
  .gn-format-group__grid > .is-gn-depth-card {
    flex: 0 0 min(82%, 280px);
    scroll-snap-align: start;
  }
  .taxonomy-product-card {
    min-height: 0;
    grid-template-columns: 40% minmax(0, 1fr);
    grid-template-rows: minmax(160px, auto);
  }
  .taxonomy-product-card figure,
  .taxonomy-product-card__placeholder { min-height: 160px; }
  .taxonomy-product-card figure img { padding: 9px; }
  .taxonomy-product-card > div { min-height: 160px; padding: 15px 14px; }
  .taxonomy-product-card h3 { min-height: 0; margin-bottom: 14px; font-size: .98rem; }
  .taxonomy-product-card button { font-size: .58rem; }
  .taxonomy-product-card.is-standard-product-card {
    grid-template-columns: 40% minmax(0, 1fr);
    grid-template-rows: minmax(132px, auto);
  }
  .taxonomy-product-card.is-standard-product-card figure { min-height: 0; aspect-ratio: auto; }
  .taxonomy-product-card.is-standard-product-card .taxonomy-product-card__placeholder { min-height: 0; }
  .taxonomy-product-card.is-standard-product-card > .taxonomy-product-card__body {
    min-height: 0;
    padding: 14px;
  }
  .taxonomy-product-card.is-standard-product-card .taxonomy-product-card__title {
    min-height: 0;
    font-size: .98rem;
  }
  .taxonomy-product-card.is-gn-spec {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 196px auto;
  }
  .taxonomy-product-card.is-gn-depth-card {
    grid-template-rows: 178px auto;
  }
  .taxonomy-product-card.is-gn-spec figure { min-height: 196px; }
  .taxonomy-product-card.is-gn-spec figure img { padding: 10px 12px 8px; }
  .taxonomy-product-card.is-gn-spec > div { min-height: 0; padding: 16px 15px; }
  .taxonomy-product-card.is-gn-depth-card figure { min-height: 178px; }
  .taxonomy-product-card.is-gn-depth-card figure img { padding: 9px 11px 7px; }
  .taxonomy-product-card.is-gn-depth-card > div { min-height: 145px; padding: 14px 14px 15px; }
  .gn-card__details { margin: 15px -15px -16px; }
}

@media (max-width: 660px) {
  .hybrid-toolbar .review-toolbar__identity { min-width: 0; }
  .hybrid-toolbar .review-toolbar__identity strong {
    font-size: .76rem;
    line-height: 1.35;
  }
  .hybrid-toolbar .review-toolbar__kicker {
    font-size: .47rem;
    letter-spacing: .075em;
    line-height: 1.45;
  }
  .taxonomy-review-note > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preview-frame,
  .taxonomy-tree__family,
  .taxonomy-tree__categories,
  .taxonomy-tree__categories button,
  .taxonomy-product-card,
  .taxonomy-product-card::after,
  .taxonomy-product-card figure img,
  .directory-tab,
  .directory-tab::before,
  .taxonomy-tree__family > .directory-tab > em::after { animation: none !important; transition: none !important; }
}

.customer-page {
  overflow-x: hidden;
  background: var(--paper);
}

.customer-page .preview-frame,
.customer-page .preview-frame[data-viewport="tablet"],
.customer-page .preview-frame[data-viewport="mobile"] {
  width: 100%;
  max-width: none;
  margin: 0;
  scroll-margin-top: 0;
}

.customer-page .preview-shell {
  min-height: 100vh;
  overflow: visible;
  background: var(--paper);
  box-shadow: none;
}

.customer-page .site-nav {
  position: sticky;
  top: 0;
}
