/* ==========================================================================
   PRODUCTS PAGE
   ========================================================================== */

.products-toolbar {
  position: sticky;
  top: 65px;
  z-index: 40;
  background: rgba(247,246,243,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
  padding-block: var(--sp-3);
}
.products-toolbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.products-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.colourway {
  padding-block: var(--sp-7);
  border-bottom: 1px solid var(--line-soft);
  scroll-margin-top: 130px;
}
.colourway:last-of-type { border-bottom: 0; }

.colourway__head {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-5);
  align-items: end;
}
@media (max-width: 860px) {
  .colourway__head { grid-template-columns: 1fr; }
}
.colourway__hero {
  border-radius: var(--radius-m);
  overflow: hidden;
  aspect-ratio: 5/4;
}
.colourway__hero img { width: 100%; height: 100%; object-fit: cover; }
.colourway__info h2 { margin-top: var(--sp-2); }
.colourway__info p { color: var(--text-muted); margin-top: var(--sp-3); max-width: 54ch; }

.variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.size-note {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-body-s);
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}
.size-note svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

[hidden] { display: none !important; }
