/**
 * PREVA KITCHEN — MENU STYLES
 *
 * Everything is scoped under .pk-menu-root and every class is pk- prefixed,
 * so nothing here can reach the rest of the theme. No body, no global reset,
 * no bare element selectors outside the root.
 */

.pk-menu-root {
	--pk-bg: #060608;
	--pk-surface: #0c0c0f;
	--pk-surface-2: #08080a;
	--pk-line: #1c1c24;
	--pk-line-gold: #3d351b;
	--pk-gold: #d4af37;
	--pk-gold-hi: #eec247;
	--pk-fg: #ffffff;
	--pk-muted: #a1a1aa;
	--pk-serif: "Playfair Display", Georgia, serif;
	--pk-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--pk-r: 14px;
	--pk-ease: 0.2s ease;

	/* Clearance for the theme's fixed header. Raise this if content still
	   sits under the header, lower it if the gap looks too big. */
	--pk-header-offset: 150px;

	background: var(--pk-bg);
	color: var(--pk-fg);
	font-family: var(--pk-sans);
	font-size: 16px;
	line-height: 1.55;
	padding: var(--pk-header-offset) 0 72px;
}

/* Scoped reset — applies only inside the menu. */
.pk-menu-root *,
.pk-menu-root *::before,
.pk-menu-root *::after {
	box-sizing: border-box;
}

.pk-menu-root h1,
/*.pk-menu-root h2,*/
/*.pk-menu-root p,*/
.pk-menu-root ol,
.pk-menu-root ul,
.pk-menu-root figure {
	margin: 0;
	padding: 0;
}

.pk-menu-root ol,
.pk-menu-root ul {
	list-style: none;
}

.pk-menu-root a {
	color: inherit;
	text-decoration: none;
}

.pk-menu-root img {
	display: block;
	max-width: 100%;
	height: auto;
}

.pk-menu-root button {
	font: inherit;
	color: inherit;
	cursor: pointer;
}

.pk-menu-root :focus-visible {
	outline: 2px solid var(--pk-gold-hi);
	outline-offset: 3px;
	border-radius: 4px;
}

.pk-wrap {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}

.pk-ico {
	width: 1em;
	height: 1em;
	flex: none;
}

/* ---------------------------------------------------------------- Headings */

.pk-eyebrow {
	color: var(--pk-gold);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.pk-head {
	position: relative;
	text-align: center;
	max-width: 960px;
	margin: 0 auto 44px;
	padding-bottom: 28px;
}

/* Short gold rule closing the hero, echoing the section dividers below. */
.pk-head::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 64px;
	height: 2px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, var(--pk-gold), transparent);
}

.pk-title {
	font-family: var(--pk-serif);
	font-size: clamp(27px, 4.4vw, 46px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.015em;
	/* Keep the headline on one line wherever it fits; wrap sensibly if not. */
	text-wrap: balance;
	color: var(--pk-gold-hi);
	margin-top: 14px;
}

.pk-sub {
	color: var(--pk-muted);
	font-size: 15px;
	line-height: 1.6;
	margin-top: 14px;
}

/* ----------------------------------------------------------- Filter bar */

.pk-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 44px;
}

.pk-filter {
	background: var(--pk-surface);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	color: var(--pk-muted);
	font-size: 13px;
	font-weight: 600;
	padding: 9px 20px;
	transition: color var(--pk-ease), background var(--pk-ease), border-color var(--pk-ease);
}

.pk-filter:hover {
	border-color: var(--pk-gold);
	color: var(--pk-gold-hi);
}

.pk-filter.is-active {
	background: var(--pk-gold);
	border-color: var(--pk-gold);
	color: #000;
}

.pk-linkbtn {
	background: none;
	border: 0;
	color: var(--pk-gold-hi);
	text-decoration: underline;
	padding: 0;
}

.pk-empty {
	text-align: center;
	color: var(--pk-muted);
	padding: 40px 0;
}

/* -------------------------------------------------------------- Sections */

.pk-section {
	margin-bottom: 72px;
	scroll-margin-top: var(--pk-header-offset);
}

.pk-section[hidden] {
	display: none;
}

.pk-section-head {
	border-bottom: 1px solid var(--pk-line-gold);
	padding-bottom: 16px;
	margin-bottom: 30px;
}

.pk-section-title {
	font-family: var(--pk-serif);
	font-size: 24px;
	font-weight: 700;
	color: var(--pk-gold-hi);
}

.pk-section-note {
	color: var(--pk-muted);
	font-size: 13px;
	margin-top: 4px;
}

/* ------------------------------------------------------------- Menu grid */

.pk-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 22px;
}

.pk-card {
	display: flex;
	flex-direction: column;
	background: var(--pk-surface);
	border: 1px solid var(--pk-line);
	border-radius: var(--pk-r);
	overflow: hidden;
	transition: transform var(--pk-ease), border-color var(--pk-ease), box-shadow var(--pk-ease);
}

.pk-card:not(.pk-card--static):hover,
.pk-card:not(.pk-card--static):focus-visible {
	border-color: var(--pk-gold);
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
}

.pk-card-media {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: #000;
	overflow: hidden;
}

.pk-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.pk-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 6px;
	padding: 18px;
}

.pk-card-title {
	font-family: var(--pk-serif);
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
}

.pk-card-desc {
	color: var(--pk-muted);
	font-size: 13px;
	line-height: 1.5;
}

.pk-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-top: auto;
	padding-top: 14px;
}

.pk-price {
	font-size: 19px;
	font-weight: 800;
	color: var(--pk-gold);
	letter-spacing: -0.01em;
}

.pk-card-link {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pk-gold-hi);
}

.pk-card-link .pk-ico {
	width: 12px;
	height: 12px;
}

/* -------------------------------------------------------- Breadcrumbs */

.pk-crumbs {
	margin-bottom: 26px;
	font-size: 14px;
	color: var(--pk-text-gray, #cfcfd4);
}

.pk-crumbs ol {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
}

.pk-crumbs a {
	color: #d8d8de;
	transition: color var(--pk-ease);
}

.pk-crumbs a:hover,
.pk-crumbs a:focus-visible {
	color: var(--pk-gold-hi);
}

.pk-crumbs .pk-ico {
	width: 12px;
	height: 12px;
	opacity: 0.55;
}

.pk-crumbs [aria-current="page"] {
	color: var(--pk-gold-hi);
	font-weight: 600;
}

/* -------------------------------------------------------- Dish landing */

.pk-dish {
	background: var(--pk-surface);
	border: 1px solid #282417;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 22px 54px rgba(0, 0, 0, 0.85);
}

.pk-dish-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	padding: 34px;
	align-items: center;
}

.pk-dish-media {
	border-radius: var(--pk-r);
	overflow: hidden;
	background: #000;
	aspect-ratio: 1 / 1;
}

.pk-dish-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pk-dish-info {
	display: flex;
	flex-direction: column;
}

.pk-dish-title {
	font-family: var(--pk-serif);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 700;
	line-height: 1.14;
	letter-spacing: -0.01em;
	margin-top: 10px;
}

.pk-dish-price {
	font-size: 27px;
	font-weight: 800;
	color: var(--pk-gold);
	margin-top: 10px;
}

.pk-dish-price--note {
	font-size: 19px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.pk-dish-desc {
	color: var(--pk-muted);
	font-size: 15px;
	line-height: 1.65;
	margin-top: 14px;
}

/* --------------------------------------------------- Order your way */

.pk-order {
	margin-top: 30px;
}

.pk-order-rule {
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--pk-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.pk-order-rule::before,
.pk-order-rule::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--pk-line-gold);
}

.pk-order-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

/* Five cards (Toast added) wrap to a tidier 3 + 2. */
.pk-order-grid[data-count="5"] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pk-order-grid[data-count="3"] {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pk-order-grid[data-count="2"] {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pk-order-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 124px;
	padding: 16px 6px 13px;
	text-align: center;
	background: var(--pk-surface-2);
	border: 1px solid var(--pk-line-gold);
	border-radius: 12px;
	transition: transform var(--pk-ease), border-color var(--pk-ease), background var(--pk-ease);
}

.pk-order-card:hover,
.pk-order-card:focus-visible {
	border-color: var(--pk-gold);
	background: rgba(212, 175, 55, 0.08);
	transform: translateY(-3px);
}

.pk-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-height: 50px;
	width: 100%;
	min-width: 0;
}

.pk-brand-svg {
	display: block;
	max-width: 100%;
	height: auto;
}

.pk-brand-ico .pk-ico {
	width: 26px;
	height: 26px;
	color: var(--pk-gold);
}

.pk-brand-label {
	font-size: 11.5px;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
}

.pk-order-cta {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: var(--pk-gold);
}

/* ----------------------------------------------------- Highlights bar */

.pk-highlights {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #070709;
	border-top: 1px solid var(--pk-line);
	padding: 18px 24px;
}

.pk-highlight {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 4px 14px;
	border-right: 1px solid #202028;
}

.pk-highlight:last-child {
	border-right: 0;
}

.pk-highlight-ico {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: none;
	border-radius: 50%;
	border: 1px solid var(--pk-line-gold);
	background: rgba(212, 175, 55, 0.05);
	color: var(--pk-gold);
}

.pk-highlight-ico .pk-ico {
	width: 17px;
	height: 17px;
}

.pk-highlight-txt strong {
	display: block;
	font-size: 13px;
	font-weight: 600;
}

.pk-highlight-txt span {
	display: block;
	font-size: 11px;
	color: var(--pk-muted);
}

/* ------------------------------------------------- Related + backlink */

.pk-related {
	margin-top: 76px;
}

.pk-related-title {
	font-family: var(--pk-serif);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--pk-gold-hi);
	border-bottom: 1px solid var(--pk-line-gold);
	padding-bottom: 18px;
	margin-bottom: 34px;
}

.pk-backlink {
	margin-top: 56px;
	padding-top: 26px;
	border-top: 1px solid var(--pk-line);
	font-size: 14px;
}

.pk-backlink a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 2px;
	color: var(--pk-muted);
}

.pk-backlink a:hover {
	color: var(--pk-gold);
}

/* --------------------------------------------------------- Bottom CTA */

.pk-cta {
	margin-top: 24px;
	padding: 34px;
	background: var(--pk-surface);
	border: 1px solid #282417;
	border-radius: 20px;
	text-align: center;
}

.pk-cta-title {
	font-family: var(--pk-serif);
	font-size: 26px;
	font-weight: 700;
	color: var(--pk-gold-hi);
}

.pk-cta-sub {
	color: var(--pk-muted);
	font-size: 14px;
	margin-top: 6px;
}

.pk-cta .pk-order {
	max-width: 620px;
	margin-inline: auto;
}

/* ------------------------------------------------- Missing-photo tile */

.pk-noimg {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	height: 100%;
	min-height: 140px;
	background:
		radial-gradient(circle at 50% 38%, rgba(212, 175, 55, 0.13), transparent 62%),
		var(--pk-surface-2);
	color: var(--pk-muted);
	text-align: center;
}

.pk-noimg-mark {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	border: 1px solid var(--pk-line-gold);
	border-radius: 50%;
	color: var(--pk-gold-hi);
}

.pk-noimg-mark .pk-ico {
	width: 22px;
	height: 22px;
}

.pk-noimg-text {
	font-size: 10.5px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.75;
}

/* ------------------------------------------------------------ Responsive */

/* Once there is room, the headline sits on a single line. */
@media (min-width: 860px) {
	.pk-title {
		white-space: nowrap;
	}
}


@media (max-width: 900px) {
	.pk-dish-grid {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.pk-highlights {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}

	.pk-highlight {
		border-right: 0;
	}
}

@media (max-width: 600px) {
	.pk-menu-root {
		--pk-header-offset: 96px;
		padding-bottom: 56px;
	}

	.pk-order-grid,
	.pk-order-grid[data-count="3"],
	.pk-order-grid[data-count="5"] {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pk-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.pk-card-body {
		padding: 14px;
	}

	.pk-card-title {
		font-size: 16px;
	}

	.pk-card-desc {
		font-size: 12px;
	}

	.pk-highlights {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.pk-cta {
		padding: 24px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pk-menu-root * {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.pk-card:hover,
	.pk-order-card:hover {
		transform: none;
	}
}

/* ------------------------------------------------------------------ tags */

.pk-menu-root .pk-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 14px;
	padding: 0;
}

.pk-menu-root .pk-tag {
	font-family: var(--pk-sans);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--pk-gold-hi);
	border: 1px solid var(--pk-line-gold);
	border-radius: 999px;
	padding: 4px 12px;
	background: var(--pk-surface);
}

.pk-menu-root .pk-tag--allergen {
	color: #f0a8a8;
	border-color: #4a2323;
}

/* ------------------------------------------------------------------- faq */

/* About Product — the five-paragraph SEO / AEO / GEO block per dish. */
.pk-menu-root .pk-about {
	/*max-width: 800px;*/
	padding: 30px;
	margin-top: 44px;
	padding-top: 34px;
	border-top: 1px solid var(--pk-line);
}

.pk-menu-root .pk-about-title {
	font-family: var(--pk-serif) !important;
	font-size: clamp(21px, 2.8vw, 27px);
	font-weight: 600;
	line-height: 1.3;
	color: var(--pk-fg) !important;
	margin: 0 0 8px;
}

.pk-menu-root .pk-about-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 2px;
	margin-top: 12px;
	background: linear-gradient(90deg, var(--pk-gold), transparent);
}

.pk-menu-root .pk-about-par {
	margin: 16px 0 0;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--pk-muted);

}

/* The answer-first sentence — the one AI Overviews and voice assistants
   lift — reads slightly brighter than the rest. */
.pk-menu-root .pk-about-par:first-of-type {
	color: var(--pk-fg);
}

.pk-menu-root .pk-about-par a {
	color: var(--pk-gold-hi);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pk-menu-root .pk-about-par a:hover,
.pk-menu-root .pk-about-par a:focus-visible {
	color: var(--pk-gold);
}

@media (max-width: 640px) {
	.pk-menu-root .pk-about {
		margin-top: 34px;
		padding-top: 26px;
	}
}

.pk-menu-root .pk-faq {
	margin-top: 44px;
	padding-top: 34px;
	border-top: 1px solid var(--pk-line);
	padding: 30px;
}

.pk-menu-root .pk-faq-eyebrow {
	margin: 0 0 6px;
}

/* Explicit everything, with !important on the properties the theme is known
   to force onto h2s (uppercase, wide letterspacing, text-shadow) — theme
   selectors can carry IDs, so specificity alone is not enough. Scoped under
   .pk-menu-root, so nothing outside the menu is touched. */
.pk-menu-root .pk-faq-title,
.pk-menu-root .pk-related-title {
	font-family: var(--pk-serif) !important;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 600;
	line-height: 1.25;
	color: var(--pk-fg) !important;
	letter-spacing: 0.01em !important;
	text-transform: none !important;
	text-shadow: none !important;
	text-align: left;
	/*margin: 0 0 6px;*/
	/*padding: 0;*/
}

.pk-menu-root .pk-faq-title::after {
	content: "";
	display: block;
	width: 56px;
	height: 2px;
	margin-top: 12px;
	background: linear-gradient(90deg, var(--pk-gold), transparent);
	border-radius: 2px;
}

.pk-menu-root .pk-faq-list {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pk-menu-root .pk-faq-item {
	border: 1px solid var(--pk-line);
	border-radius: 14px;
	background: linear-gradient(180deg, var(--pk-surface), var(--pk-surface-2));
	overflow: hidden;
	transition: border-color 0.2s ease;
}

.pk-menu-root .pk-faq-item:hover,
.pk-menu-root .pk-faq-item[open] {
	border-color: var(--pk-line-gold);
}

.pk-menu-root .pk-faq-item[open] {
	box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.12), 0 14px 30px rgba(0, 0, 0, 0.35);
}

.pk-menu-root .pk-faq-q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	list-style: none;
	padding: 16px 18px;
	-webkit-tap-highlight-color: transparent;
}

.pk-menu-root .pk-faq-q::-webkit-details-marker,
.pk-menu-root .pk-faq-q::marker {
	display: none;
	content: "";
}

.pk-menu-root .pk-faq-q-text {
	font-family: var(--pk-sans);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
	color: var(--pk-fg);
	text-transform: none;
	letter-spacing: 0;
	transition: color 0.2s ease;
}

.pk-menu-root .pk-faq-item[open] .pk-faq-q-text,
.pk-menu-root .pk-faq-q:hover .pk-faq-q-text {
	color: var(--pk-gold-hi);
}

/* The +/x toggle: a gold-ringed circle whose bars rotate on open. */
.pk-menu-root .pk-faq-ico {
	position: relative;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border: 1px solid var(--pk-line-gold);
	border-radius: 999px;
	transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
}

.pk-menu-root .pk-faq-ico::before,
.pk-menu-root .pk-faq-ico::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: var(--pk-gold);
	border-radius: 2px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, background 0.2s ease;
}

.pk-menu-root .pk-faq-ico::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.pk-menu-root .pk-faq-item[open] .pk-faq-ico {
	background: var(--pk-gold);
	border-color: var(--pk-gold);
	transform: rotate(135deg);
}

.pk-menu-root .pk-faq-item[open] .pk-faq-ico::before,
.pk-menu-root .pk-faq-item[open] .pk-faq-ico::after {
	background: #060608;
}

.pk-menu-root .pk-faq-q:focus-visible {
	outline: 2px solid var(--pk-gold-hi);
	outline-offset: -2px;
	border-radius: 14px;
}

.pk-menu-root .pk-faq-a {
	padding: 0 18px 18px;
	animation: pk-faq-reveal 0.25s ease;
}

.pk-menu-root .pk-faq-a p {
	font-family: var(--pk-sans);
	font-size: 14.5px;
	line-height: 1.75;
	color: var(--pk-muted);
	margin: 0;
	padding: 14px 0 0 16px;
	border-left: 2px solid var(--pk-line-gold);
	position: relative;
}

.pk-menu-root .pk-faq-a p::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 -2px;
	width: 2px;
	background: linear-gradient(180deg, var(--pk-gold), transparent);
}

@keyframes pk-faq-reveal {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 600px) {
	.pk-menu-root .pk-faq {
		margin-top: 34px;
		padding-top: 26px;
	}

	.pk-menu-root .pk-faq-item {
		margin-bottom: 12px;
	}

	.pk-menu-root .pk-faq-q {
		padding: 16px;
		gap: 12px;
	}

	.pk-menu-root .pk-faq-q-text {
		font-size: 15px;
		line-height: 1.45;
	}

	.pk-menu-root .pk-faq-a {
		padding: 2px 16px 18px;
		font-size: 14px;
		line-height: 1.7;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pk-menu-root .pk-faq-a {
		animation: none;
	}

	.pk-menu-root .pk-faq-ico,
	.pk-menu-root .pk-faq-ico::before,
	.pk-menu-root .pk-faq-ico::after {
		transition: none;
	}
}

/* -------------------------------------------------- sticky mobile order bar */

.pk-menu-root .pk-sticky-order {
	display: none;
}

@media (max-width: 782px) {
	.pk-menu-root .pk-sticky-order {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 9999;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
		background: rgba(6, 6, 8, 0.96);
		border-top: 1px solid var(--pk-line-gold);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		/* Always visible: pinned above the browser bar on every menu
		   screen, no scroll threshold. */
		transform: translateY(0);
	}

	.pk-menu-root .pk-sticky-order.is-visible {
		transform: translateY(0);
	}

	/* Row 2 — the platform quick links (dish pages only). */
	.pk-menu-root .pk-sticky-order-row {
		display: flex;
		align-items: center;
		gap: 10px;
		min-width: 0;
	}

	/* Row 1 — the site buttons, matching the theme's mobile bar. */
	.pk-menu-root .pk-sticky-cta {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.pk-menu-root .pk-sticky-cta-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		padding: 10px 12px;
		font-family: var(--pk-sans);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		text-decoration: none;
		color: #fff;
		background: rgba(255, 255, 255, 0.04);
		border: 1px solid rgba(255, 255, 255, 0.28);
		border-radius: 8px;
	}

	.pk-menu-root .pk-sticky-cta-btn--gold {
		color: #060608;
		background: var(--pk-gold);
		border-color: var(--pk-gold);
	}

	.pk-menu-root .pk-sticky-cta-btn:hover,
	.pk-menu-root .pk-sticky-cta-btn:focus-visible {
		border-color: var(--pk-gold-hi);
		color: var(--pk-gold-hi);
	}

	.pk-menu-root .pk-sticky-cta-btn--gold:hover,
	.pk-menu-root .pk-sticky-cta-btn--gold:focus-visible {
		background: var(--pk-gold-hi);
		color: #060608;
	}

	/* Index bar: always visible (no scroll threshold), just the buttons. */
	.pk-menu-root .pk-sticky-order--index {
		transform: translateY(0);
	}

	.pk-menu-root .pk-sticky-order-label {
		font-family: var(--pk-sans);
		font-size: 11px;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: var(--pk-gold);
		white-space: nowrap;
	}

	.pk-menu-root .pk-sticky-order-links {
		display: flex;
		gap: 8px;
		flex: 1;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.pk-menu-root .pk-sticky-order-links::-webkit-scrollbar {
		display: none;
	}

	.pk-menu-root .pk-sticky-order-link {
		flex: 1 0 auto;
		text-align: center;
		font-family: var(--pk-sans);
		font-size: 13px;
		font-weight: 700;
		color: #060608;
		background: var(--pk-gold);
		border: 0;
		border-radius: 8px;
		padding: 10px 14px;
		text-decoration: none;
		min-height: 40px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.pk-menu-root .pk-sticky-order-link:hover,
	.pk-menu-root .pk-sticky-order-link:focus-visible {
		background: var(--pk-gold-hi);
		color: #060608;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pk-menu-root .pk-sticky-order {
		transition: none;
	}
}

/* ==================================================================
   Mobile polish — responsive audit fixes
   ================================================================== */

/* FAQ answers may contain internal dish links (auto cross-links) and
   editor-written formatting from the Rank Math FAQ block. */
.pk-menu-root .pk-faq-link {
	color: var(--pk-gold-hi);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.pk-menu-root .pk-faq-link:hover,
.pk-menu-root .pk-faq-link:focus-visible {
	color: var(--pk-gold);
}

.pk-menu-root .pk-faq-a p {
	margin: 0 0 10px;
}

.pk-menu-root .pk-faq-a p:last-child {
	margin-bottom: 0;
}

.pk-menu-root .pk-faq-a ul,
.pk-menu-root .pk-faq-a ol {
	margin: 0 0 10px;
	padding-left: 20px;
}

.pk-menu-root .pk-faq-a a {
	color: var(--pk-gold-hi);
	text-decoration: underline;
	text-underline-offset: 2px;
}

/* Long dish names must wrap instead of pushing the layout sideways. */
.pk-menu-root .pk-card-title,
.pk-menu-root .pk-dish-title,
.pk-menu-root .pk-faq-q-text,
.pk-menu-root .pk-crumbs {
	overflow-wrap: break-word;
}

/* The sticky order bar shows up to 782px, so DISH pages need bottom
   clearance across that whole range — the index (no bar) keeps a
   normal gap. */
@media (max-width: 782px) {
	.pk-menu-root {
		padding-bottom: 32px;
	}

	.pk-menu-root:has(.pk-sticky-order) {
		padding-bottom: 92px;
	}
}

/* Comfortable touch targets on coarse pointers. */
@media (pointer: coarse) {
	.pk-menu-root .pk-filter {
		min-height: 44px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.pk-menu-root .pk-faq-q {
		min-height: 48px;
	}
}

/* Filter bar: one swipeable row on phones instead of a tall stack of
   wrapped chips. Scrollbar hidden, edges bleed to the screen. */
@media (max-width: 600px) {
	.pk-menu-root .pk-filters {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin-left: -20px;
		margin-right: -20px;
		padding: 4px 20px;
		scroll-snap-type: x proximity;
	}

	.pk-menu-root .pk-filters::-webkit-scrollbar {
		display: none;
	}

	.pk-menu-root .pk-filter {
		flex: 0 0 auto;
		scroll-snap-align: start;
		white-space: nowrap;
	}

	/* Give the dish panel its width back on small screens. */
	.pk-dish-grid {
		padding: 20px 14px;
	}

	/* Tag chips: slightly tighter so a row of three fits a phone. */
	.pk-menu-root .pk-tag {
		font-size: 11px;
	}
}

/* Very small phones: everything single-file, nothing cramped. */
@media (max-width: 380px) {
	.pk-menu-root .pk-order-grid,
	.pk-menu-root .pk-order-grid[data-count="3"],
	.pk-menu-root .pk-order-grid[data-count="5"] {
		grid-template-columns: 1fr;
	}

	.pk-menu-root .pk-grid {
		grid-template-columns: 1fr;
	}

	.pk-wrap {
		padding: 0 14px;
	}

	/* Filter strip bleed matches the narrower wrap padding. */
	.pk-menu-root .pk-filters {
		margin-left: -14px;
		margin-right: -14px;
		padding-left: 14px;
		padding-right: 14px;
	}
}
