.products-page {
  min-height: 100vh;
}

.products-hero {
  padding: 70px 5vw 54px;
  background: var(--dark);
  color: #fff;
}

.products-hero .eyebrow {
  color: var(--yellow);
}

.products-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 6vw, 68px);
}

.products-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.catalogue-layout {
  display: grid;
  grid-template-columns: 244px minmax(0, 1fr);
  gap: 34px;
  padding: 48px 5vw 82px;
}

.category-panel > p {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 900;
  color: var(--muted);
}

.category-filters {
  display: grid;
  gap: 8px;
}

.category-filters button {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.category-filters button.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.catalogue-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.catalogue-heading h2 {
  margin-bottom: 0;
}

#productCount {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalogue-product {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(23, 18, 29, 0.06);
}

.catalogue-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  background: linear-gradient(135deg, #ffffff 0%, #f1eee8 100%);
}

.catalogue-product-content {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.catalogue-product h3,
.catalogue-product p {
  margin: 0;
}

.catalogue-product h3 {
  font-size: 21px;
  line-height: 1.25;
}

.catalogue-product p {
  color: var(--muted);
}

.product-price {
  color: var(--red);
  font-size: 19px;
  font-weight: 900;
}

.product-inquiry {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-top: 18px;
  padding: 0 14px;
  border-radius: 6px;
  background: #168a56;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.product-inquiry:hover { background: #107346; }

.empty-products {
  grid-column: 1 / -1;
  padding: 48px 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 960px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catalogue-layout {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .category-filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-heading {
    align-items: start;
    flex-direction: column;
  }
}
