/**
 * Category chips under the title on shop / category pages (see inc/category-nav.php).
 */

.tbb-cat-nav {
	margin: 0.75em 0 1.75em;
}

.tbb-cat-nav__label {
	display: block;
	margin-bottom: 0.6em;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #6b6b6b;
}

.tbb-cat-nav__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tbb-cat-nav__list li {
	margin: 0;
}

.tbb-cat-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.45em;
	padding: 0.45em 0.9em;
	border: 1px solid #e3dcd9;
	background: #fff;
	color: #1a1a1a;
	font-size: 0.875rem;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.tbb-cat-chip:hover,
.tbb-cat-chip:focus-visible {
	border-color: #1a1a1a;
	color: #1a1a1a;
}

.tbb-cat-chip__count {
	font-size: 0.75rem;
	color: #9a9a9a;
}

.tbb-cat-chip.is-empty {
	color: #8a8a8a;
}

.tbb-cat-chip.is-current {
	background: #1a1a1a;
	border-color: #1a1a1a;
	color: #fff;
}

.tbb-cat-chip.is-current .tbb-cat-chip__count {
	color: #cfcfcf;
}

.tbb-cat-chip--up {
	background: #f8efec;
	border-color: #f8efec;
}

/* Phones: one swipeable row instead of many wrapped lines. */
@media (max-width: 767px) {
	.tbb-cat-nav__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 0.35em;
		scrollbar-width: thin;
	}
}
