/* The Menu — Main Styles */

:root {
	--tm-red: #D32F2F;
	--tm-brown: #8B4513;
	--tm-dark: #333;
	--tm-muted: #777;
	--tm-purple: #9C27B0;
	--tm-green: #28a745;
	--tm-orange: #fd7e14;
	--tm-white: #fff;
	--tm-bg: #f8f8f8;
	--tm-content-width: 1400px;
	--tm-menu-image-ratio: 4 / 3;
	--tm-radius: 12px;
	--tm-radius-pill: 4px;
	--tm-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	--tm-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
	--tm-serif: Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--tm-font);
	color: var(--tm-dark);
	background: var(--tm-bg);
	line-height: 1.6;
}

html {
	font-family: var(--tm-font);
}

.the-menu-site {
	min-height: 100vh;
	font-family: var(--tm-font);
}

.the-menu-site button,
.the-menu-site input,
.the-menu-site select,
.the-menu-site textarea {
	font-family: var(--tm-font);
}

.the-menu-site h1,
.the-menu-site h2,
.the-menu-site h3,
.the-menu-site h4,
.the-menu-site h5,
.the-menu-site h6,
.the-menu-category-title,
.the-menu-page-title,
.the-menu-single-title,
.the-menu-hero__title,
.the-menu-modal__title,
.the-menu-single-content-title,
.the-menu-header__logo-text,
.the-menu-footer__logo-text,
.the-menu-footer__info-title,
.the-menu-card__title,
.the-menu-content h1,
.the-menu-content h2,
.the-menu-content h3,
.the-menu-content h4,
.the-menu-content h5,
.the-menu-content h6 {
	font-family: var(--tm-serif);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Announcement Ticker */
.the-menu-ticker {
	display: flex;
	align-items: stretch;
	background: var(--tm-red);
	color: var(--tm-white);
	min-height: 36px;
	overflow: hidden;
}

.the-menu-ticker__badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	padding: 0 14px;
	background: rgba(0, 0, 0, 0.18);
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	white-space: nowrap;
	z-index: 2;
	box-shadow: 4px 0 12px rgba(0, 0, 0, 0.12);
}

.the-menu-ticker__badge-icon {
	font-size: 13px;
	line-height: 1;
}

.the-menu-ticker__viewport {
	flex: 1;
	overflow: hidden;
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
}

.the-menu-ticker__viewport::before,
.the-menu-ticker__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 24px;
	z-index: 1;
	pointer-events: none;
}

.the-menu-ticker__viewport::before {
	left: 0;
	background: linear-gradient(to right, var(--tm-red), transparent);
}

.the-menu-ticker__viewport::after {
	right: 0;
	background: linear-gradient(to left, var(--tm-red), transparent);
}

.the-menu-ticker__track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	will-change: transform;
	animation: the-menu-ticker-scroll var(--ticker-duration, 25s) linear infinite;
}

.the-menu-ticker:hover .the-menu-ticker__track {
	animation-play-state: paused;
}

.the-menu-ticker__group {
	display: inline-flex;
	align-items: center;
	gap: 0;
	padding-right: 48px;
}

.the-menu-ticker__item {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
}

.the-menu-ticker__sep {
	margin: 0 18px;
	opacity: 0.65;
	font-size: 10px;
}

.the-menu-ticker__link {
	color: var(--tm-white);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.the-menu-ticker__link:hover {
	color: var(--tm-white);
	opacity: 0.85;
}

@keyframes the-menu-ticker-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.the-menu-ticker__track {
		animation: none;
		transform: none;
		flex-wrap: wrap;
		white-space: normal;
		padding: 8px 16px;
	}

	.the-menu-ticker__group[aria-hidden="true"] {
		display: none;
	}

	.the-menu-ticker__group {
		padding-right: 0;
		flex-wrap: wrap;
		gap: 8px 0;
	}
}

/* Header */
.the-menu-header {
	background: var(--tm-white);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 100;
}
.the-menu-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 16px;
	max-width: var(--tm-content-width);
	margin: 0 auto;
}
.the-menu-header__logo {
	flex-shrink: 0;
}
.the-menu-header__nav {
	flex: 1;
	display: none;
	justify-content: flex-end;
	min-width: 0;
}
.the-menu-primary-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 4px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.the-menu-primary-nav__item {
	position: relative;
	margin: 0;
}
.the-menu-primary-nav__link {
	display: block;
	padding: 6px 0;
	color: var(--tm-dark);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.2s;
	white-space: nowrap;
}
.the-menu-primary-nav__link:hover,
.the-menu-primary-nav__item.current-menu-item > .the-menu-primary-nav__link,
.the-menu-primary-nav__item.current-menu-ancestor > .the-menu-primary-nav__link,
.the-menu-primary-nav__item.current_page_item > .the-menu-primary-nav__link {
	color: var(--tm-red);
}
.the-menu-primary-nav__item .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: auto;
	min-width: 180px;
	margin: 0;
	padding: 8px 0;
	list-style: none;
	background: var(--tm-white);
	border-radius: var(--tm-radius);
	box-shadow: var(--tm-shadow);
	z-index: 110;
}
.the-menu-primary-nav__item:hover > .sub-menu,
.the-menu-primary-nav__item:focus-within > .sub-menu {
	display: block;
}
.the-menu-primary-nav__subitem .the-menu-primary-nav__link {
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
}
.the-menu-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}
.the-menu-header__logo-text {
	font-size: 20px;
	font-weight: 700;
	color: var(--tm-red);
	text-decoration: none;
}
.the-menu-header__logo-link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	line-height: 0;
}
.the-menu-header__logo-img {
	display: block;
	max-height: 56px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}
.the-menu-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.the-menu-header__toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
}
.the-menu-header__toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--tm-dark);
}

/* Buttons */
.the-menu-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: var(--tm-radius-pill);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s;
}
.the-menu-btn:hover { opacity: 0.85; }
.the-menu-btn--call,
.the-menu-btn--primary {
	background: var(--tm-red);
	color: var(--tm-white);
}
.the-menu-btn--dashboard {
	background: var(--tm-dark);
	color: var(--tm-white);
}
.the-menu-btn--map {
	background: var(--tm-white);
	color: var(--tm-red);
	margin-top: 16px;
}

/* Mobile Nav */
.the-menu-mobile-nav {
	background: var(--tm-white);
	padding: 16px;
	border-top: 1px solid #eee;
}
.the-menu-mobile-nav__link {
	display: block;
	padding: 10px 12px;
	color: var(--tm-dark);
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}
.the-menu-mobile-nav__link.is-active {
	background: var(--tm-brown);
	color: var(--tm-white);
	border-bottom-color: var(--tm-brown);
}
.the-menu-mobile-nav__divider {
	border-top: 2px solid #eee;
	margin: 12px 0 4px;
}
.the-menu-mobile-nav__menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.the-menu-mobile-nav__menu .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0 12px;
}
.the-menu-mobile-nav__link--menu {
	text-transform: none;
}

/* Hero */
.the-menu-hero {
	position: relative;
	width: 100%;
	min-height: 500px;
	background: #2c1810 center/cover no-repeat;
	overflow: hidden;
}
.the-menu-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
}
.the-menu-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: var(--tm-content-width);
	min-height: 500px;
	margin: 0 auto;
	padding: 40px 16px;
}
.the-menu-hero__content {
	position: relative;
	z-index: 2;
	max-width: 600px;
	color: var(--tm-white);
}
.the-menu-hero__title {
	font-family: var(--tm-serif);
	font-size: 2.5rem;
	margin: 0 0 12px;
}
.the-menu-hero__description {
	font-size: 1rem;
	margin: 0 0 20px;
	opacity: 0.9;
}
.the-menu-hero__plate {
	position: absolute;
	right: 5%;
	bottom: 0;
	z-index: 3;
	width: 280px;
}
.the-menu-hero__plate img {
	width: 100%;
	height: auto;
	display: block;
}

/* Category Nav */
.the-menu-category-nav-wrap {
	width: 100%;
	padding: 16px 0;
	background: var(--tm-white);
}
.the-menu-category-nav-wrap__inner {
	width: 100%;
	max-width: var(--tm-content-width);
	margin: 0 auto;
	padding: 0 16px;
}
.the-menu-category-select {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--tm-red);
	border-radius: var(--tm-radius-pill);
	font-size: 14px;
	color: var(--tm-dark);
}
.the-menu-category-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 0;
}
.the-menu-pill {
	display: inline-block;
	padding: 6px 12px;
	border: 1px solid var(--tm-red);
	color: var(--tm-red);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
	border-radius: var(--tm-radius-pill);
	transition: all 0.2s;
}
.the-menu-pill:hover,
.the-menu-pill.is-active {
	background: var(--tm-brown);
	color: var(--tm-white);
	border-color: var(--tm-brown);
}

/* Sticky Nav */
.the-menu-sticky-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--tm-white);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
	z-index: 99;
	padding: 8px 0;
}
.the-menu-sticky-nav__scroll {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding: 0 12px;
	scrollbar-width: none;
}
.the-menu-sticky-nav__scroll::-webkit-scrollbar { display: none; }

/* Main Content */
.the-menu-main {
	max-width: var(--tm-content-width);
	margin: 0 auto;
	padding: 0 16px 100px;
}
.the-menu-page-title {
	font-family: var(--tm-serif);
	font-size: 2rem;
	text-align: center;
	margin: 24px 0;
	color: var(--tm-dark);
}
.the-menu-button {
	display: inline-block;
	margin: 8px 0 24px;
	padding: 10px 20px;
	border-radius: 999px;
	background: var(--tm-red);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
}
.the-menu-button:hover,
.the-menu-button:focus {
	color: #fff;
	opacity: 0.92;
}
.the-menu-section { padding: 16px 0; }

/* Category Blocks */
.the-menu-category-block {
	margin-bottom: 40px;
	scroll-margin-top: 80px;
}
.the-menu-category-title {
	font-size: 1.5rem;
	margin: 0 0 16px;
	color: var(--tm-dark);
}
.the-menu-category-rule {
	display: block;
	height: 2px;
	background: repeating-linear-gradient(to right, var(--tm-muted) 0, var(--tm-muted) 4px, transparent 4px, transparent 8px);
	margin-top: 8px;
}
.the-menu-category-header--centered { text-align: center; }
.the-menu-category-header--underline .the-menu-category-title {
	border-bottom: 3px solid var(--tm-red);
	display: inline-block;
	padding-bottom: 4px;
}
.the-menu-category-title--lowercase { text-transform: lowercase; }
.the-menu-category-title--large { font-size: 2rem; text-align: center; }
.the-menu-category-preview {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin: 16px 0;
}
.the-menu-category-preview img {
	display: block;
	width: 112px;
	aspect-ratio: var(--tm-menu-image-ratio);
	height: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 10px;
	background: #ebe4dc;
}

/* Badge */
.the-menu-badge {
	display: inline-block;
	background: var(--tm-red);
	color: var(--tm-white);
	font-size: 11px;
	padding: 2px 8px;
	border-radius: 3px;
	font-weight: 600;
	text-transform: uppercase;
}
.the-menu-badge--on-image,
.the-menu-badge--top,
.the-menu-badge--corner {
	position: absolute;
	z-index: 2;
}
.the-menu-badge--on-image { top: 8px; left: 8px; }
.the-menu-badge--top { top: 0; left: 0; right: 0; text-align: center; border-radius: 0; padding: 4px; }
.the-menu-badge--corner { top: 8px; right: 8px; }

/* Unavailable */
.the-menu-unavailable-label,
.the-menu-card__overlay-label {
	color: var(--tm-muted);
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
}
.the-menu-card__overlay-label {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	color: var(--tm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	z-index: 3;
}
.is-unavailable .the-menu-card__image,
.is-unavailable .the-menu-card__thumb { filter: grayscale(0.6); opacity: 0.7; }

/* Grids */
.the-menu-items-wrap--grid { display: grid; gap: 20px; }
.the-menu-grid--2 { grid-template-columns: repeat(2, 1fr); }
.the-menu-grid--3 { grid-template-columns: repeat(3, 1fr); }
.the-menu-grid--5 { grid-template-columns: repeat(5, 1fr); }

/* Card Base */
.the-menu-card {
	background: var(--tm-white);
	border-radius: var(--tm-radius);
	overflow: hidden;
}
.the-menu-card__image-wrap,
.the-menu-card__thumb-link,
.the-menu-card__media {
	position: relative;
	overflow: hidden;
	background: #ebe4dc;
	isolation: isolate;
}
.the-menu-card__image-wrap,
.the-menu-card__thumb-link {
	aspect-ratio: var(--tm-menu-image-ratio);
	flex-shrink: 0;
}
.the-menu-card__thumb-link {
	display: block;
}
.the-menu-card__image,
.the-menu-card__thumb {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
	max-width: none;
}
.the-menu-card__title {
	margin: 0;
	font-size: 1rem;
}
.the-menu-card__title a {
	color: inherit;
	text-decoration: none;
}
.the-menu-card__title a:hover { color: var(--tm-red); }
.the-menu-card__price {
	font-weight: 700;
	color: var(--tm-red);
	margin: 4px 0;
}
.the-menu-price-variants {
	list-style: none;
	margin: 0;
	padding: 0;
}
.the-menu-price-variants__item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
}
.the-menu-price-variants__label {
	font-size: 13px;
	font-weight: 600;
	color: var(--tm-dark);
}
.the-menu-price-variants__price {
	font-weight: 700;
	color: var(--tm-red);
	white-space: nowrap;
}
.the-menu-price-variants--leader {
	flex: 1 1 100%;
	width: 100%;
	margin-top: 6px;
}
.the-menu-price-variants--inline,
.the-menu-price-variants--bar {
	flex-direction: column;
	align-items: flex-end;
	gap: 2px;
}
.the-menu-price-variants--block,
.the-menu-price-variants--centered {
	display: grid;
	gap: 4px;
}
.the-menu-price-variants--centered {
	text-align: center;
}
.the-menu-price-variants--centered .the-menu-price-variants__item {
	justify-content: center;
	gap: 8px;
}
.the-menu-price-variants--centered .the-menu-price-variants__price {
	color: var(--tm-green);
}
.the-menu-price-variants--modal .the-menu-price-variants__price {
	color: var(--tm-green);
}
.the-menu-modal__price--variants {
	margin: 0 0 8px;
}
.the-menu-single-price-card--variant {
	border-color: rgba(0, 0, 0, 0.08);
	background: var(--tm-white);
}
.the-menu-card__desc {
	color: var(--tm-muted);
	font-size: 14px;
	margin: 8px 0 0;
}
.the-menu-card__link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.the-menu-card__image-wrap.is-placeholder,
.the-menu-card__thumb-link.is-placeholder,
.the-menu-card__media.is-placeholder,
.the-menu-single-image.is-placeholder {
	background: #ebe4dc;
}

.the-menu-card__image-wrap.is-placeholder .the-menu-card__image,
.the-menu-card__thumb-link.is-placeholder .the-menu-card__thumb,
.the-menu-card__media.is-placeholder .the-menu-card__image,
.the-menu-single-image.is-placeholder img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	max-width: none;
}

.the-menu-category-preview img.is-placeholder {
	object-fit: cover;
	object-position: center;
}

/* Footer */
.the-menu-footer {
	background: var(--tm-red);
	color: var(--tm-white);
	padding: 56px 20px 32px;
	margin-top: 48px;
}
.the-menu-footer__inner {
	max-width: var(--tm-content-width);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	text-align: center;
}
.the-menu-footer__logo-text {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--tm-white);
}
.the-menu-footer__logo-link {
	display: inline-block;
	text-decoration: none;
	line-height: 0;
}
.the-menu-footer__logo-img {
	display: block;
	max-height: 88px;
	width: auto;
	max-width: 300px;
	margin: 0 auto;
	object-fit: contain;
}
.the-menu-footer__social {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}
.the-menu-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	color: var(--tm-white);
	text-decoration: none;
	line-height: 0;
	transition: background 0.2s, transform 0.2s;
}
.the-menu-social-link svg {
	width: 20px;
	height: 20px;
	display: block;
	flex-shrink: 0;
}
.the-menu-social-link:hover {
	background: rgba(255, 255, 255, 0.32);
	transform: translateY(-2px);
	color: var(--tm-white);
}
.the-menu-footer__info {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	width: 100%;
	max-width: 960px;
	padding: 28px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}
.the-menu-footer__info-block {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.the-menu-footer__info-title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	opacity: 0.95;
}
.the-menu-footer__address,
.the-menu-footer__hours,
.the-menu-footer__payments {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.7;
	opacity: 0.95;
}
.the-menu-footer__address {
	font-style: normal;
}
.the-menu-footer .the-menu-btn--map {
	margin-top: 4px;
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 700;
	border: 2px solid var(--tm-white);
	background: transparent;
	color: var(--tm-white);
	transition: background 0.2s, color 0.2s;
}
.the-menu-footer .the-menu-btn--map:hover {
	background: var(--tm-white);
	color: var(--tm-red);
	opacity: 1;
}
.the-menu-footer__copyright {
	margin: 0;
	padding-top: 8px;
	font-size: 0.95rem;
	opacity: 0.85;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.the-menu-footer__info {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
		text-align: left;
	}
	.the-menu-footer__info-block:not(:last-child) {
		border-right: 1px solid rgba(255, 255, 255, 0.18);
		padding-right: 24px;
	}
}

/* Scroll Top */
.the-menu-scroll-top {
	position: fixed;
	bottom: 90px;
	right: 16px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--tm-red);
	color: var(--tm-white);
	border: none;
	cursor: pointer;
	font-size: 18px;
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.the-menu-scroll-top.is-visible {
	opacity: 1;
	visibility: visible;
}

/* Modal */
.the-menu-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
}
.the-menu-modal[hidden] { display: none; }
.the-menu-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}
.the-menu-modal__content {
	position: relative;
	background: var(--tm-white);
	border-radius: var(--tm-radius);
	max-width: 480px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	z-index: 1;
}
.the-menu-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--tm-dark);
	z-index: 2;
}
.the-menu-modal__image-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: var(--tm-menu-image-ratio);
	background: #f0ebe6;
}
.the-menu-modal__image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.the-menu-modal__unavailable {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--tm-red);
	color: var(--tm-white);
	padding: 8px 16px;
	font-weight: 700;
}
.the-menu-modal__body { padding: 20px; }
.the-menu-modal__title { margin: 0 0 8px; font-size: 1.5rem; }
.the-menu-modal__price { color: var(--tm-green); font-weight: 700; font-size: 1.2rem; }
.the-menu-modal__group-price { color: var(--tm-orange); font-weight: 600; }
.the-menu-modal__description { color: var(--tm-muted); }

/* Single Item */
.the-menu-single {
	padding-top: 24px;
}

.the-menu-single-breadcrumb {
	margin-bottom: 20px;
}

.the-menu-single-back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tm-red);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: opacity 0.2s;
}

.the-menu-single-back:hover {
	opacity: 0.8;
}

.the-menu-single-item {
	width: 100%;
}

.the-menu-single-layout {
	display: grid;
	gap: 28px;
	background: var(--tm-white);
	border-radius: calc(var(--tm-radius) + 4px);
	box-shadow: var(--tm-shadow);
	overflow: hidden;
}

.the-menu-single-media {
	position: relative;
}

.the-menu-single-image {
	position: relative;
	overflow: hidden;
	background: #ebe4dc;
	aspect-ratio: var(--tm-menu-image-ratio);
	border-radius: calc(var(--tm-radius) + 2px);
}

.the-menu-single-image img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	max-width: none;
}

.the-menu-single-image.is-unavailable img {
	filter: grayscale(0.6);
	opacity: 0.75;
}

.the-menu-single-badge {
	top: 16px;
	right: 16px;
	font-size: 12px;
	padding: 6px 12px;
	border-radius: 999px;
}

.the-menu-single-details {
	padding: 24px 20px 28px;
}

.the-menu-single-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.the-menu-single-category {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--tm-red);
	color: var(--tm-red);
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	border-radius: 999px;
	transition: all 0.2s;
}

.the-menu-single-category:hover {
	background: var(--tm-brown);
	border-color: var(--tm-brown);
	color: var(--tm-white);
}

.the-menu-single-title {
	font-family: var(--tm-serif);
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.2;
	margin: 0 0 12px;
	color: var(--tm-dark);
}

.the-menu-single-excerpt {
	font-size: 1.05rem;
	color: var(--tm-muted);
	margin: 0 0 20px;
	line-height: 1.7;
}

.the-menu-single-prices {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}

.the-menu-single-price-card {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	border-radius: var(--tm-radius);
	background: var(--tm-bg);
	border: 1px solid #eee;
}

.the-menu-single-price-card--solo {
	border-left: 4px solid var(--tm-green);
}

.the-menu-single-price-card--sharing {
	border-left: 4px solid var(--tm-purple);
}

.the-menu-single-price-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--tm-muted);
}

.the-menu-single-price-value {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.2;
}

.the-menu-price--solo {
	color: var(--tm-green);
}

.the-menu-price--group {
	color: var(--tm-purple);
}

.the-menu-single-content {
	margin-bottom: 28px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.the-menu-single-content-title {
	font-size: 1.1rem;
	margin: 0 0 12px;
	color: var(--tm-dark);
}

.the-menu-single-content p,
.the-menu-single-content ul,
.the-menu-single-content ol {
	color: var(--tm-dark);
	line-height: 1.8;
}

.the-menu-single-content p:last-child {
	margin-bottom: 0;
}

.the-menu-single-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.the-menu-btn--outline {
	background: transparent;
	color: var(--tm-red);
	border: 2px solid var(--tm-red);
}

.the-menu-btn--outline:hover {
	opacity: 0.85;
}

@media (min-width: 768px) {
	.the-menu-single-layout {
		grid-template-columns: 1fr 1fr;
		gap: 0;
	}

	.the-menu-single-details {
		padding: 36px 32px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.the-menu-single-prices {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.the-menu-single-layout {
		grid-template-columns: 1.15fr 0.85fr;
	}

	.the-menu-single-details {
		padding: 48px 40px;
	}
}

/* Empty state */
.the-menu-empty {
	text-align: center;
	padding: 40px;
	color: var(--tm-muted);
}

/* Responsive */
.the-menu-hide-mobile { display: none; }
.the-menu-hide-desktop { display: block; }

@media (min-width: 768px) {
	.the-menu-hide-mobile { display: block; }
	.the-menu-hide-desktop { display: none; }
	.the-menu-header__toggle { display: none; }
	.the-menu-header__nav.the-menu-hide-mobile { display: flex; }
	.the-menu-hero__plate { width: 340px; }
	.the-menu-grid--2 { grid-template-columns: repeat(2, 1fr); }
	.the-menu-grid--3 { grid-template-columns: repeat(3, 1fr); }
	.the-menu-grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
	.the-menu-grid--5 { grid-template-columns: repeat(5, 1fr); }
	.the-menu-hero__plate { width: 420px; right: 8%; }
}

@media (max-width: 767px) {
	.the-menu-grid--2,
	.the-menu-grid--3,
	.the-menu-grid--5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.the-menu-hero__title { font-size: 1.8rem; }
}

/* App-style bottom tab bar (mobile only) */
.the-menu-tabbar {
	position: fixed;
	inset: auto 0 0;
	z-index: 110;
	display: none;
	align-items: stretch;
	justify-content: space-around;
	gap: 0.15rem;
	padding: 0.35rem 0.4rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
	background: color-mix(in srgb, var(--tm-white) 92%, transparent);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
}

.the-menu-tabbar__item {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.2rem;
	padding: 0.35rem 0.2rem 0.25rem;
	border: 0;
	border-radius: 0.85rem;
	background: transparent;
	color: var(--tm-muted);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease, background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.the-menu-tabbar__item svg {
	flex-shrink: 0;
}

.the-menu-tabbar__item span {
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.the-menu-tabbar__item.is-active {
	color: var(--tm-red);
	background: color-mix(in srgb, var(--tm-red) 9%, transparent);
}

.the-menu-tabbar__fab {
	display: grid;
	place-items: center;
	width: 2.65rem;
	height: 2.65rem;
	margin-top: -1.15rem;
	margin-bottom: 0.05rem;
	border-radius: 999px;
	background: var(--tm-red);
	color: var(--tm-white);
	box-shadow: 0 6px 16px color-mix(in srgb, var(--tm-red) 40%, transparent);
}

.the-menu-tabbar__item--primary {
	color: var(--tm-red);
}

.the-menu-tabbar__item--primary:active .the-menu-tabbar__fab {
	transform: scale(0.96);
}

/* Mobile app-style layout */
@media (max-width: 767px) {
	.the-menu-tabbar {
		display: flex;
	}

	.the-menu-main {
		padding: 0 14px calc(90px + env(safe-area-inset-bottom, 0px));
	}

	.the-menu-footer {
		padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
	}

	.the-menu-header__inner {
		padding: 8px 14px;
		min-height: 3.5rem;
	}

	.the-menu-header__logo img,
	.the-menu-header__logo .custom-logo {
		max-height: 36px;
		width: auto;
	}

	.the-menu-btn--call {
		padding: 8px 12px;
		font-size: 0.8rem;
	}

	/* Call lives in the tab bar FAB on mobile */
	.the-menu-header .the-menu-btn--call {
		display: none;
	}

	.the-menu-page-title {
		font-size: 1.5rem;
		margin: 18px 0 14px;
	}

	.the-menu-section {
		padding: 8px 0;
	}

	.the-menu-hero {
		min-height: 320px;
	}

	.the-menu-hero__inner {
		min-height: 320px;
		padding: 28px 16px;
	}

	.the-menu-hero__description {
		font-size: 0.95rem;
	}

	.the-menu-hero__plate {
		display: none;
	}

	.the-menu-category-block {
		scroll-margin-top: 70px;
	}

	.the-menu-items-wrap--grid {
		gap: 12px;
	}

	.the-menu-card {
		border-radius: 16px;
	}

	.the-menu-card__desc {
		font-size: 13px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	/* Category sticky strip sits above the app tab bar */
	.the-menu-sticky-nav {
		bottom: calc(3.85rem + env(safe-area-inset-bottom, 0px));
		padding: 10px 0;
		border-radius: 18px 18px 0 0;
		box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
		z-index: 105;
	}

	.the-menu-sticky-nav .the-menu-pill {
		border-radius: 999px;
		padding: 7px 14px;
		white-space: nowrap;
	}

	/* Swipeable category pills strip */
	.the-menu-category-pills {
		display: flex;
		flex-wrap: nowrap;
		gap: 8px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		scrollbar-width: none;
		padding: 8px 14px;
		margin: 0 -16px;
		scroll-padding-left: 14px;
	}

	.the-menu-category-pills::-webkit-scrollbar {
		display: none;
	}

	.the-menu-category-pills .the-menu-pill {
		border-radius: 999px;
		padding: 8px 16px;
		flex-shrink: 0;
		white-space: nowrap;
		scroll-snap-align: start;
	}

	.the-menu-category-dropdown + .the-menu-category-pills {
		padding-top: 12px;
	}

	.the-menu-category-select {
		border-radius: 999px;
		padding: 12px 16px;
		background: var(--tm-white);
	}

	.the-menu-scroll-top {
		bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
	}

	body.the-menu-sticky-nav-visible .the-menu-scroll-top {
		bottom: calc(8.25rem + env(safe-area-inset-bottom, 0px));
	}
}
