.tcore-food-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 28px;
}

.tcore-food-tabs__button {
	appearance: none;
	min-height: 34px;
	padding: 8px 18px;
	border: 1px solid #e5dfd5;
	border-radius: 0;
	background: #fff;
	color: #2c2722;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.tcore-food-tabs__button:hover,
.tcore-food-tabs__button:focus-visible,
.tcore-food-tabs__button.is-active {
	border-color: #bd340f;
	background: #bd340f;
	color: #fff;
}

.tcore-food-tabs__button:focus-visible {
	outline: 2px solid #bd340f;
	outline-offset: 2px;
}

.tcore-food-menu__item[hidden] {
	display: none !important;
}

.tcore-food-tabs .tcore-food-menu {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.18s ease, transform 0.18s ease;
	will-change: opacity, transform;
}

.tcore-food-tabs .tcore-food-menu.is-switching {
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
	.tcore-food-tabs .tcore-food-menu {
		transition: none;
	}
}

@media (max-width: 575px) {
	.tcore-food-tabs__button {
		width: 100%;
	}
}
