/* Products catalog — Figma brand bands + static product grid */

.page-products {
  background: #fff;
}

.products-page__catalog {
  margin-top: 0;
}

.products-page__empty {
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
  text-align: center;
}

.brand-detail-hero,
.search-page__header {
  padding: clamp(2.25rem, 5vw, 4rem) 0;
  background: linear-gradient(135deg, rgba(60, 190, 178, 0.18), rgba(93, 173, 226, 0.12));
  border-radius: 20px;
}
.p-10{
  padding: 3rem;
}

.brand-detail-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.brand-detail-hero__eyebrow {
  margin: 0 0 0.55rem;
  color: #27877d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-detail-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  color: #07131f;
}

.brand-detail-hero__body {
  color: #2f3a4a;
  font-size: 1rem;
  line-height: 1.7;
}

.brand-detail-hero__actions,
.search-page__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.brand-detail-hero__media {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 27, 46, 0.14);
}

.brand-detail-hero__media img {
  width: 100%;
  height: min(420px, 48vh);
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  padding: 1rem;
  box-sizing: border-box;
}

.brand-detail-products,
.search-page__results {
  padding-block: clamp(2.25rem, 5vw, 4rem);
}

.search-page__input {
  flex: 1 1 18rem;
  min-height: 44px;
  border: 1px solid rgba(15, 27, 46, 0.18);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font: inherit;
}

.search-page__results-title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
}

/* Brand band (Mitutoyo / Imada style blocks) */
.figma-brand-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.figma-brand-band--teal {
  background: linear-gradient(180deg, #4dc6b9 0%, #3cbeb2 100%);
}

.figma-brand-band--light {
  background: #f4f4f4;
}

.figma-brand-band__head {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 1.75rem;
}

.figma-brand-band__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.625rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #000;
}

.figma-brand-band__lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #2e2e2e;
}

/* Static 4-column grid (products page; home keeps carousel) */
.figma-products-catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.figma-products-catalog__item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.figma-brand-band--teal .figma-product-card {
  box-shadow: 0 14px 30px rgba(15, 39, 68, 0.14);
}

.figma-brand-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem 1rem;
  margin-top: 2rem;
}

.figma-brand-band__btn {
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.72rem;
}

.figma-brand-band--teal .figma-brand-band__btn,
.page-products .figma-trusted__card-actions .figma-trusted__catalogue-cta {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  color: #ffffff;
  box-shadow: none;
}

.figma-brand-band--teal .figma-brand-band__btn:hover,
.page-products .figma-trusted__card-actions .figma-trusted__catalogue-cta:hover {
  background: #ffffff;
  color: #031d3e;
  filter: none;
}

@media (max-width: 1100px) {
  .figma-products-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .brand-detail-hero__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .figma-brand-band {
    padding: 2.25rem 0;
  }

  .figma-brand-band__head {
    margin-bottom: 1.25rem;
  }

  .figma-brand-band__lede {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .figma-products-catalog__grid {
    grid-template-columns: 1fr;
    max-width: min(100%, 310px);
    margin-inline: auto;
  }

  .figma-brand-band__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .figma-brand-band__btn {
    width: 100%;
  }
}
