/** Shopify CDN: Minification failed

Line 57:44 Unexpected "("
Line 57:186 Unterminated string token

**/
.collection-only-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: #f0f4f7;
  border: 1px solid #c5d4de;
  border-left: 3px solid #507998;
  border-radius: 2px;
  padding: 12px 16px;
  margin: 16px 0;
  line-height: 1.5;
}

.collection-only-notice__icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: #507998;
}

.collection-only-notice__title {
  margin: 0;
  font-weight: 600;
  color: #301011;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.collection-only-notice__text {
  margin: 4px 0 0 0;
  color: #507998;
  font-size: 0.875rem;
}

.collection-only-notice__text a {
  color: #301011;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 500;
}

.collection-only-notice__text a:hover {
  color: #507998;
}
.wt-blog__read button {
    margin-top: 0;
    margin-bottom: 0;
    padding: 8px 8px;
}
Looking at the rendered output, the parents (Seating, Tables etc.) and children (Armchairs, Bar Stools etc.) are near-identical in visual weight. Here's targeted CSS to fix that cleanly:
css/* Parent group labels — elevated, heading-style */
.wt-page-nav-mega__sublist__link--parent .wt-page-nav-mega__decorated {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #507998; /* Xshowhome steel blue */
}

/* Remove underline hover behaviour on parents */
.wt-page-nav-mega__sublist__link--parent:hover .wt-page-nav-mega__decorated::after {
  display: none;
}

/* Add spacing above each parent group (except first) */
.wt-page-nav-mega__sublist__item--child + .wt-page-nav-mega__sublist__item--child {
  margin-top: 8px;
}

/* Child items — slightly muted, standard size */
.wt-page-nav-mega__sublist__item--grandchild .wt-page-nav-mega__decorated {
  font-size: 14px;
  font-weight: 400;
  color: #4a4a4a;
  letter-spacing: 0.01em;
}

/* Child hover — dark, not blue */
.wt-page-nav-mega__sublist__item--grandchild a:hover .wt-page-nav-mega__decorated {
  color: #301011;
}

/* Suppress the expand arrow on parents — they're section headers, not drilldowns */
.wt-page-nav-mega__sublist__link--parent .svg-icon--plus,
.wt-page-nav-mega__sublist__link--parent .svg-icon--arrow-right {
  display: none;
}
/* Find and remove/override whatever is hiding the icon on mobile */
@media (max-width: 768px) {
  .wt-page-nav-mega__sublist__link--parent .svg-icon--plus {
    display: block; /* force it visible */
    width: 16px;
    height: 16px;
  }
  
  /* Make the parent row flex so icon sits on the right */
  .wt-page-nav-mega__sublist__link--parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}