/* Design 7 — Spotlight Stage (eye-catching, photo-first) */

.the-menu-section:has(.the-menu-design-7) {
	padding-top: 4px;
	padding-bottom: 48px;
}

.the-menu-design-7.the-menu-category-block {
	position: relative;
	margin-bottom: 64px;
	padding: 0;
	background: transparent;
}

/* Category header — bold, short, impossible to miss */
.the-menu-design-7 .the-menu-category-header--spotlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 28px;
	gap: 6px;
}

.the-menu-design-7 .the-menu-category-kicker {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--tm-red);
}

.the-menu-design-7 .the-menu-category-title--spotlight {
	margin: 0;
	font-family: var(--tm-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 700;
	line-height: 1.05;
	color: var(--tm-dark);
	text-transform: capitalize;
	letter-spacing: -0.03em;
}

.the-menu-design-7 .the-menu-category-rule--spotlight {
	display: block;
	width: 64px;
	height: 4px;
	margin-top: 8px;
	border-radius: 4px;
	background: var(--tm-red);
	animation: tm-spotlight-rule 1.1s ease both;
}

@keyframes tm-spotlight-rule {
	from { width: 0; opacity: 0; }
	to { width: 64px; opacity: 1; }
}

/* Featured cinematic stage */
.the-menu-design-7 .the-menu-spotlight-stage {
	margin-bottom: 22px;
}

.the-menu-design-7 .the-menu-card {
	cursor: pointer;
	overflow: hidden;
	animation: tm-spotlight-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.the-menu-design-7 .the-menu-spotlight-stage .the-menu-card { animation-delay: 0.05s; }
.the-menu-design-7 .the-menu-items-wrap--spotlight .the-menu-card:nth-child(1) { animation-delay: 0.12s; }
.the-menu-design-7 .the-menu-items-wrap--spotlight .the-menu-card:nth-child(2) { animation-delay: 0.18s; }
.the-menu-design-7 .the-menu-items-wrap--spotlight .the-menu-card:nth-child(3) { animation-delay: 0.24s; }
.the-menu-design-7 .the-menu-items-wrap--spotlight .the-menu-card:nth-child(4) { animation-delay: 0.3s; }
.the-menu-design-7 .the-menu-items-wrap--spotlight .the-menu-card:nth-child(n+5) { animation-delay: 0.34s; }

@keyframes tm-spotlight-in {
	from {
		opacity: 0;
		transform: translateY(22px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.the-menu-design-7 .the-menu-card,
	.the-menu-design-7 .the-menu-category-rule--spotlight {
		animation: none;
	}
}

.the-menu-design-7 .the-menu-card--spotlight-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.7fr);
	min-height: 420px;
	background: #1a1410;
	border-radius: 22px;
	box-shadow: 0 18px 50px rgba(26, 20, 16, 0.28);
	transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-featured:hover,
.the-menu-design-7 .the-menu-card--spotlight-featured:focus-within {
	transform: translateY(-4px);
	box-shadow: 0 26px 60px rgba(26, 20, 16, 0.34);
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__media {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	height: 100%;
	background: #2a221c;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__image,
.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__media.is-placeholder .the-menu-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	max-width: none;
	transform: scale(1.02);
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-featured:hover .the-menu-card__image,
.the-menu-design-7 .the-menu-card--spotlight-featured:focus-within .the-menu-card__image {
	transform: scale(1.08);
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__media-shade {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 55%, rgba(26, 20, 16, 0.55) 100%),
		linear-gradient(180deg, transparent 60%, rgba(26, 20, 16, 0.35) 100%);
	pointer-events: none;
	z-index: 1;
}

.the-menu-design-7 .the-menu-badge--spotlight {
	position: absolute;
	top: 18px;
	left: 18px;
	z-index: 3;
	padding: 7px 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tm-white);
	background: var(--tm-red);
	border-radius: 6px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 14px;
	padding: clamp(28px, 4vw, 44px);
	color: #f5efe8;
	background:
		radial-gradient(ellipse 90% 70% at 100% 0%, color-mix(in srgb, var(--tm-red) 22%, transparent) 0%, transparent 60%),
		#1a1410;
}

.the-menu-design-7 .the-menu-card__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--tm-red) 75%, #fff);
}

.the-menu-design-7 .the-menu-card__eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--tm-red);
	animation: tm-spotlight-pulse 1.6s ease-in-out infinite;
}

@keyframes tm-spotlight-pulse {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(1.35); opacity: 0.7; }
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__title {
	margin: 0;
	font-family: var(--tm-serif);
	font-size: clamp(1.85rem, 3.4vw, 2.6rem);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-transform: capitalize;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__title a {
	color: #fff;
	text-decoration: none;
}

.the-menu-design-7 .the-menu-card--spotlight-featured:hover .the-menu-card__title a,
.the-menu-design-7 .the-menu-card--spotlight-featured:focus-within .the-menu-card__title a {
	color: #fff;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(245, 239, 232, 0.78);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 14px 20px;
	margin-top: 8px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.the-menu-design-7 .the-menu-card__price-block {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.the-menu-design-7 .the-menu-card__price-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(245, 239, 232, 0.55);
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__price--spotlight {
	margin: 0;
	font-size: clamp(1.8rem, 3vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff;
	line-height: 1.1;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-price-variants--block {
	gap: 6px;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-price-variants__label {
	color: rgba(245, 239, 232, 0.7);
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-price-variants__price {
	color: #fff;
	font-size: 1.15rem;
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__group-price {
	margin: 0;
	font-size: 13px;
	font-weight: 600;
	color: rgba(245, 239, 232, 0.6);
}

.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__group-price span {
	color: var(--tm-orange);
	margin-left: 4px;
}

.the-menu-design-7 .the-menu-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	margin-left: auto;
	padding: 12px 18px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #fff;
	background: var(--tm-red);
	border-radius: 10px;
	transition: transform 0.25s ease, background 0.25s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-featured:hover .the-menu-card__cta,
.the-menu-design-7 .the-menu-card--spotlight-featured:focus-within .the-menu-card__cta {
	transform: translateX(3px);
	background: color-mix(in srgb, var(--tm-red) 85%, #000);
}

.the-menu-design-7 .the-menu-card__cta-arrow {
	transition: transform 0.25s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-featured:hover .the-menu-card__cta-arrow,
.the-menu-design-7 .the-menu-card--spotlight-featured:focus-within .the-menu-card__cta-arrow {
	transform: translateX(3px);
}

/* Tile grid — large food photos */
.the-menu-design-7 .the-menu-items-wrap--spotlight {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.the-menu-design-7 .the-menu-card--spotlight-tile {
	position: relative;
	border-radius: 18px;
	background: #1a1410;
	box-shadow: 0 10px 28px rgba(26, 20, 16, 0.16);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-tile:hover,
.the-menu-design-7 .the-menu-card--spotlight-tile:focus-within {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(26, 20, 16, 0.24);
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #2a221c;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__image,
.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__media.is-placeholder .the-menu-card__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	max-width: none;
	transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-tile:hover .the-menu-card__image,
.the-menu-design-7 .the-menu-card--spotlight-tile:focus-within .the-menu-card__image {
	transform: scale(1.1);
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__media-shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(16, 12, 10, 0.92) 100%);
	pointer-events: none;
	z-index: 1;
	transition: opacity 0.3s ease;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__dock {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 12px;
	padding: 20px 18px 16px;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__title {
	margin: 0;
	flex: 1;
	min-width: 0;
	font-family: var(--tm-serif);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-weight: 700;
	line-height: 1.25;
	text-transform: capitalize;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__title a {
	color: #fff;
	text-decoration: none;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__price--spotlight {
	flex-shrink: 0;
	margin: 0;
	padding: 8px 12px;
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	background: var(--tm-red);
	border-radius: 8px;
	white-space: nowrap;
	line-height: 1;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-price-variants--inline {
	align-items: flex-end;
	gap: 4px;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-price-variants__label {
	color: rgba(255, 255, 255, 0.75);
	font-size: 11px;
}

.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-price-variants__price {
	color: #fff;
	background: var(--tm-red);
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 13px;
}

.the-menu-design-7 .the-menu-card__group-price--tile {
	margin: 0;
	padding: 8px 14px 12px;
	font-size: 12px;
	font-weight: 600;
	color: rgba(245, 239, 232, 0.7);
	background: #1a1410;
}

.the-menu-design-7 .the-menu-card__group-price--tile span {
	color: var(--tm-orange);
	margin-left: 4px;
}

/* Responsive */
@media (max-width: 959px) {
	.the-menu-design-7 .the-menu-card--spotlight-featured {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__media {
		min-height: 280px;
		aspect-ratio: 16 / 11;
	}

	.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__media-shade {
		background: linear-gradient(180deg, transparent 40%, rgba(26, 20, 16, 0.5) 100%);
	}

	.the-menu-design-7 .the-menu-card__cta {
		margin-left: 0;
	}
}

@media (max-width: 640px) {
	.the-menu-design-7.the-menu-category-block {
		margin-bottom: 48px;
	}

	.the-menu-design-7 .the-menu-category-title--spotlight {
		font-size: clamp(1.75rem, 8vw, 2.2rem);
	}

	.the-menu-design-7 .the-menu-items-wrap--spotlight {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__media {
		min-height: 220px;
	}

	.the-menu-design-7 .the-menu-card--spotlight-featured .the-menu-card__body {
		padding: 22px 20px 24px;
		gap: 10px;
	}

	.the-menu-design-7 .the-menu-card--spotlight-tile .the-menu-card__media {
		aspect-ratio: 5 / 4;
	}
}
