:root {
  --black: #050505;
  --white: #ffffff;
  --paper: #f8f6f1;
  --line: #ded9ce;
  --muted: #6a655e;
  --accent: #d97819;
  --accent-soft: #fff0df;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--black);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

body.is-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 10px clamp(14px, 4vw, 44px);
  border-bottom: 1px solid var(--black);
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 38px;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-sub {
  max-width: 82px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 4vw, 44px);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a,
.header-cta {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.header-cta:hover {
  background: var(--black);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--black);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(680px, calc(100svh - 72px));
  overflow: hidden;
  border-bottom: 1px solid var(--black);
  background: linear-gradient(120deg, var(--white), var(--paper));
  color: var(--black);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  left: auto;
  width: 58%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.96) 38%, rgba(255, 255, 255, 0.7) 57%, rgba(255, 255, 255, 0.08) 82%),
    linear-gradient(0deg, rgba(248, 246, 241, 1) 0%, rgba(248, 246, 241, 0) 26%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 92vw);
  padding: clamp(72px, 9vw, 112px) clamp(16px, 4vw, 56px) 96px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.feature-copy h2,
.address-panel h2 {
  margin: 0;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.2rem, 13vw, 11rem);
}

.hero-copy {
  max-width: 600px;
  margin: 18px 0 0;
  color: #252525;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.22;
}

.hero-actions,
.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.button:hover {
  background: var(--black);
  color: var(--white);
}

.button-light,
.button-plain {
  background: var(--white);
  color: var(--black);
}

.button-outline,
.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-outline:hover,
.button-dark:hover {
  background: var(--white);
  color: var(--black);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.hero-strip span {
  min-height: 58px;
  padding: 20px clamp(12px, 2vw, 24px);
  border-right: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--black);
  background: var(--white);
}

.intro-band div {
  display: grid;
  place-items: center;
  min-height: 164px;
  padding: 26px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.number {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
}

.intro-band p {
  max-width: 210px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 590px;
  border-bottom: 1px solid var(--black);
  background: var(--paper);
}

.feature-copy {
  align-self: center;
  padding: clamp(44px, 6vw, 86px);
}

.feature-copy h2,
.address-panel h2 {
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.feature-copy p:not(.eyebrow),
.address-panel p {
  max-width: 520px;
  margin: 22px 0 0;
  color: #252525;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.feature img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-left: 1px solid var(--black);
}

.menu-section {
  padding: clamp(44px, 7vw, 82px) clamp(14px, 4vw, 44px);
  scroll-margin-top: 88px;
  border-bottom: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(3.2rem, 10vw, 9.5rem);
}

.category-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-tab.is-active {
  background: var(--accent-soft);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
}

.menu-card-image {
  width: 100%;
  height: 174px;
  object-fit: cover;
  border-bottom: 1px solid var(--black);
  background: var(--paper);
}

.menu-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0;
  padding: 14px 16px 0;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-card h3 {
  min-height: 0;
  margin: 0;
  padding: 10px 16px 0;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0;
  padding: 12px 16px 0;
  color: #252525;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.36;
}

.menu-card .price {
  margin-top: auto;
  padding: 16px;
  font-size: 1.1rem;
  font-weight: 900;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 600px;
  border-bottom: 1px solid var(--black);
  background: var(--paper);
}

.split-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-right: 1px solid var(--black);
}

.address-panel {
  align-self: center;
  padding: clamp(40px, 6vw, 72px);
}

.facts-list {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.facts-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.facts-list strong,
.facts-list span {
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts-list span {
  color: var(--muted);
  text-align: right;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(14px, 4vw, 44px);
  border-top: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer strong {
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 34px;
  font-weight: 400;
}

@media (max-width: 1180px) {
  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-image {
    width: 64%;
  }
}

@media (max-width: 940px) {
  .feature,
  .split-band {
    grid-template-columns: 1fr;
  }

  .feature img,
  .split-band img {
    min-height: 360px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--black);
  }

  .split-band img {
    order: 2;
  }
}

@media (max-width: 780px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 10px 12px;
  }

  .brand-mark {
    font-size: 32px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  body.is-menu-open .main-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 14px;
    border-bottom: 1px solid var(--black);
    background: var(--white);
  }

  body.is-menu-open .main-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: 690px;
  }

  .hero-image {
    width: 100%;
    opacity: 0.34;
    object-position: 62% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(248, 246, 241, 1) 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0.68) 100%);
  }

  .hero-content {
    padding: 88px 18px 88px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 25vw, 7.2rem);
  }

  .hero-copy {
    font-size: 1.12rem;
  }

  .hero-strip,
  .intro-band {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy,
  .address-panel {
    padding: 44px 18px;
  }

  .feature-copy h2,
  .address-panel h2 {
    font-size: clamp(2.6rem, 14vw, 4.5rem);
  }

  .menu-section {
    padding: 44px 12px;
  }

  .section-head {
    display: block;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card-image {
    height: 190px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-sub {
    display: none;
  }

  .hero-actions,
  .address-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-strip,
  .intro-band {
    grid-template-columns: 1fr;
  }

  .facts-list li {
    display: grid;
    gap: 6px;
  }

  .facts-list span {
    text-align: left;
  }
}

/* Click & Collect module */
.cart-trigger,
.primary-button,
.ghost-button,
.category-button,
.close-button {
  border-radius: var(--radius);
  font-weight: 900;
}

.cart-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-trigger span {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
}

.section-note {
  max-width: 34rem;
  margin: 0 0 10px;
  color: #252525;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.ordering-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) minmax(330px, 380px);
  gap: 14px;
  align-items: start;
  width: min(1500px, 100%);
  margin: 0 auto;
}

.category-panel,
.menu-panel,
.checkout-panel,
.drawer,
.product-modal,
.order-dialog {
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
}

.category-panel,
.checkout-panel {
  position: sticky;
  top: 88px;
}

.category-panel {
  overflow: hidden;
}

.category-panel h3 {
  margin: 0;
  padding: 16px;
  border-bottom: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 1.1rem;
  text-transform: uppercase;
}

.category-list {
  display: grid;
}

.category-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-transform: uppercase;
}

.category-button.is-active {
  background: var(--accent-soft);
}

.category-button small {
  color: var(--muted);
}

.menu-panel {
  min-width: 0;
  overflow: hidden;
}

.menu-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 340px);
  gap: 16px;
  align-items: end;
  padding: 18px;
  border-bottom: 1px solid var(--black);
}

.menu-toolbar h3,
.panel-head h3 {
  margin: 4px 0 0;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.search-box,
.checkout-form legend,
.checkout-form label,
.totals span,
.product-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-box {
  display: grid;
  gap: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--black);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font: inherit;
}

input,
select {
  height: 44px;
  padding: 0 12px;
}

textarea {
  min-height: 82px;
  padding: 12px;
  resize: vertical;
}

.product-list {
  display: grid;
}

.product-section h3 {
  margin: 0;
  padding: 14px 18px;
  border-bottom: 1px solid var(--black);
  background: var(--paper);
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--black);
}

.product-card {
  min-width: 0;
  background: var(--white);
}

.product-button {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  width: 100%;
  min-height: 170px;
  padding: 0;
  border: 0;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.product-button img {
  width: 140px;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border-right: 1px solid var(--black);
  background: var(--paper);
}

.product-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 16px;
}

.product-content strong {
  margin: 8px 0;
  font-size: 1.14rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-content > span:not(.product-meta):not(.product-bottom) {
  color: #252525;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.product-bottom b {
  font-size: 1rem;
}

.product-bottom i {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  font-style: normal;
  font-size: 1.2rem;
}

.checkout-panel {
  padding: 18px;
  scroll-margin-top: 88px;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.1);
}

.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--black);
}

.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--black);
  cursor: pointer;
  font: inherit;
}

.ghost-button {
  background: var(--white);
  color: var(--black);
}

.primary-button {
  background: var(--black);
  color: var(--white);
  text-transform: uppercase;
}

.primary-button:disabled {
  opacity: 0.5;
  cursor: default;
}

.cart-lines {
  display: grid;
  gap: 12px;
  min-height: 72px;
  padding: 16px 0;
}

.empty-cart,
.empty-message {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.empty-message {
  padding: 24px;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-line strong,
.cart-line small,
.cart-line span {
  display: block;
}

.cart-line strong {
  text-transform: uppercase;
}

.cart-line small,
.cart-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.quantity {
  display: grid;
  grid-template-columns: 32px 30px 32px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border: 1px solid var(--black);
  border-radius: var(--radius);
}

.quantity button {
  width: 32px;
  height: 32px;
  border: 0;
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 14px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.checkout-form label {
  display: grid;
  gap: 7px;
}

.radio-row,
.terms-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
  color: var(--black) !important;
  font-size: 0.9rem !important;
  text-transform: none !important;
}

.radio-row input,
.terms-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.totals {
  display: grid;
  gap: 10px;
  padding: 14px 0 0;
  border-top: 1px solid var(--black);
}

.totals div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.grand-total strong {
  font-size: 1.18rem;
}

.checkout-button {
  width: 100%;
  min-height: 52px;
}

.checkout-state {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
}

.modal-backdrop,
.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(5, 5, 5, 0.58);
}

.modal-backdrop.is-open,
.drawer-backdrop.is-open {
  display: grid;
}

.modal-backdrop {
  place-items: center;
  padding: 16px;
}

.product-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1fr);
  width: min(900px, 100%);
  max-height: calc(var(--vh, 1vh) * 100 - 32px);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.16);
}

.product-modal > img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-right: 1px solid var(--black);
  background: var(--paper);
}

.modal-body {
  min-width: 0;
  overflow: auto;
  padding: 22px 22px 86px;
}

.modal-body h2 {
  margin: 6px 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.modal-body p {
  margin: 0 0 14px;
  color: #242424;
  font-weight: 700;
  line-height: 1.4;
}

.option-groups {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.option-group {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--black);
  border-radius: var(--radius);
}

.option-group legend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.option-group small {
  color: var(--muted);
}

.option-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  font-weight: 800;
}

.option-row input {
  width: 18px;
  height: 18px;
}

.modal-actions {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
  width: calc(55.5% - 1px);
  padding: 12px;
  border-top: 1px solid var(--black);
  background: var(--white);
}

.close-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--black);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  font-size: 1.45rem;
}

.order-dialog {
  width: min(450px, calc(100% - 32px));
  padding: 28px;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.16);
}

.order-dialog::backdrop {
  background: rgba(5, 5, 5, 0.58);
}

.dialog-brand {
  display: block;
  font-family: Impact, "Arial Black", Arial, sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.order-dialog h2 {
  margin: 22px 0 10px;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.order-dialog p {
  color: #242424;
  font-weight: 700;
  line-height: 1.45;
}

.order-summary {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.order-summary div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.order-summary span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.order-summary strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-cart {
  display: none;
}

.drawer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 76vh;
  overflow: auto;
  padding: 18px;
  border-radius: 8px 8px 0 0;
}

.drawer-checkout {
  width: 100%;
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .ordering-shell {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .checkout-panel {
    grid-column: 1 / -1;
    position: static;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .cart-trigger {
    min-width: 84px;
    gap: 6px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .cart-trigger span {
    margin: 0;
    min-width: 22px;
    height: 22px;
  }

  .ordering-shell {
    grid-template-columns: 1fr;
  }

  .category-panel {
    position: sticky;
    top: 66px;
    z-index: 20;
  }

  .category-panel h3 {
    display: none;
  }

  .category-list {
    display: flex;
    overflow-x: auto;
  }

  .category-button {
    flex: 0 0 auto;
    min-width: 132px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .menu-toolbar {
    grid-template-columns: 1fr;
  }

  .checkout-panel {
    display: none;
  }

  .mobile-cart {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid var(--black);
    border-radius: var(--radius);
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 18px 50px rgba(5, 5, 5, 0.16);
  }

  .product-modal {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .product-modal > img {
    height: 240px;
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--black);
  }

  .modal-actions {
    position: sticky;
    width: 100%;
  }
}

@media (max-width: 540px) {
  .product-button {
    grid-template-columns: 110px 1fr;
    min-height: 148px;
  }

  .product-button img {
    width: 110px;
    min-height: 148px;
  }

  .product-content {
    padding: 12px;
  }

  .product-content strong {
    font-size: 1rem;
  }
}
