:root{
  --bg:#fff5e9;
  --paper:#fff9f1;
  --ink:#241616;
  --ink-soft:#6b5656;
  --yellow:#ffc928;
  --yellow-deep:#f0af00;
  --red:#eb4b4b;
  --red-deep:#c73333;
  --cream:#fff1dc;
  --white:#ffffff;
  --line:rgba(36,22,22,0.08);
  --shadow:0 20px 50px rgba(100, 47, 17, 0.12);
  --shadow-soft:0 14px 30px rgba(98, 46, 18, 0.08);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --radius-sm:14px;
  --max:1500px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  min-width:0;
}

html{
  scroll-behavior:smooth;
  overflow-x:hidden;
}

body{
  font-family:"Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255,201,40,0.25), transparent 30%),
    radial-gradient(circle at bottom right, rgba(235,75,75,0.15), transparent 28%),
    var(--bg);
  color:var(--ink);
  overflow-x:hidden;
  max-width:100%;
}

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

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

button{
  font-family:inherit;
  cursor:pointer;
  border:none;
}

.site-shell{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:260px minmax(0, 1fr);
  gap:24px;
  padding:24px;
  overflow-x:hidden;
}

.side-nav{
  position:sticky;
  top:24px;
  height:calc(100vh - 48px);
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.6);
  border-radius:30px;
  padding:24px 20px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-width:0;
}

.brand-badge{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-circle{
  width:64px;
  height:64px;
  min-width:64px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--yellow), #ff9e1a 60%, var(--red));
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:1.2rem;
  box-shadow:0 12px 25px rgba(235,75,75,0.25);
}

.brand-text{
  min-width:0;
}

.brand-text h1{
  font-family:"Baloo 2", cursive;
  font-size:1.6rem;
  line-height:1;
  word-break:break-word;
}

.brand-mini{
  font-size:.8rem;
  color:var(--ink-soft);
}

.side-menu{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:24px 0;
}

.side-menu a{
  padding:13px 16px;
  border-radius:16px;
  font-weight:700;
  color:var(--ink-soft);
  transition:.2s ease;
}

.side-menu a:hover,
.side-menu a.active{
  background:var(--white);
  color:var(--ink);
  box-shadow:var(--shadow-soft);
}

.side-info{
  display:flex;
  flex-direction:column;
  gap:10px;
  font-size:.95rem;
  color:var(--ink-soft);
}

.cart-float-btn{
  margin-top:18px;
  background:var(--ink);
  color:#fff;
  padding:14px 16px;
  border-radius:16px;
  font-weight:700;
  display:none;
}

.main-content{
  display:flex;
  flex-direction:column;
  gap:24px;
  min-width:0;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

.top-strip{
  overflow:hidden;
  background:var(--ink);
  color:#fff;
  border-radius:20px;
  padding:14px 0;
  box-shadow:var(--shadow-soft);
  width:100%;
  max-width:100%;
  position:relative;
}

.top-strip-marquee{
  width:100%;
  overflow:hidden;
}

.top-strip-track{
  display:flex;
  align-items:center;
  gap:34px;
  width:max-content;
  white-space:nowrap;
  padding:0 22px;
  font-weight:700;
  animation:stripMove 22s linear infinite;
  will-change:transform;
}

.top-strip-track span{
  flex:0 0 auto;
}

.top-strip:hover .top-strip-track{
  animation-play-state:paused;
}

@keyframes stripMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}

.hero-board{
  display:grid;
  grid-template-columns:minmax(0, 1.4fr) minmax(0, .8fr);
  gap:24px;
  width:100%;
  max-width:100%;
}

.hero-main-card{
  background:linear-gradient(135deg, #fff6df, #fff1ec 65%, #fff4d7);
  border-radius:36px;
  padding:28px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:20px;
  min-height:520px;
  overflow:hidden;
  position:relative;
  width:100%;
  max-width:100%;
}

.hero-main-card::before{
  content:"";
  position:absolute;
  right:-50px;
  top:-50px;
  width:180px;
  height:180px;
  background:rgba(255,201,40,0.18);
  border-radius:50%;
}

.eyebrow,
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.82rem;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--red-deep);
  margin-bottom:12px;
}

.dark-tag{
  color:#fff;
}

.hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  z-index:1;
  min-width:0;
}

.hero-copy h2{
  font-family:"Baloo 2", cursive;
  font-size:clamp(2.3rem, 5vw, 4.4rem);
  line-height:.95;
  margin-bottom:16px;
  word-break:break-word;
}

.hero-copy h2 span{
  color:var(--red);
}

.hero-text{
  color:var(--ink-soft);
  font-size:1.02rem;
  line-height:1.7;
  max-width:560px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:24px 0;
}

.btn{
  padding:15px 22px;
  border-radius:999px;
  font-weight:800;
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  max-width:100%;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--red);
  color:#fff;
  box-shadow:0 12px 26px rgba(235,75,75,0.25);
}

.btn-secondary{
  background:#fff;
  color:var(--ink);
}

.btn-dark{
  background:#111;
  color:#fff;
}

.hero-mini-stats{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-mini-stats div{
  background:rgba(255,255,255,0.74);
  border:1px solid rgba(255,255,255,0.85);
  border-radius:18px;
  padding:12px 14px;
  min-width:110px;
  flex:1 1 110px;
}

.hero-mini-stats strong{
  display:block;
  font-size:1rem;
}

.hero-mini-stats span{
  font-size:.85rem;
  color:var(--ink-soft);
}

.hero-burger-stack{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
  width:100%;
}

.burger-visual{
  width:100%;
  height:100%;
  min-height:420px;
  border-radius:30px;
  position:relative;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow-soft);
}

.burger-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.burger-glow{
  position:absolute;
  inset:auto auto 20px 20px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(255,201,40,0.35);
  filter:blur(26px);
  z-index:1;
}

.price-sticker{
  position:absolute;
  right:14px;
  bottom:18px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:var(--yellow);
  color:var(--ink);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 30px rgba(240,175,0,0.28);
  transform:rotate(-10deg);
  border:5px solid rgba(255,255,255,0.72);
}

.price-sticker span{
  font-size:.8rem;
  font-weight:700;
}

.price-sticker strong{
  font-size:1.6rem;
  font-weight:900;
}

.hero-side-grid{
  display:grid;
  grid-template-rows:1fr 1fr 1fr;
  gap:16px;
  min-width:0;
}

.mini-promo{
  border-radius:30px;
  padding:24px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:150px;
  min-width:0;
}

.promo-yellow{
  background:linear-gradient(135deg, var(--yellow), #ffda5d);
}

.promo-red{
  background:linear-gradient(135deg, var(--red), #ff8177);
  color:#fff;
}

.promo-cream{
  background:var(--paper);
}

.mini-label{
  font-size:.76rem;
  letter-spacing:.08em;
  font-weight:800;
  text-transform:uppercase;
  opacity:.85;
}

.mini-promo h3{
  font-family:"Baloo 2", cursive;
  font-size:1.8rem;
  line-height:1;
  margin:10px 0 8px;
  word-break:break-word;
}

.mini-promo span{
  font-weight:800;
}

.category-ribbon{
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:4px;
  width:100%;
}

.category-pill{
  background:#fff;
  border:1px solid var(--line);
  padding:12px 18px;
  border-radius:999px;
  font-weight:800;
  color:var(--ink-soft);
  white-space:nowrap;
  flex:0 0 auto;
}

.category-pill.active{
  background:var(--ink);
  color:#fff;
}

.menu-stage{
  background:rgba(255,255,255,0.45);
  border-radius:36px;
  padding:26px;
  box-shadow:var(--shadow-soft);
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.menu-heading{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
  align-items:end;
}

.menu-heading h2,
.combo-copy h2,
.promo-wall-header h2,
.local-card h2,
.faq-title-wrap h2{
  font-family:"Baloo 2", cursive;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:.95;
  word-break:break-word;
}

.menu-heading p:last-child{
  max-width:460px;
  color:var(--ink-soft);
  line-height:1.7;
}

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

.food-card{
  grid-column:span 4;
  background:#fff;
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  min-width:0;
}

.large-card{
  grid-column:span 8;
}

.accent-card{
  background:linear-gradient(180deg, #fff, #fff6de);
}

.food-card-media{
  position:relative;
  height:240px;
  width:100%;
}

.large-card .food-card-media{
  height:280px;
}

.food-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.food-badge{
  position:absolute;
  left:14px;
  top:14px;
  background:#fff;
  color:var(--ink);
  padding:9px 12px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:800;
  max-width:calc(100% - 28px);
}

.food-badge.hot{
  background:var(--red);
  color:#fff;
}

.food-badge.mega{
  background:var(--yellow);
}

.food-card-body{
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
  min-width:0;
}

.food-topline{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  margin-bottom:10px;
}

.food-topline h3{
  font-family:"Baloo 2", cursive;
  font-size:1.75rem;
  line-height:1;
  word-break:break-word;
}

.food-topline span{
  font-weight:900;
  font-size:1.05rem;
  white-space:nowrap;
}

.food-card-body p{
  color:var(--ink-soft);
  line-height:1.7;
  margin-bottom:18px;
}

.add-to-cart{
  margin-top:auto;
  background:var(--ink);
  color:#fff;
  border-radius:16px;
  padding:14px 16px;
  font-weight:800;
  transition:.2s ease;
  width:100%;
  max-width:100%;
}

.add-to-cart:hover{
  transform:translateY(-2px);
  background:var(--red);
}

.combo-strip{
  background:linear-gradient(135deg, #291313, #5a1d1d 58%, #8f2e2e);
  color:#fff;
  border-radius:36px;
  padding:28px;
  display:grid;
  grid-template-columns:minmax(0, 1.05fr) minmax(0, .95fr);
  gap:20px;
  box-shadow:var(--shadow);
  width:100%;
  max-width:100%;
}

.combo-copy{
  min-width:0;
}

.combo-copy p{
  color:rgba(255,255,255,0.82);
  line-height:1.7;
  max-width:560px;
}

.combo-copy .btn{
  margin-top:20px;
}

.combo-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  min-width:0;
}

.combo-cards article{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  padding:20px;
  min-height:200px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-width:0;
}

.combo-cards span{
  font-size:2rem;
  font-weight:900;
  color:var(--yellow);
}

.combo-cards h3{
  font-family:"Baloo 2", cursive;
  font-size:1.55rem;
  line-height:1;
  word-break:break-word;
}

.combo-cards p{
  color:rgba(255,255,255,0.78);
}

.promo-wall{
  display:flex;
  flex-direction:column;
  gap:18px;
  width:100%;
  max-width:100%;
}

.promo-wall-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.1fr) minmax(0, .9fr) minmax(0, 1fr) minmax(0, .9fr);
  gap:16px;
  width:100%;
}

.promo-box{
  min-height:240px;
  border-radius:28px;
  padding:22px;
  background:#fff;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-width:0;
  overflow:hidden;
}

.promo-box h3{
  font-family:"Baloo 2", cursive;
  font-size:2rem;
  line-height:1;
  margin-bottom:10px;
  word-break:break-word;
}

.promo-box p{
  color:var(--ink-soft);
  line-height:1.7;
}

.promo-box.tall{
  background:linear-gradient(160deg, #fff, #ffe5b8);
}

.promo-box.bright{
  background:linear-gradient(160deg, var(--yellow), #ffb63b);
}

.promo-box.soft{
  background:linear-gradient(160deg, #fff0f0, #ffe2d8);
}

.image-box{
  padding:0;
  overflow:hidden;
}

.image-box img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.local-info{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:16px;
  width:100%;
}

.local-card{
  border-radius:30px;
  padding:26px;
  box-shadow:var(--shadow-soft);
  min-width:0;
  overflow:hidden;
}

.info-card{
  background:#fff;
}

.info-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:18px;
  color:var(--ink-soft);
  line-height:1.6;
}

.info-card li{
  word-break:break-word;
}

.map-card{
  background:linear-gradient(135deg, #ffdf9e, #ffd066, #ffbc51);
  display:grid;
  place-items:center;
  min-height:320px;
}

.fake-map{
  width:100%;
  height:100%;
  border-radius:24px;
  border:2px dashed rgba(36,22,22,0.15);
  background:
    linear-gradient(rgba(255,255,255,0.22), rgba(255,255,255,0.22)),
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,0.12) 0px,
      rgba(255,255,255,0.12) 34px,
      transparent 34px,
      transparent 68px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,0.12) 0px,
      rgba(255,255,255,0.12) 34px,
      transparent 34px,
      transparent 68px
    );
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:20px;
  min-width:0;
}

.map-pin{
  font-size:3rem;
  margin-bottom:10px;
}

.fake-map p{
  font-family:"Baloo 2", cursive;
  font-size:2rem;
  line-height:1;
  word-break:break-word;
}

.fake-map span{
  color:rgba(36,22,22,0.72);
  font-weight:700;
  word-break:break-word;
}

.faq-section{
  background:rgba(255,255,255,0.5);
  border-radius:32px;
  padding:26px;
  box-shadow:var(--shadow-soft);
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.faq-list{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:14px;
  margin-top:18px;
}

.faq-list details{
  background:#fff;
  border-radius:22px;
  padding:18px 20px;
  box-shadow:var(--shadow-soft);
  min-width:0;
}

.faq-list summary{
  list-style:none;
  font-weight:800;
  cursor:pointer;
  position:relative;
  padding-right:24px;
}

.faq-list summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  font-size:1.2rem;
}

.faq-list details[open] summary::after{
  content:"−";
}

.faq-list p{
  margin-top:12px;
  color:var(--ink-soft);
  line-height:1.7;
  word-break:break-word;
}

.footer{
  background:var(--ink);
  color:#fff;
  border-radius:28px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  width:100%;
  max-width:100%;
}

.footer h3{
  font-family:"Baloo 2", cursive;
  font-size:2rem;
  line-height:1;
  word-break:break-word;
}

.footer p{
  color:rgba(255,255,255,0.76);
  margin-top:8px;
  max-width:560px;
}

.footer-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.footer-actions a{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  padding:13px 16px;
  border-radius:14px;
  font-weight:700;
  text-align:center;
}

.cart-panel{
  position:fixed;
  right:24px;
  top:24px;
  width:360px;
  max-width:calc(100vw - 28px);
  height:calc(100vh - 48px);
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(14px);
  border-radius:28px;
  box-shadow:0 20px 60px rgba(32,20,20,0.18);
  z-index:100;
  display:flex;
  flex-direction:column;
  padding:18px;
  transform:translateX(115%);
  transition:.28s ease;
}

.cart-panel.open{
  transform:translateX(0);
}

.cart-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
  gap:12px;
}

.cart-header p{
  color:var(--ink-soft);
  font-size:.9rem;
}

.cart-header h3{
  font-family:"Baloo 2", cursive;
  font-size:2rem;
  line-height:1;
}

.cart-close{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:#f5f1eb;
  font-size:1rem;
  font-weight:900;
}

.cart-items{
  flex:1;
  overflow:auto;
  padding:16px 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.empty-cart{
  color:var(--ink-soft);
  text-align:center;
  margin-top:30px;
}

.cart-item{
  background:#fff8ee;
  border-radius:18px;
  padding:14px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:10px;
  align-items:center;
}

.cart-item h4{
  font-size:1rem;
  margin-bottom:4px;
  word-break:break-word;
}

.cart-item p{
  font-size:.92rem;
  color:var(--ink-soft);
}

.cart-item-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty-btn{
  width:30px;
  height:30px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  font-weight:900;
  min-width:30px;
}

.cart-summary{
  border-top:1px solid var(--line);
  padding-top:14px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.summary-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.checkout-btn{
  background:var(--red);
  color:#fff;
  text-align:center;
  padding:16px;
  border-radius:18px;
  font-weight:800;
  width:100%;
}

.floating-cart-desktop{
  position:fixed;
  right:24px;
  bottom:24px;
  width:64px;
  height:64px;
  border-radius:50%;
  background:var(--ink);
  color:#fff;
  box-shadow:0 20px 35px rgba(32,20,20,0.22);
  font-size:1rem;
  font-weight:900;
  z-index:90;
  min-width:64px;
}

@media (max-width: 1180px){
  .site-shell{
    grid-template-columns:1fr;
  }

  .side-nav{
    position:relative;
    top:0;
    height:auto;
    gap:20px;
  }

  .side-menu{
    flex-direction:row;
    flex-wrap:wrap;
  }

  .cart-float-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .hero-board,
  .combo-strip,
  .local-info{
    grid-template-columns:1fr;
  }

  .hero-main-card{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-side-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
    grid-template-rows:auto;
  }

  .promo-wall-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px){
  .site-shell{
    padding:16px;
    gap:16px;
  }

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

  .food-card,
  .large-card{
    grid-column:span 1;
  }

  .promo-wall-grid,
  .faq-list,
  .combo-cards{
    grid-template-columns:1fr;
  }

  .menu-heading,
  .footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-side-grid{
    grid-template-columns:1fr;
  }

 .top-strip-track{
  gap:22px;
  font-size:.92rem;
  animation-duration:18s;
}

  .floating-cart-desktop{
    width:58px;
    height:58px;
    min-width:58px;
    right:16px;
    bottom:16px;
  }

  .cart-panel{
    right:10px;
    top:10px;
    height:calc(100vh - 20px);
    max-width:calc(100vw - 20px);
  }

  .price-sticker{
    width:94px;
    height:94px;
  }

  .price-sticker strong{
    font-size:1.35rem;
  }
}

@media (max-width: 580px){
  .hero-copy h2{
    font-size:2.35rem;
  }

  .hero-main-card,
  .menu-stage,
  .combo-strip,
  .faq-section,
  .local-card,
  .footer{
    padding:20px;
    border-radius:24px;
  }

  .mini-promo{
    border-radius:22px;
    padding:20px;
  }

  .food-card{
    border-radius:22px;
  }

  .food-card-media,
  .large-card .food-card-media{
    height:220px;
  }

  .brand-text h1{
    font-size:1.35rem;
  }

  .side-menu{
    gap:8px;
  }

  .side-menu a{
    padding:11px 14px;
  }

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

  .hero-actions .btn{
    width:100%;
  }

  .hero-mini-stats{
    flex-direction:column;
  }

  .menu-heading p:last-child{
    max-width:100%;
  }

  .cart-panel{
    padding:16px;
    border-radius:22px;
  }

  .cart-header h3{
    font-size:1.7rem;
  }
}