/**
 * Teacher Pop Shop - vendor storefront category navigation.
 *
 * Minimal styling for the "All Products" + category filter row rendered on
 * a resolved vendor storefront. This is a small filter bar above the product
 * grid, not the large category tile grid that was removed - it is not a
 * reintroduction of that layout.
 *
 * Enqueued only on a resolved vendor storefront; cannot affect /shop/,
 * category archives, the homepage, or any other page.
 */

.tps-vendor-category-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
}

.tps-vendor-category-nav li {
	margin: 0;
}

.tps-vendor-category-nav a {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid #ddd;
	border-radius: 999px;
	text-decoration: none;
	font-size: 0.9em;
	white-space: nowrap;
}

.tps-vendor-category-nav li.tps-active a {
	border-color: currentColor;
	font-weight: 600;
}
