/*
 * category_gradients.css — Category placeholder gradients
 * One class per category family; applied via category_gradient_class helper.
 * Loads after collection_feed.css / collections_index.css so the gradient
 * wins over the placeholder defaults.
 */

.category-gradient {
  background: linear-gradient(135deg, #5C5C5C, #7A7A7A, #989898);
}

/* Trading cards — warm gold/bronze */
.category-gradient--cards {
  background: linear-gradient(135deg, #8B7355, #C4956A, #D4A574);
}

/* Comics — deep blue */
.category-gradient--comics {
  background: linear-gradient(135deg, #2C3E50, #3498DB, #2980B9);
}

/* Coins — earthy gold */
.category-gradient--coins {
  background: linear-gradient(135deg, #786443, #A08B5B, #C4A265);
}

/* Figures — deep red */
.category-gradient--figures {
  background: linear-gradient(135deg, #4A0E0E, #8B1A1A, #B22222);
}

/* Toys & games — forest green */
.category-gradient--toys {
  background: linear-gradient(135deg, #2E4A1E, #4A7A2E, #5C9434);
}

/* Music — indigo/purple */
.category-gradient--music {
  background: linear-gradient(135deg, #1A1A3E, #3A3A8E, #5252C7);
}

/* Fashion — purple */
.category-gradient--fashion {
  background: linear-gradient(135deg, #3A1F5E, #6A3D9A, #8B5FBF);
}

/* Luxury — dark amber */
.category-gradient--luxury {
  background: linear-gradient(135deg, #4A3728, #6B4F3A, #8B6914);
}

/* Art — electric blue */
.category-gradient--art {
  background: linear-gradient(135deg, #0D3B66, #1A5FFF, #4D8CFF);
}
