/* ============================================================
   ISTRA PIZZERIA — Mascot Brand Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@500;600;700;800&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800&display=swap');

:root {
  /* Brand palette */
  --orange:      #F58220;
  --orange-deep: #DE6A0C;
  --navy:        #092B8C;
  --navy-soft:   #1B40A8;
  --yellow:      #FFC928;
  --cream:       #FFF3DD;
  --beige:       #F8E2BF;
  --ink:         #231815;
  --white:       #FFFFFF;
  --green:       #3FA34D;

  --ink-soft: #5A4C42;
  --shadow-cartoon: 0 6px 0 rgba(35,24,21,.14);
  --shadow-soft: 0 14px 38px -16px rgba(35,24,21,.30);
  --shadow-card: 0 10px 30px -14px rgba(222,106,12,.35);

  --r-pill: 999px;
  --r-card: 24px;
  --r-lg: 32px;

  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --maxw: 1240px;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.62;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.section { padding: clamp(56px, 8vw, 104px) 0; position: relative; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--white);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-cartoon);
  margin-bottom: 22px;
}
.eyebrow::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); }

.sec-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin-bottom: 14px;
}
.sec-sub {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 620px;
}
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .sec-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s, background .2s;
  white-space: nowrap;
  border: 2.5px solid transparent;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 0 var(--orange-deep), var(--shadow-card);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--orange-deep), var(--shadow-card); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--orange-deep); }
.btn--outline {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 6px 0 rgba(9,43,140,.22);
}
.btn--outline:hover { transform: translateY(-3px); background: var(--navy); color: var(--white); }
.btn--outline:active { transform: scale(0.97); box-shadow: 0 3px 0 rgba(9,43,140,.22); }
.btn--ghost {
  background: transparent; color: var(--ink); font-weight: 700; padding: 12px 6px;
}
.btn--ghost:hover { color: var(--orange-deep); }
.btn--lg { padding: 18px 38px; font-size: 1.12rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,243,221,.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(245,130,32,.22);
}
.nav {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo__mark {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--orange); border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: var(--shadow-cartoon);
  transform: rotate(-4deg);
}
.logo__mark svg { width: 32px; height: 32px; }
.logo__text { font-family: var(--font-display); font-weight: 800; font-size: 1.42rem; line-height: 1; color: var(--ink); }
.logo__text span { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .26em; color: var(--orange-deep); margin-top: 3px; }
.logo__img { height: 52px; width: auto; display: block; }
.hero-mascot-img { width: 100%; height: 100%; object-fit: contain; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  color: var(--ink);
  transition: background .18s, color .18s;
}
.nav__links a:hover, .nav__links a.active { background: var(--white); color: var(--orange-deep); }
.nav__cta { display: flex; align-items: center; gap: 12px; }

.burger {
  display: none; width: 48px; height: 48px; border-radius: 14px;
  background: var(--white); box-shadow: var(--shadow-cartoon);
  position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2.6px;
  background: var(--ink); border-radius: 3px; transition: .25s;
}
.burger span { top: 50%; transform: translate(-50%,-50%); }
.burger span::before { transform: translate(-50%,-7px); }
.burger span::after { transform: translate(-50%,7px); }
.burger.open span { background: transparent; }
.burger.open span::before { transform: translate(-50%,0) rotate(45deg); }
.burger.open span::after { transform: translate(-50%,0) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--cream);
  display: flex; flex-direction: column; gap: 6px;
  padding: 28px 26px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--font-display); font-weight: 700; font-size: 1.4rem;
  padding: 16px 18px; border-radius: 16px; background: var(--white);
  box-shadow: var(--shadow-cartoon);
  display: flex; align-items: center; gap: 14px;
}
.mobile-menu a.btn { justify-content: center; }
.mobile-menu a.btn--primary {
  background: var(--orange); color: var(--white); font-size: 1.1rem;
  box-shadow: 0 6px 0 var(--orange-deep);
}
.mobile-menu a.btn--outline {
  background: var(--white); color: var(--navy); font-size: 1.1rem;
  border: 2.5px solid var(--navy); box-shadow: 0 6px 0 rgba(9,43,140,.22);
}
.mobile-menu .btn { margin-top: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px,6vw,76px) 0 clamp(60px,8vw,108px); overflow: hidden; background: url('images/istra_hero.webp') center center / cover no-repeat; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,6,4,.88) 0%, rgba(10,6,4,.65) 50%, rgba(10,6,4,.20) 100%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.hero__title {
  font-size: clamp(2.7rem, 6.4vw, 5.2rem);
  line-height: .98;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 0 40px rgba(0,0,0,.5);
}
.hero__title .scribble { color: var(--orange); position: relative; white-space: nowrap; }
.hero__title .scribble svg {
  position: absolute; left: -2%; bottom: -16px; width: 104%; height: 22px;
}
.hero__guru {
  display: inline-block; width: clamp(96px, 24vw, 128px);
  margin-bottom: 18px;
  transition: transform .3s var(--ease-out);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.5));
}
.hero__guru img { width: 100%; height: auto; }
.hero__guru:hover { transform: scale(1.05) rotate(-2deg); }

/* ---------- Order coming-soon modal ---------- */
.order-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.order-modal.open { display: grid; place-items: center; }
.order-modal__backdrop { position: absolute; inset: 0; background: rgba(35,24,21,.55); backdrop-filter: blur(4px); }
.order-modal__box {
  position: relative; z-index: 1;
  background: var(--cream); width: min(440px, 92vw);
  border-radius: var(--r-lg); padding: 42px 30px 28px;
  text-align: center; border: 2px solid var(--white);
  box-shadow: var(--shadow-soft);
  animation: omPop .3s var(--ease-out);
}
@keyframes omPop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.order-modal__close {
  position: absolute; top: 14px; right: 14px; width: 38px; height: 38px;
  border-radius: 50%; background: var(--white); color: var(--ink);
  font-size: 17px; box-shadow: var(--shadow-cartoon);
}
.order-modal__emoji { font-size: 3rem; line-height: 1; margin-bottom: 10px; }
.order-modal__box h3 { font-size: 1.55rem; margin-bottom: 10px; }
.order-modal__box p { color: var(--ink-soft); margin-bottom: 22px; }
.order-modal__box .btn { margin-bottom: 14px; }
.order-modal__note { font-size: .92rem; margin-bottom: 0 !important; }
.hero__sub {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.15rem,2.2vw,1.5rem); color: rgba(255,255,255,.90);
  margin-bottom: 16px; text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero__text { font-size: 1.12rem; color: rgba(255,255,255,.75); max-width: 480px; margin-bottom: 32px; text-shadow: 0 1px 4px rgba(0,0,0,.6); }
.hero__btns { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  margin-top: 22px; font-size: 1.05rem;
}
.hero__phone svg { width: 22px; height: 22px; color: var(--orange-deep); }
.hero__phone a { }

/* Hero mascot stage */
.hero__stage { position: relative; display: grid; place-items: center; min-height: 460px; }
.hero__badge {
  position: absolute; width: min(430px, 86%); aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--orange) 0%, var(--orange-deep) 78%);
  box-shadow: 0 30px 60px -22px rgba(222,106,12,.6), inset 0 -16px 40px rgba(35,24,21,.18);
}
.hero__badge::after {
  content: ""; position: absolute; inset: 16px; border-radius: 50%;
  border: 3px dashed rgba(255,255,255,.45);
}
.hero__mascot { position: relative; width: min(360px, 76%); filter: drop-shadow(0 24px 26px rgba(35,24,21,.30)); }
.hero__mascot svg { width: 100%; height: auto; }

.float-sticker {
  position: absolute; z-index: 5;
  background: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: .96rem;
  padding: 11px 18px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 8px;
  border: 2px solid var(--cream);
}
.float-sticker b { color: var(--orange-deep); }
.float-sticker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.fs-1 { top: 6%;  left: -4%;  animation: floaty 5.5s ease-in-out infinite; }
.fs-2 { top: 30%; right: -6%; animation: floaty 6.5s ease-in-out infinite .6s; }
.fs-3 { bottom: 18%; left: -7%; animation: floaty 5.8s ease-in-out infinite 1.1s; }
.fs-4 { bottom: 2%;  right: 2%;  animation: floaty 6.2s ease-in-out infinite .3s; }

@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-1deg) } 50% { transform: translateY(-16px) rotate(1deg) } }
.bobbing { animation: bob 6s ease-in-out infinite; }

/* ---------- Quick info bar ---------- */
.infobar { margin-top: -46px; position: relative; z-index: 10; }
.infobar__grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.info-card {
  background: var(--white); border-radius: var(--r-card);
  padding: 24px 22px; box-shadow: var(--shadow-soft);
  display: flex; gap: 16px; align-items: flex-start;
  border: 2px solid transparent; transition: transform .25s var(--ease-out), border-color .25s;
}
.info-card:hover { border-color: var(--yellow); }
.info-card:active { transform: scale(0.98); }
.info-card__ic {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 14px;
  background: var(--cream); display: grid; place-items: center; color: var(--orange-deep);
}
.info-card__ic svg { width: 24px; height: 24px; }
.info-card h4 { font-size: 1.06rem; margin-bottom: 3px; }
.info-card p { font-size: .95rem; color: var(--ink-soft); line-height: 1.4; }

/* ---------- Categories ---------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1000px; margin: 0 auto;
}
.cat-card {
  background: var(--white); border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  border: 2.5px solid var(--beige);
  overflow: hidden; text-align: center;
  display: flex; flex-direction: column;
  transition: transform .28s cubic-bezier(.34,1.56,.64,1), border-color .25s, box-shadow .25s;
}
.cat-card:hover { border-color: var(--orange); transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.cat-card:active { transform: scale(0.99); }
.cat-card__media {
  position: relative; aspect-ratio: 4 / 3;
  background: var(--cream); overflow: hidden;
}
.cat-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .45s ease;
}
.cat-card:hover .cat-card__media img { transform: scale(1.07); }
.cat-card__media--tile { display: grid; place-items: center; }
.cat-card__media--grill { background: linear-gradient(140deg, var(--orange), var(--orange-deep)); }
.cat-card__media--vegan { background: linear-gradient(140deg, #4caf50, #2e7d32); }
.cat-card__tileic {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--white); display: grid; place-items: center;
  box-shadow: 0 8px 18px rgba(35,24,21,.18);
  transition: transform .4s;
}
.cat-card:hover .cat-card__tileic { transform: scale(1.08); }
.cat-card__tileic svg { width: 56px; height: 56px; }
.cat-card__body { padding: 18px 16px 22px; }
.cat-card h3 { font-size: 1.32rem; margin-bottom: 10px; }
.cat-card .mini {
  font-family: var(--font-display); font-weight: 700; font-size: .94rem;
  color: var(--orange-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.cat-card .mini svg { width: 16px; height: 16px; transition: transform .25s; }
.cat-card:hover .mini svg { transform: translateX(4px); }

/* ---------- Favorites ---------- */
.fav-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.fav-card {
  background: var(--white); border-radius: var(--r-card); overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform .26s var(--ease-out), border-color .26s;
  border: 2px solid transparent;
}
.fav-card:hover { border-color: var(--orange); }
.fav-card:active { transform: scale(0.98); }
.fav-card__media {
  position: relative; aspect-ratio: 16/11;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 38%, var(--yellow) 0%, var(--orange) 90%);
}
.fav-card__media svg { width: 62%; height: auto; filter: drop-shadow(0 10px 14px rgba(35,24,21,.25)); }
.fav-card__badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--white); color: var(--orange-deep);
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  padding: 6px 14px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-cartoon);
}
.fav-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.fav-card__body h3 { font-size: 1.34rem; }
.fav-card__body p { font-size: .96rem; color: var(--ink-soft); flex: 1; }
.fav-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.fav-card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.32rem; color: var(--navy); }
.fav-card__price small { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }

/* ---------- Lunch ---------- */
.lunch {
  background: linear-gradient(120deg, var(--orange) 0%, var(--yellow) 130%);
  border-radius: var(--r-lg);
  padding: clamp(40px,6vw,72px);
  position: relative; overflow: hidden;
  color: var(--white);
}
.lunch::before {
  content: ""; position: absolute; right: -90px; top: -90px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.lunch__grid { position: relative; display: grid; grid-template-columns: 1.4fr .9fr; gap: 30px; align-items: center; }
.lunch__price {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem,7vw,5.4rem); line-height: 1; margin-bottom: 8px;
  text-shadow: 0 6px 0 rgba(35,24,21,.18);
}
.lunch h2 { color: var(--white); font-size: clamp(1.8rem,3.4vw,2.6rem); margin-bottom: 14px; }
.lunch p { font-size: 1.12rem; max-width: 460px; margin-bottom: 28px; color: rgba(255,255,255,.95); }
.lunch__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.lunch .btn--primary { background: var(--navy); box-shadow: 0 6px 0 #061f63; }
.lunch .btn--primary:hover { box-shadow: 0 9px 0 #061f63; }
.lunch .btn--outline { background: var(--white); border-color: var(--white); color: var(--orange-deep); }
.lunch__mascot { display: grid; place-items: center; }
.lunch__mascot svg { width: min(290px,90%); filter: drop-shadow(0 20px 22px rgba(35,24,21,.30)); }
.lunch__mascot-img { width: min(340px,100%); height: auto; display: block; filter: drop-shadow(0 20px 22px rgba(35,24,21,.30)); }

/* ---------- Sauces ---------- */
.sauce-rail { padding: 14px 4px 26px; }
.saser-hero-img { width: 100%; max-width: 960px; height: auto; border-radius: var(--r-card); display: block; margin: 0 auto; box-shadow: var(--shadow-soft); }
.sauce-rail::-webkit-scrollbar { height: 8px; }
.sauce-rail::-webkit-scrollbar-thumb { background: var(--beige); border-radius: 99px; }
.sauce {
  flex: 0 0 auto; width: 168px; scroll-snap-align: start;
  background: var(--white); border-radius: var(--r-card);
  padding: 26px 18px 22px; text-align: center;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--beige);
  transition: transform .26s var(--ease-out), border-color .26s;
  opacity: 0; transform: translateY(20px);
}
.sauce.in { animation: sauceIn .45s forwards; }
@keyframes sauceIn { to { opacity: 1; transform: translateY(0) } }
.sauce:hover { border-color: var(--orange); }
.sauce:active { transform: scale(0.98); }
.sauce__cup { width: 88px; height: 88px; margin: 0 auto 14px; }
.sauce h4 { font-size: 1.08rem; }
.sauce span { font-size: .85rem; color: var(--ink-soft); font-family: var(--font-body); font-weight: 600; }

/* ---------- Mascot story ---------- */
.story { background: var(--navy); color: var(--white); border-radius: var(--r-lg); overflow: hidden; position: relative; }
.story::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(620px 420px at 84% 20%, rgba(245,130,32,.30), transparent 60%);
}
.story__inner { position: relative; padding: clamp(44px,6vw,76px); text-align: center; }
.story h2 { color: var(--white); font-size: clamp(2rem,4.4vw,3.2rem); margin-bottom: 16px; }
.story h2 span { color: var(--yellow); }
.story p { color: rgba(255,255,255,.88); max-width: 620px; margin: 0 auto 50px; font-size: 1.12rem; }
.story__trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.story__card {
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: var(--r-card); padding: 28px 22px;
  transition: transform .26s var(--ease-out), background .26s;
}
.story__card:hover { background: rgba(255,255,255,.11); }
.story__card:active { transform: scale(0.98); }
.story__card svg { width: 130px; height: auto; margin: 0 auto 18px; filter: drop-shadow(0 12px 14px rgba(0,0,0,.30)); }
.story__card h4 { color: var(--white); font-size: 1.18rem; }

/* ---------- Order CTA ---------- */
.ordercta {
  background: var(--white);
  border: 3px solid var(--orange);
  border-radius: var(--r-lg);
  padding: clamp(40px,5vw,64px);
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.3fr .9fr; gap: 30px; align-items: center;
}
.ordercta::before {
  content: ""; position: absolute; left: -80px; bottom: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,40,.4), transparent 70%);
}
.ordercta__txt { position: relative; }
.ordercta h2 { font-size: clamp(2rem,4.6vw,3.2rem); margin-bottom: 14px; }
.ordercta p { font-size: 1.14rem; color: var(--ink-soft); max-width: 440px; margin-bottom: 30px; }
.ordercta__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.ordercta__mascot { position: relative; display: grid; place-items: center; }
.ordercta__mascot svg { width: min(300px,92%); filter: drop-shadow(0 20px 22px rgba(35,24,21,.25)); }
.ordercta__mascot-img { width: min(300px,92%); height: auto; filter: drop-shadow(0 20px 22px rgba(35,24,21,.25)); display: block; }

/* ---------- Location ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 30px; align-items: stretch; }
.loc-card {
  background: var(--white); border-radius: var(--r-card);
  padding: 36px; box-shadow: var(--shadow-soft);
  border: 2px solid var(--beige);
}
.loc-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.loc-line { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1.5px dashed var(--beige); }
.loc-line:last-of-type { border-bottom: none; }
.loc-line .ic-slot { display: block; flex-shrink: 0; margin-top: 3px; color: var(--orange-deep); }
.loc-line .ic-slot svg { width: 22px; height: 22px; }
.loc-line b { font-family: var(--font-display); display: block; font-size: 1.02rem; }
.loc-line span { color: var(--ink-soft); font-size: .98rem; }
.loc-hours { width: 100%; }
.loc-hours div { display: flex; justify-content: space-between; font-size: .98rem; padding: 3px 0; }
.loc-hours span:first-child { color: var(--ink-soft); }
.loc-hours b { font-family: var(--font-display); }
.loc-card__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.loc-map {
  border-radius: var(--r-card); overflow: hidden; min-height: 380px;
  background: var(--beige); position: relative;
  box-shadow: var(--shadow-soft); border: 2px solid var(--beige);
}
.loc-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: saturate(1.08); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 64px 0 0; margin-top: 40px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer .logo__text { color: var(--white); }
.footer__about { font-size: .98rem; max-width: 280px; margin-top: 18px; }
.footer h4 { color: var(--white); font-size: 1.08rem; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: .98rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--orange); }
.footer__social { display: flex; gap: 12px; margin-top: 8px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background .2s, transform .2s; padding: 0;
}
.footer__social a:hover { background: var(--orange); }
.footer__social svg { width: 20px; height: 20px; color: var(--white); }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0; text-align: center; font-size: .9rem;
}
.footer__bar b { color: var(--orange); }

/* ---------- Mobile sticky CTA ---------- */
.mobile-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px 16px;
  background: rgba(255,243,221,.96);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(245,130,32,.3);
}
.mobile-sticky .btn { flex: 1; padding: 14px; font-size: 1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .5s ease-out, transform .5s var(--ease-out); }
.reveal.show { opacity: 1; transform: none; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero { background: linear-gradient(150deg, var(--cream) 0%, var(--beige) 100%); padding: clamp(44px,6vw,76px) 0 clamp(36px,5vw,56px); position: relative; overflow: hidden; }
.menu-hero::before {
  content: ""; position: absolute; right: -60px; top: -40px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,40,.35), transparent 70%);
}
.menu-hero__grid { position: relative; display: grid; grid-template-columns: 1.5fr .8fr; gap: 30px; align-items: center; }
.menu-hero h1 { font-size: clamp(2.6rem,6vw,4.4rem); margin-bottom: 14px; }
.menu-hero p { font-size: 1.18rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 28px; }
.menu-hero__mascot svg { width: min(240px,80%); margin-left: auto; filter: drop-shadow(0 18px 20px rgba(35,24,21,.25)); }
.menu-hero__mascot-img { width: min(300px,95%); margin-left: auto; display: block; filter: drop-shadow(0 18px 20px rgba(35,24,21,.25)); }

.search-box { position: relative; max-width: 480px; }
.search-box svg { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--ink-soft); }
.search-box input {
  width: 100%; font-family: var(--font-body); font-size: 1.05rem; font-weight: 600;
  padding: 17px 22px 17px 54px;
  border-radius: var(--r-pill); border: 2.5px solid var(--beige);
  background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-cartoon); outline: none; transition: border-color .2s;
}
.search-box input:focus { border-color: var(--orange); }

.filterbar { position: sticky; top: var(--header-h); z-index: 80; background: rgba(255,243,221,.94); backdrop-filter: blur(10px); padding: 16px 0; border-bottom: 2px solid rgba(245,130,32,.18); }
.filter-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; }
.filter-tabs::-webkit-scrollbar { height: 0; }
.filter-tab {
  flex: 0 0 auto;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  padding: 11px 22px; border-radius: var(--r-pill);
  background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-cartoon); border: 2px solid transparent;
  transition: background .2s, color .2s, transform .15s var(--ease-out);
}
.filter-tab:hover { }
.filter-tab:active { transform: scale(0.97); }
.filter-tab.active { background: var(--orange); color: var(--white); border-color: var(--orange-deep); }

.menu-section { padding: clamp(40px,5vw,64px) 0 0; }
.menu-section h2 {
  font-size: clamp(1.7rem,3.4vw,2.5rem); margin-bottom: 6px;
  display: flex; align-items: center; gap: 14px;
}
.menu-section h2 .tag {
  font-size: .8rem; font-family: var(--font-display); font-weight: 700;
  background: var(--navy); color: var(--white); padding: 5px 14px; border-radius: var(--r-pill);
}
.menu-section .ms-sub { color: var(--ink-soft); margin-bottom: 12px; }
.menu-item__prices { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.mip-main { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--navy); white-space: nowrap; }
.mip-size { font-size: .82rem; color: var(--ink-soft); white-space: nowrap; }
.mip-size::before { content: "·"; margin-right: 6px; }

.menu-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.menu-item {
  background: var(--white); border-radius: 20px;
  padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start;
  border: 2px solid var(--beige);
  transition: transform .2s var(--ease-out), border-color .2s, box-shadow .2s;
}
.menu-item:hover { border-color: var(--orange); box-shadow: var(--shadow-card); }
.menu-item:active { transform: scale(0.98); }
.menu-item__no {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--white); background: var(--orange);
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
}
.menu-item__body { flex: 1; min-width: 0; }
.menu-item__top { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.menu-item__name { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; }
.menu-item__price { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--navy); white-space: nowrap; }
.menu-item__desc { font-size: .95rem; color: var(--ink-soft); margin-top: 4px; }
.menu-item__badges { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }
.badge {
  font-family: var(--font-display); font-weight: 700; font-size: .74rem;
  padding: 4px 11px; border-radius: var(--r-pill); letter-spacing: .02em;
}
.badge--pop { background: #FFF0D6; color: var(--orange-deep); }
.badge--veg { background: #E2F4E4; color: var(--green); }
.badge--hot { background: #FBE0DA; color: #C0392B; }
.badge--lunch { background: #E5ECFF; color: var(--navy); }
.badge--new { background: var(--orange); color: #fff; }
.menu-empty { text-align: center; padding: 60px 0; color: var(--ink-soft); font-size: 1.1rem; display: none; }
.lunch-note { max-width: 640px; font-size: 1.12rem; color: var(--ink-soft); background: var(--white); border-radius: var(--r-card); padding: 22px 26px; box-shadow: var(--shadow-cartoon); }
.pizza-intro {
  font-size: 1.08rem; color: var(--ink); line-height: 1.55;
  background: linear-gradient(135deg, #FFF3DD, #FCE6C4);
  border: 2px solid rgba(245,130,32,.25);
  border-radius: var(--r-card); padding: 16px 24px; margin-bottom: 22px;
  box-shadow: var(--shadow-cartoon);
}
.pizza-intro strong { color: var(--orange-deep); }
.allergy-note {
  margin-top: 16px; max-width: 480px;
  font-size: .95rem; line-height: 1.45; color: var(--ink-soft);
  background: var(--white); border-left: 3px solid var(--orange);
  border-radius: 12px; padding: 11px 16px; box-shadow: var(--shadow-cartoon);
}
.group-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.group-chip {
  font-family: var(--font-display); font-weight: 600; font-size: .92rem;
  padding: 8px 16px; border-radius: var(--r-pill);
  background: var(--white); color: var(--ink-soft);
  box-shadow: var(--shadow-cartoon); white-space: nowrap;
  transition: background .18s, color .18s, transform .18s;
}
.group-chip:hover { background: var(--orange); color: #fff; transform: translateY(-2px); }

/* ---------- Scroll-to-top button ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 95;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -6px rgba(222,106,12,.6);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s, transform .25s, visibility .25s, background .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--orange-deep); transform: translateY(-3px); }
.to-top svg { width: 22px; height: 22px; }
@media (max-width: 860px) { .to-top { bottom: 80px; right: 16px; } }
.menu-empty.show { display: block; }

/* === NYA SEKTIONER === */

/* -- Snackbox banner -- */
.snackbox-banner { padding: 22px 26px; }
.snackbox-banner__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch;
  background: linear-gradient(115deg, #2c1d11 0%, #41290f 55%, #2c1d11 100%);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.snackbox-banner__imgs { position: relative; min-height: 300px; }
.snackbox-img--main { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.snackbox-img--secondary { display: none; }
/* soft seam: image fades into the dark text panel */
.snackbox-banner__imgs::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, transparent 58%, rgba(44,29,17,.92) 100%);
}
.snackbox-banner__txt {
  padding: 46px 54px; color: var(--white); align-self: center;
  position: relative; overflow: hidden;
}
/* warm glow behind the price */
.snackbox-banner__txt::before {
  content: ""; position: absolute; left: 34px; top: 28px;
  width: 240px; height: 240px; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(245,130,32,.30), transparent 70%);
}
.snackbox-banner__txt > * { position: relative; z-index: 1; }
.snackbox-badge {
  display: inline-block; background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  padding: 5px 15px; border-radius: var(--r-pill); letter-spacing: .04em;
  margin-bottom: 14px; text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(245,130,32,.4);
}
.snackbox-price {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 4rem); color: var(--yellow);
  line-height: 1; margin: 0 0 14px;
  text-shadow: 0 4px 18px rgba(0,0,0,.35);
}
.snackbox-desc { font-size: 1.1rem; color: rgba(255,255,255,.85); line-height: 1.55; margin: 0; }
@media (max-width: 680px) {
  .snackbox-banner { padding: 16px 18px; }
  .snackbox-banner__inner { grid-template-columns: 1fr; }
  .snackbox-banner__imgs { min-height: 200px; }
  /* on mobile the fade points downward into the stacked text */
  .snackbox-banner__imgs::after {
    background: linear-gradient(180deg, transparent 50%, rgba(44,29,17,.95) 100%);
  }
  .snackbox-banner__txt { padding: 22px 22px 30px; text-align: center; }
  .snackbox-banner__txt::before { left: 50%; top: -20px; transform: translateX(-50%); }
}

/* -- Familjepizza -- */
.family-pizza {
  background: var(--white); border: 3px solid var(--yellow); border-radius: var(--r-lg);
  padding: clamp(40px,5vw,64px); display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 40px; align-items: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.family-pizza::before {
  content: ""; position: absolute; right: -60px; top: -60px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,201,40,.28), transparent 70%);
}
.family-pizza__txt { position: relative; }
.family-pizza__txt h2 { font-size: clamp(2rem,4vw,3rem); margin-bottom: 14px; }
.family-pizza__txt p { font-size: 1.12rem; color: var(--ink-soft); max-width: 440px; margin-bottom: 28px; }
.family-pizza__visual { position: relative; display: grid; place-items: center; }
.family-pizza__pizza {
  width: min(300px,90%); filter: drop-shadow(0 18px 24px rgba(35,24,21,.22));
  animation: bob 7s ease-in-out infinite;
}
.family-pizza__sticker {
  position: absolute; top: 6%; right: 4%;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: .9rem; line-height: 1.25;
  width: 82px; height: 82px; border-radius: 50%;
  display: grid; place-items: center; text-align: center; padding: 10px;
  box-shadow: 0 6px 0 rgba(35,24,21,.18); transform: rotate(8deg);
  animation: floaty 5s ease-in-out infinite .4s;
}

/* -- Veganskt & glutenfritt -- */
.special-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.vegan-card {
  background: var(--white); border: 2.5px solid var(--green);
  border-radius: var(--r-card); padding: 36px; position: relative; overflow: hidden;
}
.vegan-card::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,163,77,.1), transparent 70%); pointer-events: none;
}
.eyebrow-green {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green);
  background: var(--white); padding: 8px 18px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-cartoon); margin-bottom: 22px;
  border: 2px solid rgba(63,163,77,.2); position: relative;
}
.eyebrow-green::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.vegan-card h2 { font-size: clamp(1.5rem,2.8vw,2.1rem); margin-bottom: 14px; }
.vegan-desc { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 24px; }
.vegan-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.pill-veg {
  font-family: var(--font-display); font-weight: 700; font-size: .88rem;
  background: #E2F4E4; color: var(--green); padding: 8px 16px;
  border-radius: var(--r-pill); border: 2px solid rgba(63,163,77,.22);
  display: inline-flex; align-items: center; gap: 8px;
}
.pill-veg::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.vegan-note { font-size: .9rem; color: var(--ink-soft); font-style: italic; position: relative; }
.gluten-card { background: var(--white); border: 2.5px solid var(--beige); border-radius: var(--r-card); padding: 36px; }
.gluten-card__icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--cream);
  display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-cartoon);
}
.gluten-card__icon svg { width: 34px; height: 34px; }
.gluten-card h2 { font-size: clamp(1.5rem,2.8vw,2.1rem); margin-bottom: 14px; }
.gluten-desc { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 22px; }
.gluten-items { display: flex; flex-direction: column; gap: 10px; }
.gluten-item {
  display: flex; align-items: center; gap: 12px; background: var(--cream);
  border-radius: 14px; padding: 12px 18px;
  font-family: var(--font-display); font-weight: 700; font-size: .97rem;
}
.gluten-item__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* -- Viral video + Restaurant Guru -- */
.viral-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.viral-grid::-webkit-scrollbar { display: none; }
.video-card {
  flex: 0 0 260px; scroll-snap-align: start;
  border-radius: var(--r-card); overflow: hidden; background: #1a0d05;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.video-card__thumb {
  flex: 1; aspect-ratio: 9/16; display: grid; place-items: center;
  background: #1a0d05; position: relative; text-decoration: none; overflow: hidden;
}
.video-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play {
  position: absolute; width: 68px; height: 68px;
  background: rgba(255,255,255,.92); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(35,24,21,.4);
  transition: transform .22s cubic-bezier(.34,1.56,.64,1);
}
.video-play svg { width: 26px; height: 26px; color: var(--orange-deep); margin-left: 4px; }
.video-card__thumb:hover .video-play { transform: scale(1.12); }
.video-card__caption { background: var(--ink); color: rgba(255,255,255,.75); font-size: .9rem; padding: 16px 22px; }
.video-card__caption strong { color: var(--white); display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin-bottom: 3px; }
.guru-card {
  background: var(--white); border: 2.5px solid var(--beige); border-radius: var(--r-card);
  padding: 36px 28px; display: flex; flex-direction: column;
  align-items: center; text-align: center; box-shadow: var(--shadow-soft);
}
.guru-badge-wrap { width: min(220px,85%); margin: 0 auto 24px; filter: drop-shadow(0 10px 18px rgba(35,24,21,.2)); }
.guru-badge-wrap svg { width: 100%; height: auto; }
.guru-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.guru-card p { font-size: 1rem; color: var(--ink-soft); }

/* -- Sociala medier -- */
.social-wrap { display: grid; grid-template-columns: 1fr minmax(0, 420px); gap: 48px; align-items: start; }
.social-feed { width: 100%; }
.social-text { max-width: 480px; position: sticky; top: 110px; }
.social-text h2 { margin-bottom: 14px; }
.social-text p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 28px; }
.social-feed iframe { border-radius: var(--r-card); box-shadow: var(--shadow-card); display: block; }
@media (max-width: 860px) {
  .social-wrap { grid-template-columns: 1fr; }
  .social-text { position: static; max-width: none; }
  .social-feed { display: flex; justify-content: center; }
  .social-feed iframe { width: 100%; max-width: 340px; }
}

/* -- Galleri -- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.gallery-grid--preview {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
}
.gallery-item {
  border: none; background: none; padding: 0; cursor: pointer;
  border-radius: var(--r-card); overflow: hidden;
  aspect-ratio: 1; display: block;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s var(--ease-out);
  display: block;
}
.gallery-item:hover img { }
.gallery-preview-cta { text-align: center; margin-top: 12px; }
.gallery-page-hero { padding-bottom: 0; }
.gallery-page-sub { font-size: 1.05rem; color: var(--ink-soft); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img-wrap {
  max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img-wrap img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 8px;
  display: block;
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed; background: rgba(255,255,255,.15); border: none;
  color: #fff; font-size: 2rem; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; display: grid; place-items: center;
  transition: background .2s;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover {
  background: rgba(255,255,255,.3);
}
.lightbox__close { top: 20px; right: 20px; font-size: 1.2rem; }
.lightbox__prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 2.4rem; }
.lightbox__next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 2.4rem; }

@media (max-width: 700px) {
  .gallery-grid--preview { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -- Responsivt (nya sektioner) -- */
@media (max-width: 1080px) {
  .family-pizza { grid-template-columns: 1fr; }
  .family-pizza__visual { display: none; }
  .viral-grid { grid-template-columns: 1fr; }
}


/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 16px; }
  .hero__stage { order: 1; min-height: 220px; }
  .hero__mascot { width: min(220px, 55%); }
  .hero__text { max-width: none; }
  .hero { background-position: 30% center; background-size: 280% auto; }
  .hero::before { background: linear-gradient(to bottom, rgba(10,6,4,.65) 0%, rgba(10,6,4,.85) 60%, rgba(10,6,4,.70) 100%); }
  .lunch__grid, .ordercta, .loc-grid, .menu-hero__grid { grid-template-columns: 1fr; }
  .lunch__mascot, .menu-hero__mascot { display: none; }
  .ordercta__mascot { display: grid; justify-items: center; }
  .ordercta__mascot-img { width: min(200px, 60%); }
  .fav-grid { grid-template-columns: repeat(2,1fr); }
  .story__trio { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .infobar__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .burger { display: block; }
  .mobile-sticky { display: flex; }
  body { padding-bottom: 76px; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 560px) {
  .fav-grid, .infobar__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .float-sticker { font-size: .82rem; padding: 9px 14px; }
  .fs-1 { left: 0; } .fs-3 { left: 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card__body { padding: 14px 10px 18px; }
  .cat-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
}
/* ---------- Hover: pointer devices only (Emil: touch triggers hover on tap) ---------- */
@media (hover: hover) and (pointer: fine) {
  .info-card:hover { transform: translateY(-6px); }
  .cat-card:hover { transform: translateY(-10px); }
  .cat-card:hover .mini svg { transform: translateX(4px); }
  .fav-card:hover { transform: translateY(-6px); }
  .sauce:hover { transform: translateY(-6px); }
  .story__card:hover { transform: translateY(-6px); }
  .menu-item:hover { transform: translateY(-4px); }
  .filter-tab:hover { transform: translateY(-2px); }
  .footer__social a:hover { transform: translateY(-3px); }
  .gallery-item:hover img { transform: scale(1.05); }
  .video-card__thumb:hover .video-play { transform: scale(1.12); }
}

/* ---------- Stagger: info-cards & cat-cards ---------- */
.infobar__grid .info-card:nth-child(1) { transition-delay: 0ms; }
.infobar__grid .info-card:nth-child(2) { transition-delay: 40ms; }
.infobar__grid .info-card:nth-child(3) { transition-delay: 80ms; }
.infobar__grid .info-card:nth-child(4) { transition-delay: 120ms; }
.cat-grid .cat-card:nth-child(1) { animation-delay: 0ms; }
.cat-grid .cat-card:nth-child(2) { animation-delay: 50ms; }
.cat-grid .cat-card:nth-child(3) { animation-delay: 100ms; }
.cat-grid .cat-card:nth-child(4) { animation-delay: 150ms; }
.cat-grid .cat-card:nth-child(5) { animation-delay: 200ms; }
.cat-grid .cat-card:nth-child(6) { animation-delay: 250ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* -- Omdömen / Google reviews -- */
.reviews { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.reviews__summary {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--cream); border: 2.5px solid var(--beige);
  border-radius: var(--r-pill); padding: 14px 26px; box-shadow: var(--shadow-card);
}
.reviews__score { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--orange-deep); line-height: 1; }
.reviews__stars { display: flex; gap: 3px; margin-bottom: 4px; }
.reviews__count { font-size: .92rem; color: var(--ink-soft); margin: 0; }
.rev-star { width: 20px; height: 20px; fill: var(--yellow); }
.rev-star--off { fill: var(--beige); }
.reviews__grid {
  width: 100%; display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.review-card {
  background: var(--white); border: 2.5px solid var(--beige); border-radius: var(--r-card);
  box-shadow: var(--shadow-card); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card__stars { display: flex; gap: 2px; }
.review-card__stars .rev-star { width: 18px; height: 18px; }
.review-card__text {
  color: var(--ink); font-size: 1rem; line-height: 1.6; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card__foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-card__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.review-card__avatar--ph {
  display: grid; place-items: center; background: var(--orange); color: var(--white);
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
}
.review-card__who { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.review-card__who strong { font-size: .98rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-card__who span { font-size: .82rem; color: var(--ink-soft); }
.review-card__g {
  margin-left: auto; flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center; background: var(--cream); border: 1.5px solid var(--beige);
  font-family: var(--font-display); font-weight: 800; color: var(--orange-deep); font-size: 1rem;
}
.reviews__cta { align-self: center; }
@media (max-width: 560px) {
  .reviews__score { font-size: 2.1rem; }
  .reviews__summary { gap: 14px; padding: 12px 20px; }
}

/* -- Om oss -- */
.about { max-width: 820px; margin: 0 auto; text-align: center; }
.about p { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 20px; }
.about__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.about__stat {
  background: var(--white); border: 2.5px solid var(--beige); border-radius: var(--r-card);
  padding: 26px 18px; box-shadow: var(--shadow-card);
}
.about__stat strong { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--orange-deep); margin-bottom: 6px; }
.about__stat span { font-size: .95rem; color: var(--ink-soft); }
@media (max-width: 560px) {
  .about__stats { grid-template-columns: 1fr; gap: 14px; }
}
