/**
 * Shop page: category selector (replaces quick search).
 * Icon + name chips, Konte-style; mobile: horizontal scroll with fade hint.
 */

.konte-child-shop-categories {
	margin-bottom: 1.25rem;
}

.konte-child-shop-categories__scroll {
	position: relative;
	display: flex;
	align-items: stretch;
}

.konte-child-shop-categories__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.konte-child-shop-category {
	margin: 0;
}

.konte-child-shop-category__link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.85rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #161619;
	text-decoration: none;
	background: #fff;
	border: 1px solid #e3e7e8;
	border-radius: 4px;
	transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
	box-sizing: border-box;
	min-height: 44px;
}

.konte-child-shop-category__link:hover,
.konte-child-shop-category__link:focus {
	border-color: #161619;
	background: #f5f5f5;
	color: #161619;
	outline: none;
}

.konte-child-shop-category.is-active .konte-child-shop-category__link {
	background: #161619;
	border-color: #161619;
	color: #fff;
}

.konte-child-shop-category.is-active .konte-child-shop-category__link:hover,
.konte-child-shop-category.is-active .konte-child-shop-category__link:focus {
	background: #333;
	border-color: #333;
	color: #fff;
}

.konte-child-shop-category__icon {
	display: block;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 2px;
}

.konte-child-shop-category__icon--all {
	background-color: rgba(0, 0, 0, 0.06);
	background-image: none;
}

.konte-child-shop-category__name {
	white-space: nowrap;
}

/* ----- Mobile: horizontal scroll + fade ----- */
@media (max-width: 768px) {
	.konte-child-shop-categories {
		margin-left: -15px;
		margin-right: -15px;
		margin-bottom: 1rem;
		padding: 0 0 0.5rem;
	}

	.konte-child-shop-categories__scroll {
		overflow: hidden;
		position: relative;
		padding-right: 32px;
	}

	.konte-child-shop-categories__list {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 0.5rem;
		padding: 0 12px 0 15px;
	}

	.konte-child-shop-categories__list::-webkit-scrollbar {
		display: none;
	}

	.konte-child-shop-category {
		flex: 0 0 auto;
	}

	.konte-child-shop-category__link {
		min-width: 100px;
		min-height: 48px;
		padding: 0.5rem 0.65rem;
		font-size: 0.8125rem;
	}

	.konte-child-shop-category__icon {
		width: 32px;
		height: 32px;
	}

	/* Fade on right edge for scroll discoverability */
	.konte-child-shop-categories__fade {
		position: absolute;
		top: 0;
		right: 0;
		width: 28px;
		height: 100%;
		pointer-events: none;
		background: linear-gradient(to left, var(--shop-categories-bg, #fff) 35%, transparent);
	}

	/* If toolbar has different background, set --shop-categories-bg in theme */
}
