:root {
  --nh-red: #eb0029;
  --nh-red-dark: #b90020;
  --bg: #070707;
  --line: rgba(255, 255, 255, 0.14);
  --text: #fff;
  --muted: #b8b8b8;
  --cream: #fff4e4;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(235,0,41,.26), transparent 30%),
    radial-gradient(circle at 86% 4%, rgba(255,244,228,.07), transparent 32%),
    linear-gradient(135deg, #000, #070707 58%, #120006);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 70%);
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5,5,5,.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 900; letter-spacing: -.03em; }
.logo-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; background: var(--nh-red); box-shadow: 0 16px 36px rgba(235,0,41,.35); font-size: 13px; letter-spacing: .08em; }
.main-nav { display: flex; align-items: center; gap: 26px; color: #dfdfdf; font-size: 14px; font-weight: 800; }
.main-nav a { text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.06); }
.language-switch button { border: 0; color: var(--muted); background: transparent; border-radius: 999px; padding: 8px 10px; font-weight: 800; cursor: pointer; }
.language-switch .active { color: #111; background: var(--cream); }
.header-cta, .btn { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 18px; text-decoration: none; border: 1px solid transparent; font-weight: 900; white-space: nowrap; cursor: pointer; }
.header-cta, .btn.primary { color: #fff; background: linear-gradient(135deg, var(--nh-red), var(--nh-red-dark)); box-shadow: 0 18px 40px rgba(235,0,41,.24); }
.btn.secondary { color: #111; background: var(--cream); }
.btn.ghost { color: #fff; border-color: var(--line); background: rgba(255,255,255,.06); }

.menu-hero, .menu-shell, .seo-copy, .schema-note {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
}
.menu-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .5fr);
  gap: 28px;
  align-items: end;
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px) 32px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; color: var(--cream); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
.eyebrow::before { content: ""; width: 28px; height: 2px; border-radius: 999px; background: var(--nh-red); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; max-width: 980px; font-size: clamp(48px, 7vw, 108px); line-height: .91; letter-spacing: -.08em; }
h2 { margin-bottom: 16px; font-size: clamp(32px, 4.4vw, 62px); line-height: .96; letter-spacing: -.06em; }
p { color: var(--muted); line-height: 1.7; }
.menu-hero p { max-width: 720px; font-size: clamp(17px, 1.6vw, 21px); }
.hero-mode-card { padding: 18px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045)); box-shadow: var(--shadow); }
.hero-mode-card strong { display: block; margin-bottom: 8px; color: var(--cream); font-size: 24px; letter-spacing: -.04em; }
.mode-toggle { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 18px; padding: 6px; border: 1px solid var(--line); border-radius: 999px; background: rgba(0,0,0,.25); }
.mode-button { border: 0; border-radius: 999px; padding: 14px 12px; color: var(--muted); background: transparent; font-weight: 900; cursor: pointer; }
.mode-button.active { color: #111; background: var(--cream); }

.menu-shell { padding: 0 clamp(20px, 5vw, 72px) 48px; }
.menu-layout { display: grid; grid-template-columns: 290px minmax(0, 1fr); gap: 20px; align-items: start; }
.menu-sidebar, .menu-content, .seo-copy, .schema-note { border: 1px solid var(--line); border-radius: 34px; background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.045)); box-shadow: var(--shadow); }
.menu-sidebar { position: sticky; top: 96px; padding: 14px; }
.search-box { width: 100%; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 18px; padding: 14px; color: #fff; background: rgba(255,255,255,.07); outline: none; font-weight: 800; }
.category-list { display: grid; gap: 8px; }
.category-tab { width: 100%; border: 1px solid transparent; border-radius: 18px; padding: 14px; color: #dfdfdf; background: rgba(255,255,255,.055); text-align: left; font-weight: 900; cursor: pointer; }
.category-tab small { display: block; margin-top: 5px; color: var(--muted); font-weight: 600; line-height: 1.35; }
.category-tab.active { color: #111; background: var(--cream); }
.category-tab.active small { color: rgba(0,0,0,.64); }
.menu-content { padding: clamp(16px, 3vw, 28px); }
.menu-toolbar { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 22px; }
.menu-toolbar h2 { margin-bottom: 8px; }
.mode-pill { padding: 10px 13px; border: 1px solid rgba(255,244,228,.26); border-radius: 999px; color: var(--cream); background: rgba(0,0,0,.28); font-size: 13px; font-weight: 900; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.product-card { overflow: hidden; display: flex; flex-direction: column; min-height: 100%; border: 1px solid var(--line); border-radius: 30px; background: rgba(0,0,0,.24); transition: transform .18s ease, border-color .18s ease; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(255,244,228,.34); }
.product-media { position: relative; min-height: 190px; display: flex; align-items: flex-end; padding: 18px; overflow: hidden; }
.product-media::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 40% 38%, rgba(255,255,255,.35), transparent 8%), radial-gradient(circle at 58% 52%, rgba(255,244,228,.25), transparent 13%), radial-gradient(circle at 68% 30%, rgba(235,0,41,.24), transparent 14%); }
.score { position: relative; z-index: 1; padding: 8px 10px; border-radius: 999px; color: var(--cream); background: rgba(0,0,0,.42); font-size: 12px; font-weight: 900; }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.badges span { padding: 7px 9px; border-radius: 999px; color: var(--cream); background: rgba(235,0,41,.18); font-size: 11px; font-weight: 900; }
.product-title-row { display: flex; align-items: start; justify-content: space-between; gap: 12px; margin-bottom: 9px; }
.product-title-row h3 { margin: 0; font-size: 20px; line-height: 1.08; letter-spacing: -.03em; }
.detail-button { flex: 0 0 auto; border: 0; width: 42px; height: 42px; border-radius: 14px; color: #fff; background: rgba(255,255,255,.08); font-weight: 900; cursor: pointer; }
.product-body p { flex: 1; margin-bottom: 16px; font-size: 14px; line-height: 1.55; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 14px; color: rgba(255,255,255,.62); font-size: 12px; font-weight: 800; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; padding-top: 14px; border-top: 1px solid var(--line); }
.price-row small { display: block; color: var(--muted); font-weight: 800; }
.price-row strong { display: block; margin-top: 3px; color: var(--cream); font-size: 25px; letter-spacing: -.05em; }
.add-button { display: none; border: 0; border-radius: 999px; padding: 11px 13px; color: #fff; background: var(--nh-red); font-weight: 900; cursor: pointer; }
body[data-price-mode="delivery"] .add-button { display: inline-flex; }
.dual-price { margin-top: 12px; color: rgba(255,255,255,.56); font-size: 12px; line-height: 1.45; }
.empty-state { grid-column: 1 / -1; padding: 24px; border: 1px dashed var(--line); border-radius: 24px; color: var(--muted); }

.seo-copy, .schema-note { margin-top: 28px; padding: clamp(22px, 4vw, 34px); }
.seo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 20px; }
.seo-card { padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: rgba(0,0,0,.24); }
.seo-card h3 { font-size: 20px; }
.seo-card p { margin: 0; font-size: 14px; }
.schema-note code { color: var(--cream); }

.cart-fab { position: fixed; right: 22px; bottom: 22px; z-index: 45; display: none; align-items: center; gap: 10px; border: 0; border-radius: 999px; padding: 14px 18px; color: #fff; background: linear-gradient(135deg, var(--nh-red), var(--nh-red-dark)); box-shadow: 0 20px 48px rgba(235,0,41,.35); font: inherit; font-weight: 900; cursor: pointer; }
body[data-price-mode="delivery"] .cart-fab { display: inline-flex; }
.cart-count { display: grid; place-items: center; min-width: 24px; height: 24px; border-radius: 999px; color: #111; background: var(--cream); }
.drawer, .modal { position: fixed; inset: 0; z-index: 80; display: none; background: rgba(0,0,0,.62); backdrop-filter: blur(9px); }
.drawer.open, .modal.open { display: block; }
.drawer-panel { position: absolute; right: 16px; top: 16px; bottom: 16px; width: min(480px, calc(100vw - 32px)); overflow: auto; padding: 22px; border: 1px solid var(--line); border-radius: 30px; background: rgba(8,8,8,.96); box-shadow: var(--shadow); }
.drawer-head, .modal-head { display: flex; justify-content: space-between; align-items: start; gap: 12px; margin-bottom: 18px; }
.close-button { border: 0; border-radius: 14px; width: 42px; height: 42px; color: #fff; background: rgba(255,255,255,.08); font-size: 20px; cursor: pointer; }
.cart-items { display: grid; gap: 10px; margin-bottom: 18px; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.055); }
.cart-line small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.4; }
.qty { display: flex; align-items: center; gap: 8px; }
.qty button { border: 0; width: 28px; height: 28px; border-radius: 10px; color: #fff; background: rgba(255,255,255,.1); font-weight: 900; cursor: pointer; }
.cart-form { display: grid; gap: 10px; }
.cart-form label { display: grid; gap: 7px; color: #dfdfdf; font-size: 13px; font-weight: 900; }
.cart-form input, .cart-form select, .cart-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; color: #fff; background: rgba(255,255,255,.07); outline: none; }
.cart-form textarea { min-height: 86px; resize: vertical; }
.cart-total { display: flex; align-items: center; justify-content: space-between; margin: 18px 0; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(235,0,41,.13); }
.cart-total strong { font-size: 28px; color: var(--cream); }
.cart-actions { display: grid; gap: 10px; }
.cart-primary, .cart-secondary { display: flex; justify-content: center; text-decoration: none; border: 0; border-radius: 999px; padding: 14px 16px; font-weight: 900; cursor: pointer; }
.cart-primary { color: #fff; background: var(--nh-red); }
.cart-secondary { color: #111; background: var(--cream); }
.cart-empty { padding: 18px; border: 1px dashed var(--line); border-radius: 20px; color: var(--muted); }

.modal { z-index: 90; align-items: center; justify-content: center; padding: 18px; }
.modal.open { display: flex; }
.modal-card { width: min(860px, 100%); max-height: calc(100vh - 36px); overflow: auto; border: 1px solid var(--line); border-radius: 34px; background: rgba(8,8,8,.98); box-shadow: var(--shadow); }
.modal-media { min-height: 270px; position: relative; }
.modal-body { padding: 24px; }
.modal-body h2 { font-size: clamp(30px, 4vw, 52px); }
.option-group { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.option-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.option-item { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.055); cursor: pointer; }
.option-item input { width: 18px; height: 18px; accent-color: var(--nh-red); }
.option-item span { color: var(--muted); font-size: 13px; font-weight: 800; }
.modal-price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 18px 0; }
.modal-price-grid div { padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.06); }
.modal-price-grid span { display: block; color: var(--muted); font-size: 12px; font-weight: 900; }
.modal-price-grid strong { display: block; margin-top: 4px; color: var(--cream); font-size: 24px; }

.mobile-menu-toggle { display: none; border: 1px solid var(--line); border-radius: 14px; width: 44px; height: 44px; background: rgba(255,255,255,.06); }
.mobile-menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; border-radius: 999px; background: #fff; }
.mobile-menu-panel { display: none; }

@media (max-width: 1120px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-layout { grid-template-columns: 1fr; }
  .menu-sidebar { position: static; }
  .category-list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .menu-hero { grid-template-columns: 1fr; }
  .seo-grid { grid-template-columns: 1fr; }
  .menu-toolbar { align-items: start; flex-direction: column; }
  .category-list { display: flex; overflow-x: auto; scrollbar-width: none; }
  .category-tab { min-width: 172px; }
}
@media (max-width: 720px) {
  .main-nav, .header-actions { display: none; }
  .mobile-menu-toggle { display: block; margin-left: auto; }
  .mobile-menu-panel { position: absolute; left: 16px; right: 16px; top: calc(100% + 10px); z-index: 40; display: none; padding: 12px; border: 1px solid var(--line); border-radius: 24px; background: rgba(5,5,5,.94); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
  .mobile-menu-open .mobile-menu-panel { display: grid; gap: 8px; }
  .mobile-menu-panel a { padding: 14px 16px; border-radius: 16px; text-decoration: none; font-weight: 900; background: rgba(255,255,255,.06); }
  h1 { font-size: clamp(44px, 17vw, 68px); }
  .menu-hero { padding-top: 52px; }
  .product-grid, .option-grid, .modal-price-grid { grid-template-columns: 1fr; }
  .product-media { min-height: 220px; }
  .cart-fab { right: 14px; bottom: 14px; }
}
