/* ── Products page filter chips + flat grid ── */
.filter-bar {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin-block-end: 2.5rem; align-items: center;
}
.filter-bar__label {
  font-size: 0.85rem; color: var(--muted-2);
  font-family: var(--ff-en); font-style: italic;
  margin-inline-end: 0.8rem;
}
.chip {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.88rem; font-weight: 600;
  color: var(--muted); cursor: pointer;
  transition: 0.2s;
}
.chip:hover { border-color: var(--gold); color: var(--navy); }
.chip.is-active { background: var(--navy); color: var(--gold-2); border-color: var(--navy); }

/* ── Section detail: product cards ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: 0.25s;
  position: relative;
  overflow: hidden;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.product-card__media {
  aspect-ratio: 4 / 3;
  background: var(--cream) center/cover no-repeat;
  border-block-end: 1px solid var(--line);
  position: relative;
}
.product-card__tag {
  position: absolute;
  inset-block-start: 12px; inset-inline-start: 12px;
  background: var(--gold); color: var(--navy);
  padding: 4px 10px; font-size: 0.72rem;
  font-weight: 800; letter-spacing: 0.04em;
}
.product-card__body { padding: 1.3rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; flex: 1; }
.product-card__brand { font-family: var(--ff-en); font-style: italic; color: var(--gold); font-size: 0.78rem; letter-spacing: 0.06em; }
.product-card__name { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin: 0; line-height: 1.35; }
.product-card__sku { font-family: var(--ff-en-ui); color: var(--muted-2); font-size: 0.78rem; letter-spacing: 0.04em; }
.product-card__meta {
  display: flex; justify-content: space-between; align-items: center;
  padding-block-start: 0.9rem; margin-block-start: auto;
  border-block-start: 1px solid var(--line);
}
.product-card__price { font-weight: 800; color: var(--navy); font-size: 0.95rem; }
.product-card__price small { font-family: var(--ff-en-ui); color: var(--muted-2); font-weight: 600; font-size: 0.72rem; margin-inline-end: 4px; }
.product-card__cta {
  font-size: 0.82rem; color: var(--gold); font-weight: 700;
  display: inline-flex; align-items: center; gap: 0.35rem;
}

/* Section detail: aside spec panel */
.section-detail {
  display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem;
  align-items: start;
}
.spec-aside {
  background: var(--navy); color: #fff;
  padding: 2rem 1.6rem;
  border: 1px solid var(--line);
  position: sticky; inset-block-start: 90px;
}
.spec-aside h4 { color: var(--gold-2); font-size: 0.95rem; font-family: var(--ff-en); letter-spacing: 0.08em; margin: 0 0 1rem; }
.spec-aside ul { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.spec-aside li {
  padding-block: 0.6rem; font-size: 0.9rem;
  border-block-end: 1px solid var(--line-light);
  display: flex; align-items: center; gap: 0.6rem;
}
.spec-aside li::before {
  content: ""; width: 6px; height: 6px;
  background: var(--gold); flex-shrink: 0;
}
.spec-aside__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold); color: var(--navy);
  padding: 0.85rem 1.4rem; font-weight: 700;
  text-decoration: none; transition: 0.2s; width: 100%;
  justify-content: center;
}
.spec-aside__btn:hover { background: var(--gold-2); }