/* No Stress Menu — carta frontend */

.nsm-menu {
	--nsm-ink: #1c1d20;
	--nsm-muted: #8b9099;
	--nsm-line: #ececef;
	--nsm-accent: #2f7fbf;
	max-width: 1080px;
	margin: 0 auto;
	padding: 8px 20px 40px;
	color: var(--nsm-ink);
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* ---- Cabecera ---- */
.nsm-intro {
	text-align: center;
	margin: 0 auto 56px;
	max-width: 640px;
}
.nsm-eyebrow {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: var(--nsm-accent);
	margin-bottom: 14px;
}
.nsm-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
	font-size: 54px;
	line-height: 1.05;
	margin: 0 0 18px;
	color: var(--nsm-ink);
}
.nsm-subtitle {
	font-size: 15px;
	line-height: 1.6;
	color: var(--nsm-muted);
	margin: 0;
}

/* ---- Categoría ---- */
.nsm-category {
	margin-bottom: 56px;
}
.nsm-cat-head {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 28px;
}
.nsm-cat-icon {
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: color-mix(in srgb, var(--nsm-accent) 12%, #fff);
	color: var(--nsm-accent);
}
.nsm-cat-icon svg { width: 26px; height: 26px; }
.nsm-cat-title {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 500;
	font-size: 30px;
	line-height: 1.1;
	margin: 0;
}
.nsm-cat-sub {
	font-size: 13px;
	font-style: italic;
	color: var(--nsm-muted);
	margin: 4px 0 0;
}

/* ---- Platos: 2 columnas ---- */
.nsm-items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 52px;
	row-gap: 0;
}
.nsm-item {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	border-top: 1px solid var(--nsm-line);
}
/* divisor vertical entre columnas */
.nsm-items .nsm-item:nth-child(even) {
	padding-left: 52px;
	border-left: 1px solid var(--nsm-line);
	margin-left: -52px;
}
.nsm-item-name {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.2;
	margin: 0 0 5px;
	color: var(--nsm-ink);
}
.nsm-item-desc {
	font-size: 13px;
	line-height: 1.5;
	font-style: italic;
	color: var(--nsm-muted);
	margin: 0;
}
.nsm-item-price {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 500;
	color: var(--nsm-accent);
	white-space: nowrap;
	padding-top: 3px;
}

/* plato destacado (p.ej. suplemento sin gluten) */
.nsm-item.is-highlight {
	background: #f7f8fa;
	border-radius: 8px;
	border-top-color: transparent;
	padding: 18px 22px;
	margin-top: 8px;
}
.nsm-items .nsm-item.is-highlight:nth-child(even) {
	border-left: none;
}
.nsm-item.is-highlight .nsm-item-name {
	font-size: 15px;
	color: var(--nsm-muted);
	font-family: "Inter", sans-serif;
	font-weight: 500;
}

/* ---- Banda de imagen de categoría ---- */
.nsm-cat-image {
	margin: 36px 0 0;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}
.nsm-cat-image img {
	display: block;
	width: 100%;
	height: clamp(220px, 30vw, 420px);
	object-fit: cover;
}

/* ---- Nota al pie ---- */
.nsm-footnote {
	text-align: center;
	font-size: 13px;
	font-style: italic;
	color: var(--nsm-muted);
	max-width: 640px;
	margin: 20px auto 0;
	padding-top: 28px;
	border-top: 1px solid var(--nsm-line);
}

/* ---- Responsive ---- */
@media (max-width: 720px) {
	.nsm-title { font-size: 42px; }
	.nsm-items { grid-template-columns: 1fr; column-gap: 0; }
	.nsm-items .nsm-item:nth-child(even) {
		padding-left: 0;
		border-left: none;
		margin-left: 0;
	}
}
