/**
 * Sticky category chips (M8) + menu item grid. Reuses .bcc-card (motion.css,
 * PR 5) for the card-lift hover so menu cards match every other card style.
 */
.bcc-chips {
	position: sticky;
	top: 0;
	z-index: 10;
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 12px var(--bcc-space);
	background: var(--bcc-cream);
	scrollbar-width: none;
}

.bcc-chips::-webkit-scrollbar {
	display: none;
}

.bcc-chips__item {
	flex: 0 0 auto;
	padding: 8px 16px;
	border-radius: var(--bcc-radius-pill);
	background: transparent;
	border: 1.5px solid rgb(72 57 111 / .35);
	color: var(--bcc-ink);
	text-decoration: none;
	font-family: var(--bcc-font-body);
	font-size: 14px;
	white-space: nowrap;
	transition: background .2s cubic-bezier(.2,.8,.2,1), color .2s cubic-bezier(.2,.8,.2,1);
}

.bcc-chips__item.is-active {
	background: var(--bcc-gold-400);
	border-color: var(--bcc-gold-400);
	font-weight: 600;
}

.bcc-menu__section {
	padding-block: var(--bcc-space);
	scroll-margin-top: 64px;
}

.bcc-menu__section h2 {
	font-family: var(--bcc-font-display);
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	line-height: 1.05;
	text-transform: uppercase;
	color: var(--bcc-ink);
	margin: 0 0 16px;
}

.bcc-menu__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: var(--bcc-space);
}

.bcc-menu__item {
	padding: 16px;
}

.bcc-menu__item h3 {
	font-family: var(--bcc-font-display);
	font-size: 1.15rem;
	text-transform: uppercase;
	line-height: 1.1;
	margin: 0 0 6px;
}

.bcc-menu__price {
	font-weight: 700;
	color: var(--bcc-purple-700);
}
