@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito+Sans:wght@500;600;700;800;900&display=swap");

:root {
  --cream: #fff8e8;
  --paper: #f7e9cb;
  --yellow: #f4b41a;
  --red: #e9472b;
  --brown: #2b1710;
  --white: #fffdf7;
}

.php-menu-header { position: sticky; top: 0; z-index: 40; }
.php-menu-header .brand { text-decoration: none; }
.php-alert { padding: 12px 16px; border-radius: 14px; margin-bottom: 18px; font-weight: 800; }
.php-alert.ok { background: #dbf4df; color: #17652a; }
.php-alert.error { background: #ffe1da; color: #a72b19; }
.install-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--cream); }
.install-card { width: min(560px, 100%); background: white; border-radius: 34px; padding: 38px; box-shadow: 0 18px 60px rgba(43,23,16,.12); }
.install-card h1 { font: 800 46px/1 "Baloo 2"; margin: 20px 0 10px; }
.install-card p { line-height: 1.6; opacity: .68; }
.install-card label, .php-login label { display: grid; gap: 7px; margin: 18px 0; font-weight: 900; }
.install-card input, .php-login input { border: 2px solid #eadfcd; border-radius: 14px; padding: 13px; font: 700 16px "Nunito Sans"; }
.install-card button, .php-login button { width: 100%; border: 0; border-radius: 16px; padding: 15px; background: var(--red); color: white; font-weight: 900; cursor: pointer; }
.php-admin-top { background: var(--brown); color: white; padding: 20px clamp(18px,5vw,70px); display: flex; justify-content: space-between; align-items: center; }
.php-admin-top a { color: white; }
.php-admin-wrap { max-width: 1350px; margin: 30px auto; padding: 0 20px 70px; display: grid; grid-template-columns: 360px 1fr; gap: 26px; align-items: start; }
.php-admin-card { background: white; border-radius: 26px; padding: 26px; box-shadow: 0 10px 35px rgba(43,23,16,.07); }
.php-admin-card h1, .php-admin-card h2 { font: 800 34px/1 "Baloo 2"; margin: 0 0 20px; }
.php-admin-form { display: grid; gap: 13px; }
.php-admin-form label { display: grid; gap: 6px; font-size: 12px; font-weight: 900; }
.php-admin-form input, .php-admin-form select, .php-admin-form textarea { width: 100%; border: 2px solid #eadfcd; border-radius: 13px; padding: 11px 12px; font: 700 14px "Nunito Sans"; }
.php-admin-form button { border: 0; border-radius: 14px; padding: 13px; background: var(--red); color: white; font-weight: 900; cursor: pointer; }
.php-admin-products { display: grid; gap: 10px; }
.php-admin-product { border: 1px solid #eadfcd; border-radius: 17px; padding: 15px; display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; }
.php-admin-product h3 { margin: 0; font: 800 19px "Baloo 2"; }
.php-admin-product p { margin: 4px 0 0; font-size: 12px; opacity: .6; }
.php-admin-product strong { color: var(--red); white-space: nowrap; }
.php-admin-actions { display: flex; gap: 6px; }
.php-admin-actions button, .php-admin-actions a { border: 0; border-radius: 10px; padding: 8px 10px; background: var(--yellow); font-size: 12px; font-weight: 900; cursor: pointer; }
.php-admin-actions button { background: #ffe1da; color: #a72b19; }
.php-login { max-width: 430px; margin: 80px auto; background: white; border-radius: 30px; padding: 34px; }
@media (max-width: 850px) {
  .php-admin-wrap { grid-template-columns: 1fr; }
  .php-admin-product { grid-template-columns: 1fr auto; }
  .php-admin-product > div:first-child { grid-column: 1 / -1; }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: "Nunito Sans", Arial, sans-serif;
}
a { color: inherit; text-decoration: none; }

.site-header {
  height: 100px;
  padding: 0 clamp(24px, 4vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,248,232,.92);
  border-bottom: 1px solid rgba(43,23,16,.09);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}
.brand, .footer-brand {
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(25px, 2.5vw, 39px);
  font-weight: 800;
  letter-spacing: -1.5px;
}
.brand b, .footer-brand b { color: var(--red); }
.brand i { color: var(--yellow); font-style: normal; font-size: 22px; vertical-align: top; }
nav { display: flex; gap: clamp(24px, 4vw, 66px); font-weight: 800; }
nav a { position: relative; }
nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -8px;
  height: 3px; border-radius: 3px; background: var(--red);
  transition: right .25s ease;
}
nav a:hover::after, nav a:focus-visible::after { right: 0; }
.mini-order {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red); font-size: 25px;
  box-shadow: 0 7px 0 #bf321e;
}

.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 46% 54%;
  position: relative;
  overflow: hidden;
  padding-left: clamp(24px, 5vw, 86px);
  background:
    radial-gradient(rgba(43,23,16,.055) .7px, transparent .7px) 0 0/8px 8px,
    var(--cream);
}
.hero-copy { align-self: center; z-index: 3; padding: 64px 24px 76px 0; }
.eyebrow {
  color: var(--red); text-transform: uppercase; letter-spacing: .18em;
  font-size: 13px; font-weight: 900;
}
.hero h1 {
  margin: 18px 0 22px;
  font-family: "Baloo 2", sans-serif;
  font-size: clamp(70px, 7.7vw, 126px);
  line-height: .76;
  letter-spacing: -.065em;
  font-weight: 800;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong { color: var(--red); font-weight: inherit; }
.hero-copy p { max-width: 520px; font-size: 19px; line-height: 1.55; font-weight: 600; opacity: .78; }
.primary-button {
  margin-top: 22px;
  background: var(--red); color: white;
  min-width: 320px; height: 74px; border-radius: 40px;
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 0 30px; font-size: 20px; font-weight: 900;
  box-shadow: 0 9px 0 #bd321e;
  transition: transform .2s ease, box-shadow .2s ease;
}
.primary-button span { font-size: 36px; line-height: 1; transition: transform .2s ease; }
.primary-button:hover { transform: translateY(-4px); box-shadow: 0 13px 0 #bd321e; }
.primary-button:hover span { transform: translateX(8px); }

.hero-visual { position: relative; min-height: 680px; }
.sun-shape {
  position: absolute; inset: 3% -12% -12% 3%;
  background: var(--yellow);
  border-radius: 48% 52% 0 32%;
  transform: rotate(-3deg);
}
.photo-frame {
  position: absolute; left: 7%; right: 8%; top: 19%; bottom: 13%;
  border-radius: 52% 48% 39% 42%;
  overflow: hidden;
  transform: rotate(1.5deg);
  box-shadow: 0 32px 70px rgba(80,42,0,.25);
  border: 12px solid rgba(255,248,232,.4);
  animation: burger-in .7s ease-out both;
}
.photo-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03) rotate(-1.5deg); }
.rating-card, .delivery-card {
  position: absolute; right: 3%;
  width: 142px; min-height: 145px;
  border-radius: 26px; background: rgba(255,253,247,.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(87,44,0,.17);
  z-index: 4;
}
.rating-card { top: 23%; transform: rotate(2deg); }
.delivery-card { bottom: 13%; transform: rotate(-2deg); }
.rating-card > span, .delivery-card > span { color: var(--red); font-size: 25px; }
.rating-card strong, .delivery-card strong { font-family: "Baloo 2"; font-size: 34px; line-height: 1; }
.rating-card small, .delivery-card small { font-size: 12px; font-weight: 800; opacity: .55; margin-top: 6px; }
.spark { position: absolute; color: var(--red); font-size: 52px; font-weight: 900; }
.spark-one { left: 46%; bottom: 6%; transform: rotate(12deg); }
.spark-two { left: 5%; bottom: 5%; color: var(--yellow); letter-spacing: -8px; }

.menu-section { padding: 110px clamp(24px, 6vw, 100px) 130px; background: var(--white); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 55px; }
.section-heading h2, .campaign h2, .about h2 {
  font-family: "Baloo 2"; font-weight: 800; letter-spacing: -.04em;
  font-size: clamp(50px, 6vw, 86px); line-height: .92; margin: 12px 0 0;
}
.section-heading p { max-width: 420px; font-size: 18px; line-height: 1.6; opacity: .7; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.menu-card { border-radius: 36px; padding: 30px; min-height: 430px; position: relative; overflow: hidden; }
.menu-card.red { background: var(--red); color: white; }
.menu-card.yellow { background: var(--yellow); }
.menu-card.brown { background: var(--brown); color: white; }
.menu-number { font-weight: 900; opacity: .5; }
.burger-mark { font-size: 80px; text-align: center; margin: 20px 0; filter: drop-shadow(0 12px 6px rgba(0,0,0,.15)); }
.menu-card h3 { font: 800 32px "Baloo 2"; margin: 0; }
.menu-card p { min-height: 54px; line-height: 1.5; opacity: .8; margin: 4px 0 28px; }
.menu-bottom { display: flex; justify-content: space-between; align-items: center; }
.menu-bottom strong { font: 800 28px "Baloo 2"; }
.menu-bottom button {
  border: 0; width: 52px; height: 52px; border-radius: 50%; background: var(--white);
  color: var(--brown); font-size: 32px; cursor: pointer; transition: transform .2s ease;
}
.menu-bottom button:hover { transform: rotate(90deg) scale(1.08); }

.campaign {
  margin: 30px clamp(24px, 6vw, 100px) 120px;
  padding: clamp(40px, 6vw, 90px);
  background: var(--yellow);
  border-radius: 52px;
  display: flex; justify-content: space-between; align-items: center;
  position: relative; overflow: hidden;
}
.campaign::after {
  content: ""; width: 480px; height: 480px; border: 70px solid var(--red);
  border-radius: 50%; position: absolute; right: -150px; top: -180px; opacity: .9;
}
.campaign p { font-size: 19px; font-weight: 700; }
.campaign > div:first-child > strong { display: block; font: 800 52px "Baloo 2"; margin: 18px 0; }
.campaign a { display: inline-block; background: var(--brown); color: white; border-radius: 30px; padding: 16px 26px; font-weight: 900; }
.campaign-badge { z-index: 2; width: 240px; height: 240px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; transform: rotate(8deg); box-shadow: 0 18px 0 rgba(43,23,16,.12); }
.campaign-badge b { font: 800 100px "Baloo 2"; color: var(--red); line-height: 1; }
.campaign-badge span { font-weight: 900; line-height: 1.1; }

.about { padding: 120px clamp(24px, 8vw, 140px); background: var(--brown); color: white; display: grid; grid-template-columns: .7fr 1.2fr 1fr; align-items: center; gap: 70px; }
.about-stamp { width: 210px; height: 210px; border: 5px solid var(--yellow); border-radius: 50%; display: grid; place-content: center; text-align: center; font: 800 32px/0.8 "Baloo 2"; color: var(--yellow); transform: rotate(-8deg); }
.about-stamp span { font: 800 12px "Nunito Sans"; letter-spacing: .2em; margin-top: 14px; }
.about p { opacity: .7; line-height: 1.7; font-size: 17px; max-width: 580px; }
.facts { display: grid; gap: 24px; }
.facts div { border-bottom: 1px solid rgba(255,255,255,.17); padding-bottom: 20px; display: flex; justify-content: space-between; align-items: baseline; }
.facts b { font: 800 30px "Baloo 2"; color: var(--yellow); }
.facts span { opacity: .7; }

footer { padding: 70px clamp(24px, 6vw, 100px) 30px; display: grid; grid-template-columns: 1.3fr 1fr 1fr auto; gap: 40px; align-items: start; }
footer > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
footer div > span { text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 900; color: var(--red); }
footer div > a, footer div > p { margin: 0; font-weight: 800; }
.footer-order { padding: 14px 20px; border: 2px solid var(--brown); border-radius: 24px; font-weight: 900; }
footer small { grid-column: 1 / -1; border-top: 1px solid rgba(43,23,16,.15); padding-top: 25px; opacity: .5; }

@keyframes burger-in { from { opacity: 0; transform: translateY(18px) scale(.97) rotate(1.5deg); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; } }

@media (max-width: 900px) {
  .site-header { height: 82px; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 0; }
  .hero-copy { padding: 60px 24px 24px; text-align: center; }
  .hero h1 { font-size: clamp(62px, 19vw, 100px); }
  .hero-copy p { margin-inline: auto; }
  .primary-button { min-width: min(100%, 340px); }
  .hero-visual { min-height: 560px; }
  .sun-shape { inset: 5% -20% -10%; border-radius: 48% 48% 0 0; }
  .photo-frame { left: 5%; right: 5%; top: 12%; bottom: 12%; }
  .rating-card, .delivery-card { width: 112px; min-height: 120px; right: 4%; }
  .rating-card { top: 6%; } .delivery-card { bottom: 5%; }
  .spark { display: none; }
  .section-heading { display: block; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-card { min-height: 380px; }
  .campaign { display: block; text-align: center; }
  .campaign-badge { width: 170px; height: 170px; margin: 45px auto 0; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about-stamp { margin: auto; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer small { grid-column: 1; }
  .footer-order { justify-self: center; }
}

@media (max-width: 480px) {
  .brand { font-size: 25px; }
  .mini-order { width: 44px; height: 44px; }
  .hero-copy { padding-top: 42px; }
  .hero h1 { letter-spacing: -.075em; }
  .hero-visual { min-height: 440px; }
  .photo-frame { border-width: 7px; }
  .rating-card, .delivery-card { min-height: 98px; width: 92px; border-radius: 19px; }
  .rating-card strong, .delivery-card strong { font-size: 25px; }
  .rating-card small, .delivery-card small { font-size: 9px; }
  .menu-section { padding-top: 80px; }
  .campaign { border-radius: 34px; }
  .about { padding-block: 90px; }
}

/* QR MENU */
.qr-menu-page {
  min-height: 100vh;
  background:
    radial-gradient(rgba(43,23,16,.055) .7px, transparent .7px) 0 0/8px 8px,
    var(--cream);
}
.qr-header {
  height: 94px;
  padding: 0 clamp(20px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(43,23,16,.1);
  background: rgba(255,248,232,.95);
}
.qr-header-note { text-align: right; display: flex; flex-direction: column; }
.qr-header-note span { color: var(--red); font-weight: 900; letter-spacing: .16em; }
.qr-header-note small { font-weight: 700; opacity: .55; }
.qr-hero {
  margin: 26px clamp(16px, 5vw, 76px) 0;
  min-height: 360px;
  padding: clamp(42px, 6vw, 76px);
  border-radius: 52px;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.qr-hero::before {
  content: "";
  width: 430px; height: 430px;
  border-radius: 50%;
  border: 85px solid var(--red);
  position: absolute; right: -100px; top: -180px;
  opacity: .95;
}
.qr-hero h1 {
  font: 800 clamp(64px, 8vw, 118px)/.75 "Baloo 2";
  letter-spacing: -.065em;
  margin: 20px 0 24px;
}
.qr-hero h1 strong { color: var(--red); font-weight: inherit; }
.qr-hero p { margin: 0; font-size: 19px; font-weight: 700; }
.qr-hero-mark {
  width: 245px; height: 245px;
  border-radius: 50%;
  background: var(--cream);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 30px;
  transform: rotate(7deg);
  box-shadow: 0 18px 0 rgba(43,23,16,.13);
}
.qr-hero-mark span { font-size: 78px; }
.qr-hero-mark b { font: 800 30px/.85 "Baloo 2"; }
.category-tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 18px clamp(16px, 5vw, 76px);
  background: rgba(255,248,232,.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43,23,16,.1);
  scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }
.category-tabs a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 2px solid rgba(43,23,16,.13);
  border-radius: 28px;
  background: var(--white);
  font-weight: 900;
  transition: .2s ease;
}
.category-tabs a span { margin-right: 7px; }
.category-tabs a:hover, .category-tabs a:focus-visible {
  background: var(--brown);
  color: white;
  border-color: var(--brown);
  transform: translateY(-2px);
}
.qr-menu-content {
  max-width: 1460px;
  margin: 0 auto;
  padding: 70px clamp(16px, 5vw, 76px) 120px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 62px;
  align-items: start;
}
.qr-menu-aside {
  position: sticky;
  top: 105px;
  border-radius: 34px;
  background: var(--red);
  color: white;
  padding: 28px;
  overflow: hidden;
}
.qr-menu-aside > span {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 900;
  color: var(--yellow);
}
.qr-menu-aside strong {
  display: block;
  font: 800 42px/.85 "Baloo 2";
  margin: 14px 0 20px;
}
.qr-menu-aside img {
  width: calc(100% + 56px);
  margin-left: -28px;
  height: 210px;
  object-fit: cover;
}
.qr-menu-aside p { margin: 22px 0 0; line-height: 1.55; font-weight: 700; opacity: .86; }
.qr-categories { display: grid; gap: 92px; }
.qr-category { scroll-margin-top: 100px; }
.qr-category-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 3px solid var(--brown);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.qr-category-icon {
  width: 66px; height: 66px;
  border-radius: 20px;
  display: grid; place-items: center;
  background: var(--yellow);
  font-size: 34px;
  transform: rotate(-3deg);
}
.qr-category-heading span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
}
.qr-category-heading h2 {
  margin: -3px 0 0;
  font: 800 clamp(36px, 4vw, 56px)/.95 "Baloo 2";
  letter-spacing: -.04em;
}
.qr-category-heading small { font-weight: 900; opacity: .46; }
.qr-product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.qr-product {
  min-height: 145px;
  border: 2px solid rgba(43,23,16,.1);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255,253,247,.86);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.qr-product:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(43,23,16,.08); }
.qr-product.featured { border-color: var(--yellow); background: #fff5cf; }
.qr-product h3 { font: 800 23px/1.05 "Baloo 2"; margin: 0 0 7px; padding-right: 44px; }
.qr-product p { font-size: 14px; line-height: 1.45; opacity: .62; margin: 0; }
.qr-product > strong { color: var(--red); font: 800 25px "Baloo 2"; }
.favorite-label {
  position: absolute; right: 14px; top: 14px;
  background: var(--red); color: white;
  font-size: 9px; font-weight: 900; text-transform: uppercase;
  letter-spacing: .08em; padding: 6px 8px; border-radius: 10px;
}
.qr-share {
  margin: 0 clamp(16px, 5vw, 76px) 100px;
  border-radius: 44px;
  padding: clamp(36px, 6vw, 80px);
  color: white;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.qr-share h2 { font: 800 clamp(50px, 6vw, 82px)/.86 "Baloo 2"; margin: 14px 0 18px; }
.qr-share p { opacity: .58; overflow-wrap: anywhere; }
.qr-code-frame { background: white; padding: 16px; border-radius: 26px; transform: rotate(3deg); }
.qr-code-frame img { display: block; width: 210px; height: 210px; }
.qr-footer {
  padding: 50px clamp(20px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(43,23,16,.1);
}
.qr-footer p { opacity: .55; font-size: 13px; }
.qr-footer > a { font-weight: 900; border-bottom: 2px solid var(--red); }

@media (max-width: 960px) {
  .qr-menu-content { grid-template-columns: 1fr; }
  .qr-menu-aside { display: none; }
  .qr-hero-mark { width: 190px; height: 190px; }
  .qr-hero-mark span { font-size: 58px; }
  .qr-hero-mark b { font-size: 24px; }
}
@media (max-width: 680px) {
  .qr-header { height: 76px; }
  .qr-header-note small { display: none; }
  .qr-hero { margin: 12px 12px 0; min-height: 330px; border-radius: 32px; padding: 34px 24px; align-items: end; }
  .qr-hero::before { width: 270px; height: 270px; border-width: 48px; right: -120px; top: -130px; }
  .qr-hero h1 { font-size: clamp(60px, 20vw, 88px); }
  .qr-hero p { max-width: 280px; font-size: 16px; }
  .qr-hero-mark { position: absolute; width: 112px; height: 112px; right: 18px; top: 18px; padding: 12px; }
  .qr-hero-mark span { font-size: 36px; }
  .qr-hero-mark b { font-size: 15px; }
  .category-tabs { padding: 12px; top: 0; }
  .category-tabs a { padding: 10px 14px; font-size: 13px; }
  .qr-menu-content { padding: 48px 14px 80px; }
  .qr-categories { gap: 68px; }
  .qr-category-heading { grid-template-columns: auto 1fr; }
  .qr-category-heading small { display: none; }
  .qr-category-icon { width: 54px; height: 54px; border-radius: 16px; font-size: 27px; }
  .qr-product-grid { grid-template-columns: 1fr; }
  .qr-product { min-height: 130px; padding: 19px; }
  .qr-product h3 { font-size: 22px; }
  .qr-share { margin: 0 14px 60px; padding: 38px 24px; border-radius: 32px; flex-direction: column; text-align: center; }
  .qr-code-frame img { width: 190px; height: 190px; }
  .qr-footer { flex-direction: column; text-align: center; }
}

/* ADMIN */
.admin-page { min-height: 100vh; background: #f4f0e6; }
.admin-header {
  height: 86px;
  padding: 0 clamp(20px, 4vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: var(--brown);
  color: white;
  border-bottom: 5px solid var(--yellow);
}
.admin-header .brand { color: white; }
.admin-header > div { text-align: center; display: flex; flex-direction: column; }
.admin-header > div span { font-weight: 900; text-transform: uppercase; letter-spacing: .14em; }
.admin-header > div small { opacity: .55; }
.admin-header > a:last-child {
  justify-self: end;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  padding: 11px 16px;
  font-weight: 900;
}
.admin-shell {
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  padding: 30px;
}
.admin-sidebar {
  position: sticky;
  top: 30px;
  align-self: start;
  padding: 20px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(43,23,16,.06);
}
.admin-sidebar > span {
  display: block;
  padding: 6px 10px 15px;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
}
.admin-sidebar button {
  width: 100%;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 16px;
  padding: 12px 10px;
  background: transparent;
  color: var(--brown);
  text-align: left;
  cursor: pointer;
}
.admin-sidebar button:hover { background: var(--paper); }
.admin-sidebar button.active { background: var(--yellow); }
.admin-sidebar button i { font-style: normal; font-size: 22px; }
.admin-sidebar button b { font-size: 13px; }
.admin-sidebar button small {
  min-width: 24px; height: 24px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(43,23,16,.1);
  font-weight: 900;
}
.admin-main { min-width: 0; display: grid; gap: 30px; }
.admin-editor, .admin-products {
  border-radius: 30px;
  padding: clamp(22px, 4vw, 42px);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(43,23,16,.06);
}
.admin-editor { border-top: 8px solid var(--red); }
.admin-section-title {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 25px;
  margin-bottom: 28px;
}
.admin-section-title span {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.admin-section-title h1, .admin-section-title h2 {
  font: 800 clamp(32px, 4vw, 52px)/.95 "Baloo 2";
  letter-spacing: -.04em;
  margin: 5px 0 0;
}
.admin-section-title > button {
  border: 0;
  border-radius: 18px;
  padding: 10px 16px;
  background: var(--paper);
  font-weight: 900;
  cursor: pointer;
}
.admin-editor form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.admin-editor label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  font-weight: 900;
}
.admin-editor label.wide { grid-column: 1 / -1; }
.admin-editor input, .admin-editor select, .admin-editor textarea {
  width: 100%;
  border: 2px solid rgba(43,23,16,.12);
  border-radius: 15px;
  background: #fffdfa;
  color: var(--brown);
  padding: 13px 15px;
  font: 700 15px "Nunito Sans";
  outline: none;
}
.admin-editor input:focus, .admin-editor select:focus, .admin-editor textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(244,180,26,.18);
}
.admin-editor textarea { resize: vertical; }
.admin-check {
  flex-direction: row !important;
  align-items: center;
  align-self: center;
  cursor: pointer;
}
.admin-check input { width: 22px; height: 22px; accent-color: var(--red); }
.admin-save {
  border: 0;
  border-radius: 18px;
  background: var(--red);
  color: white;
  padding: 15px 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 0 #be321f;
}
.admin-save:disabled { opacity: .55; cursor: wait; }
.admin-status { margin: 20px 0 0; font-size: 13px; font-weight: 800; opacity: .6; }
.admin-product-list { display: grid; gap: 10px; }
.admin-product-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 105px auto auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(43,23,16,.1);
  border-radius: 18px;
}
.admin-product-list h3 { margin: 0 0 3px; font: 800 19px "Baloo 2"; }
.admin-product-list p {
  max-width: 680px;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
  opacity: .55;
}
.admin-product-list strong { color: var(--red); font: 800 20px "Baloo 2"; }
.admin-product-list button {
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  color: var(--brown);
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
}
.admin-product-list button.delete { background: #ffe1da; color: #a72b19; }
.admin-denied { min-height: 100vh; display: grid; place-items: center; background: var(--cream); padding: 20px; }
.admin-denied > div { max-width: 520px; text-align: center; background: white; padding: 55px; border-radius: 34px; }
.admin-denied > div > span { font-size: 54px; }
.admin-denied h1 { font: 800 45px/1 "Baloo 2"; }
.admin-denied p { opacity: .6; }
.admin-denied a { display: inline-block; margin-top: 15px; background: var(--brown); color: white; border-radius: 24px; padding: 13px 20px; font-weight: 900; }

@media (max-width: 900px) {
  .admin-header { grid-template-columns: 1fr auto; }
  .admin-header > div { display: none; }
  .admin-shell { grid-template-columns: 1fr; padding: 16px; }
  .admin-sidebar { position: static; overflow-x: auto; display: flex; gap: 8px; }
  .admin-sidebar > span { display: none; }
  .admin-sidebar button { flex: 0 0 auto; width: auto; grid-template-columns: 28px auto auto; }
}
@media (max-width: 620px) {
  .admin-header { height: 76px; }
  .admin-header > a:last-child { font-size: 12px; padding: 9px 12px; }
  .admin-editor, .admin-products { border-radius: 22px; padding: 20px; }
  .admin-editor form { grid-template-columns: 1fr; }
  .admin-editor label.wide { grid-column: 1; }
  .admin-product-list article { grid-template-columns: 1fr auto auto; }
  .admin-product-list article > div { grid-column: 1 / -1; }
  .admin-product-list strong { justify-self: start; }
}

/* MOIN BURGER YAKALA */
.game-promo {
  margin: 18px clamp(16px,5vw,76px);
  padding: 18px 24px;
  border-radius: 24px;
  background: var(--brown);
  color: white;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 0 var(--yellow);
  transition: transform .2s ease;
}
.game-promo-list { display: grid; gap: 14px; margin-top: 30px; }
.game-promo-list .game-promo { margin-top: 0; }
.game-promo-run { background: #e9472b; box-shadow: 0 8px 0 #2b1710; }
.game-promo-run small { color: #fff0b8; }
.game-promo-run > b { background: var(--yellow); color: var(--brown); }
.game-promo-courier { background: #154f45; box-shadow: 0 8px 0 #f4b41a; }
.game-promo-courier small { color: #ffe19a; }
.game-promo-courier > b { background: #fff8e8; color: #154f45; }
.game-promo:hover { transform: translateY(-3px); }
.game-promo-icon { font-size: 40px; }
.game-promo > span:nth-child(2) { display: flex; flex-direction: column; }
.game-promo small { color: var(--yellow); font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.game-promo strong { font: 800 24px "Baloo 2"; }
.game-promo > b { background: var(--red); border-radius: 18px; padding: 12px 16px; }
.game-body { min-height: 100vh; overflow-x: hidden; background: var(--yellow); }
.game-page { width: min(720px,100%); min-height: 100vh; margin: auto; background: var(--cream); position: relative; overflow: hidden; }
.game-header {
  height: 70px; display: grid; grid-template-columns: minmax(76px,1fr) auto minmax(76px,1fr); align-items: center;
  padding: 0 14px; border-bottom: 1px solid rgba(43,23,16,.1); overflow: hidden;
}
.game-header > a { font-weight: 900; }
.game-header-logo-box {
  width: 100px; height: 44px; display: grid; place-items: center;
  justify-self: center; overflow: hidden;
}
.game-header-logo {
  display: block; width: 84px !important; height: 38px !important;
  max-width: 84px !important; max-height: 38px !important;
  object-fit: contain; object-position: center; justify-self: center;
}
.game-header > button { justify-self: end; border: 0; width: 44px; height: 44px; border-radius: 50%; background: white; font-size: 20px; cursor: pointer; }
.game-intro { padding: clamp(32px,7vw,70px) 24px; text-align: center; }
.game-kicker { color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.game-intro h1 { margin: 18px 0; font: 800 clamp(66px,16vw,108px)/.72 "Baloo 2"; letter-spacing: -.065em; }
.game-intro h1 strong { color: var(--red); }
.game-intro > p { max-width: 490px; margin: 0 auto; font-size: 17px; line-height: 1.55; opacity: .7; }
.game-rules { margin: 30px auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; max-width: 500px; }
.game-rules div { min-width: 0; overflow: hidden; background: white; border-radius: 20px; padding: 16px 8px; display: flex; flex-direction: column; align-items: center; box-shadow: 0 6px 18px rgba(43,23,16,.07); }
.game-rules b { font-size: 32px; }
.game-rule-image-box { width: 64px; height: 42px; display: grid; place-items: center; overflow: hidden; }
.game-rule-burger {
  width: 58px !important; height: 42px !important;
  max-width: 58px !important; max-height: 42px !important;
  object-fit: contain; display: block; margin: 0;
}
.game-rules span { font-size: 12px; font-weight: 900; }
.game-start { border: 0; min-width: min(330px,100%); padding: 17px 24px; border-radius: 28px; background: var(--red); color: white; font: 900 18px "Nunito Sans"; box-shadow: 0 8px 0 #bd321e; cursor: pointer; }
.game-start span { margin-left: 35px; font-size: 26px; }
.game-intro > small { display: block; margin-top: 25px; opacity: .55; }
.game-stage-wrap { min-height: calc(100vh - 78px); }
.game-scorebar { height: 76px; padding: 10px 20px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; background: var(--brown); color: white; text-align: center; }
.game-scorebar > div { display: flex; flex-direction: column; }
.game-scorebar small { color: var(--yellow); font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.game-scorebar b { font: 800 26px "Baloo 2"; }
.game-lives { display: block !important; font-size: 20px; letter-spacing: 3px; }
#gameCanvas { width: 100%; height: calc(100vh - 232px); min-height: 390px; display: block; touch-action: none; }
.game-controls { height: 78px; padding: 10px 16px; display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; gap: 12px; background: var(--yellow); }
.game-controls button { border: 0; height: 56px; border-radius: 18px; background: var(--red); color: white; font-size: 30px; font-weight: 900; box-shadow: 0 5px 0 #bd321e; touch-action: none; }
.game-controls span { text-align: center; font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; }
.game-result { min-height: calc(100vh - 78px); padding: 60px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.game-result[hidden], .game-stage-wrap[hidden], .game-intro[hidden] { display: none !important; }
.game-result > span { font-size: 80px; }
.game-result > small { color: var(--red); font-weight: 900; letter-spacing: .18em; }
.game-result h2 { margin: 10px 0; font: 800 64px/.9 "Baloo 2"; }
.game-result h2 b { color: var(--red); }
.game-result > p { opacity: .65; }
.game-result > div { margin: 25px 0; width: min(300px,100%); padding: 16px; border-radius: 18px; background: white; display: flex; justify-content: space-between; }
.game-result > div span { font-weight: 800; opacity: .6; }
.game-result > div b { color: var(--red); }
.game-result > a { margin-top: 24px; font-weight: 900; border-bottom: 2px solid var(--red); }
.run-intro { padding: clamp(46px,9vw,88px) 24px; text-align: center; }
.run-intro h1 { margin: 18px 0; font: 800 clamp(72px,17vw,116px)/.7 "Baloo 2"; letter-spacing: -.065em; }
.run-intro h1 strong { color: var(--red); }
.run-intro > p { max-width: 500px; margin: 0 auto; font-size: 17px; line-height: 1.55; opacity: .72; }
.run-intro > small { display: block; margin-top: 25px; opacity: .55; }
.run-how { margin: 30px auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; max-width: 560px; }
.run-how div { min-width: 0; background: white; border-radius: 20px; padding: 16px 8px; display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(43,23,16,.07); }
.run-how b { font-size: 32px; }
.run-how span { font-size: 12px; font-weight: 900; }
.run-stage-wrap { min-height: calc(100vh - 70px); position: relative; }
.run-stage-wrap[hidden], .run-intro[hidden] { display: none !important; }
#runCanvas { width: 100%; height: calc(100vh - 210px); min-height: 430px; display: block; touch-action: none; }
.run-jump-button {
  width: 100%; height: 64px; border: 0; background: var(--red); color: white;
  font: 900 17px "Nunito Sans"; letter-spacing: .13em; cursor: pointer; touch-action: none;
  box-shadow: inset 0 6px 0 rgba(255,255,255,.12);
}
.run-jump-button span { display: inline-block; margin-right: 12px; font-size: 27px; vertical-align: -2px; }
.courier-intro { padding: clamp(46px,9vw,84px) 24px; text-align: center; }
.courier-intro h1 { margin: 18px 0; font: 800 clamp(68px,16vw,108px)/.72 "Baloo 2"; letter-spacing: -.065em; }
.courier-intro h1 strong { color: #e9472b; }
.courier-intro > p { max-width: 500px; margin: 0 auto; font-size: 17px; line-height: 1.55; opacity: .72; }
.courier-intro > small { display: block; margin-top: 25px; opacity: .55; }
.courier-how { margin: 30px auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; max-width: 560px; }
.courier-how div { min-width: 0; background: white; border-radius: 20px; padding: 16px 8px; display: flex; flex-direction: column; box-shadow: 0 6px 18px rgba(43,23,16,.07); }
.courier-how b { font-size: 31px; }
.courier-how span { font-size: 12px; font-weight: 900; }
.courier-stage { min-height: calc(100vh - 70px); }
.courier-stage[hidden], .courier-intro[hidden] { display: none !important; }
#courierCanvas { width: 100%; height: calc(100vh - 224px); min-height: 450px; display: block; touch-action: none; }
.courier-controls { height: 78px; padding: 10px 16px; display: grid; grid-template-columns: 78px 1fr 78px; align-items: center; gap: 12px; background: var(--yellow); }
.courier-controls button { border: 0; height: 56px; border-radius: 18px; background: #154f45; color: white; font-size: 30px; font-weight: 900; box-shadow: 0 5px 0 #0a3029; touch-action: none; }
.courier-controls span { text-align: center; font-size: 11px; font-weight: 900; letter-spacing: .12em; }
@media (max-width: 520px) {
  .game-promo { margin-inline: 12px; padding: 14px; }
  .game-promo-list { gap: 12px; margin-top: 20px; }
  .game-promo-icon { font-size: 30px; }
  .game-promo strong { font-size: 19px; }
  .game-promo > b { font-size: 12px; padding: 10px; }
  .game-intro { padding-top: 42px; }
  .game-header { height: 64px; grid-template-columns: minmax(68px,1fr) auto minmax(68px,1fr); padding-inline: 10px; }
  .game-header-logo-box { width: 84px; height: 38px; }
  .game-header > a { font-size: 13px; }
  .game-header > button { width: 38px; height: 38px; }
  .run-intro { padding-top: 52px; }
  .run-how { grid-template-columns: repeat(2,1fr); }
  .courier-intro { padding-top: 50px; }
  .courier-how { grid-template-columns: repeat(2,1fr); }
  #courierCanvas { height: calc(100vh - 218px); min-height: 410px; }
  .courier-controls { grid-template-columns: 68px 1fr 68px; }
  #runCanvas { height: calc(100vh - 204px); min-height: 390px; }
}
