.textile-family .category-hero__media img {
  object-position: center;
}

.textile-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.textile-filters button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--pc-line);
  border-radius: 999px;
  background: #fff;
  color: var(--pc-ink);
  font: inherit;
  font-size: .86rem;
  font-weight: 800;
  cursor: pointer;
}

.textile-filters button span {
  color: var(--pc-muted);
  font-size: .76rem;
}

.textile-filters button[aria-pressed="true"] {
  border-color: var(--pc-pink);
  background: var(--pc-pink);
  color: #fff;
}

.textile-filters button[aria-pressed="true"] span {
  color: #fff;
}

.textile-result {
  margin: 0 0 18px;
  color: var(--pc-muted);
  font-size: .88rem;
}

.textile-product-grid .product-card[hidden] {
  display: none;
}

.textile-product-grid .product-card__image {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #fff;
}

.textile-product-grid .product-card__image img {
  object-fit: cover;
}

.textile-product-grid .product-card__price small {
  line-height: 1.4;
}

.textile-product-grid .product-card__colors {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: -2px 0 0;
  color: #4e5563;
  font-size: .78rem;
  font-weight: 800;
}

.textile-product-grid .product-card__colors span {
  display: block;
  width: 11px;
  height: 11px;
  flex: none;
  border: 2px solid #fff;
  border-radius: 50%;
  background: conic-gradient(#d80068 0 25%, #045ca8 0 50%, #f0b12d 0 75%, #23815b 0);
  box-shadow: 0 0 0 1px #cfd4df;
}

.textile-product-grid .product-card__reference {
  display: block;
  margin-top: 10px;
  color: var(--pc-muted);
  font-size: .72rem;
}

.textile-catalogue-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 44px;
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--pc-radius);
  color: #fff;
  background: radial-gradient(circle at 90% 10%, rgba(228, 0, 100, .28), transparent 34%), var(--pc-dark);
}

.textile-catalogue-panel h2 {
  max-width: 850px;
}

.textile-catalogue-panel p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #c6ccd5;
}

.textile-catalogue-panel .btn {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .textile-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .textile-filters button {
    justify-content: space-between;
    border-radius: 12px;
    text-align: left;
  }

  .textile-catalogue-panel {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 23px;
  }

  .textile-catalogue-panel .btn {
    width: 100%;
    white-space: normal;
  }
}
