/* Hide the default Drupal page title on design category pages */
.designs-page h1.title,
.designs-page .block-page-title-block,
.designs-page .page-title {
  display: none !important;
}

/* Filter chips */
.design-filter-chip {
  display: inline-block;
  border: 1px solid var(--Colors-Mid-Gray, #89857A);
  border-radius: 50px;
  padding: 4px 16px;
  font-size: 0.85rem;
  white-space: nowrap;
  cursor: pointer;
  background: transparent;
  color: #333;
  transition: all 0.15s ease;
  user-select: none;
}

.design-filter-chip:hover {
  background: var(--Colors-Off-White, #D6D6D6);
}

.design-filter-chip.active {
  background: var(--Colors-Off-White, #D6D6D6);
  border-color: #333;
  font-weight: 600;
}

/* Category page styles */

.color-square {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  position: relative;
}

.trending-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trending-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.trending-img {
  transition: transform 0.3s ease;
}

.trending-card:hover .trending-img {
  transform: scale(1.05);
}
