/*
 * VENDEGFELULET · 2/5 — RENDELESKOVETES ES VENDEGPARBESZED
 *
 * Lepessor, csipoger, atveteli kod, csevego, elegedettsegkerdes, elkeszult-
 * kepernyo, ajanlo. Ez a vendeg utja a LEADAS UTAN.
 *
 * A BETOLTESI SORREND KOTOTT, es nem izles kerdese. Ezek a fajlok EGY
 * kaszkadot alkotnak — ugyanazt, ami korabban egyetlen `vendeg.css` volt:
 *
 *   vendeg.css  ->  vendeg-vendegut.css  ->  vendeg-dizajn.css
 *               ->  vendeg-reteg.css     ->  vendeg-kartyas.css
 *
 * A darabolas BAJTRA folytonos volt: a reszek osszefuzve karakterre az
 * eredeti fajl. Ezert egyetlen szabaly sem valtoztatta a helyet a
 * kaszkadban — de csak addig, amig a sorrend ez marad. A sorrendet a
 * `lib/header.php` `$vendegLapok` tombje rogziti; ott kell hozzanyulni.
 */

/* ── Vendég nyitóoldal ───────────────────────────────────────────────── */

.qb-home {
  background:
    linear-gradient(90deg, var(--brand-dark) 0 7px, transparent 7px),
    var(--paper);
}

.qb-home__main {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(34px, 7vw, 84px) var(--page-pad) 56px;
}

.qb-home__hero {
  max-width: 780px;
  padding-bottom: clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--hairline-strong);
}

.qb-home__eyebrow,
.qb-home__step {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.qb-home__hero h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.95;
}

.qb-home__hero > p:last-child {
  max-width: 42ch;
  margin: 22px 0 0;
  color: var(--ash);
  font-size: 1.08rem;
}

.qb-home__tables {
  padding-top: clamp(28px, 5vw, 48px);
}

.qb-home__sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.qb-home__sectionhead h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.05;
}

.qb-home__sectionhead > span {
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.qb-home__tablelist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qb-home__tablelist a {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(27, 25, 21, 0.04);
  transition: border-color 0.14s ease, transform 0.14s ease, box-shadow 0.14s ease;
}

.qb-home__tablelist a:hover {
  border-color: var(--brand);
  box-shadow: var(--lift);
  transform: translateY(-2px);
}

.qb-home__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.qb-home__staff {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
  color: var(--ash);
  font-size: 0.875rem;
}

.qb-home__staff a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.qb-home__staff a span {
  color: var(--brand-dark);
}

.qb-home__empty {
  max-width: 720px;
  margin: 15vh auto 0;
}

body.qb-guest .qb-pagefoot {
  gap: 12px;
  margin-top: 44px;
  padding-top: 18px;}

body.qb-guest .qb-pagefoot .qb-kozl__text {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media (max-width: 760px) {
  .qb-home__tablelist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }}

@media (max-width: 480px) {
  .qb-home__main {
    padding-top: 28px;
  }

  .qb-home__hero h1 {
    font-size: 2.65rem;
  }

  .qb-home__tablelist {
    grid-template-columns: 1fr;
  }

  .qb-home__tablelist a {
    min-height: 68px;
  }}

.qb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.92);
  cursor: zoom-out;
}

.qb-lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
}

.qb-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.qb-paycall {
  margin: 0 0 8px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--amber-soft);
  border: 1px solid var(--amber);
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
}

.qb-amountfield {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qb-amountfield input {
  flex: 1 1 auto;
  min-width: 0;
}

.qb-amountfield__unit {
  flex: 0 0 auto;
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 0.875rem;
}
/* ── Üzenetváltás ──────────────────────────────────────────────────────── */

.qb-suggest,
.qb-loyal {
  margin: 20px 0 0;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.qb-loyal__points {
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.qb-loyal__lead {
  margin: 8px 0 12px;
  font-size: 0.9375rem;
}


/*
 * A CHAT NEM TARTALMI KÁRTYA: mindig ugyanott található művelet. Asztali
 * gépen lebegő ablak, telefonon alsó panel. A háttér csak nyitva jelenik
 * meg, így a zárt chat nem foglal helyet és nem takarja a rendelést.
 */
.qb-chatbackdrop {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(27, 25, 21, 0.38);
  backdrop-filter: blur(2px);
}


.qb-chat__close:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mint) 38%, transparent);
  outline-offset: 3px;
}


.qb-chat {
  position: fixed;z-index: 85;
  display: flex;
  flex-direction: column;overflow: hidden;border-radius: var(--radius);  animation: qb-chat-in 0.18s ease-out;
}

.qb-chat__head {
  display: flex;
  align-items: center;}

.qb-chat__identity {
  display: inline-flex;
  align-items: center;
  justify-content: center;flex: 0 0 auto;border-radius: var(--radius);}
.qb-chat__heading {
  min-width: 0;
  flex: 1 1 auto;
}

.qb-chat__title {
  margin: 0;
  font-family: var(--font-display);}

.qb-chat__status {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 2px 0 0;}

.qb-chat__status span {flex: 0 0 auto;  border-radius: var(--radius);}

.qb-chat__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;padding: 0;
  flex: 0 0 auto;
  background: transparent;  border-radius: var(--radius);  font: 400 1.6rem/1 var(--font-body);
  cursor: pointer;
}
.qb-chat__conversation {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;  overflow: hidden;}

.qb-chat__empty {
  margin: auto;
  padding: 24px;
  color: var(--ash);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
}

.qb-chat__list {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;  min-height: 0;
  margin: 0;
  padding: 0 3px 0 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  list-style: none;
  max-width: 100%;
}

.qb-chat__msg {border-radius: var(--radius);}

.qb-chat__body {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.qb-chat__msg .qb-chat__meta {
  margin: 5px 0 0;
  color: currentColor;
  font-family: var(--font-body);letter-spacing: 0;}

.qb-chat__composer {
  flex: 0 0 auto;}

.qb-chat__hint {
  margin: 0 2px 8px;line-height: 1.35;
}

.qb-chat__form textarea {
  width: 100%;
  min-width: 0;  max-height: 112px;  resize: none;
  overflow-y: auto;  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  color: var(--ink);
  font: 0.9rem/1.4 var(--font-body);
}

.qb-chat__form textarea:focus {outline: 0;
}

.qb-chat__form textarea[disabled] {
  opacity: 0.58;
  cursor: not-allowed;
}

.qb-chat__send {border-radius: var(--radius);
}

.qb-chat__send svg {
  width: 21px;
  height: 21px;
}

.qb-chat__send.is-loading svg {
  opacity: 0.35;
}

@media (min-width: 641px) {
  .qb-chatbackdrop {
    display: none;
  }}

.qb-suggest__title,
.qb-loyal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.qb-suggest__no {
  padding: 4px 0;
  background: none;
  border: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  text-decoration: underline;
  cursor: pointer;
}

.qb-suggest__item {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
  padding: 0 0 10px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(27, 25, 21, 0.06);
}

.qb-suggest__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.qb-suggest__img {
  display: block;
  width: 100%;
  height: 112px;
  object-fit: cover;
}

.qb-suggest__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 10px;
}

.qb-suggest__name {
  margin: 0;
  font-weight: 600;
}

.qb-suggest__why {
  margin: 2px 0 0;
  color: var(--ash);
  font-size: 0.8125rem;
}

.qb-suggest__price {
  padding: 0 10px;  font-size: 0.875rem;}

/* Mobilon a fénykép és a név dönt. Két termék kényelmesen elfér egymás
   mellett; 360 px alatt visszaáll egy oszlopra, hogy ne legyen zsúfolt. */
@media (min-width: 360px) and (max-width: 639px) {
  .qb-section > .qb-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .qb-section > .qb-list > li,
  .qb-section > .qb-list .qb-productrow {
    min-width: 0;
    height: 100%;
  }

  .qb-section > .qb-list .qb-product {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    align-items: start;
    gap: 9px;
    height: 100%;
    min-height: 230px;
    padding: 8px 8px 54px;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(27, 25, 21, 0.08);
  }

  .qb-section > .qb-list .qb-product__img {
    width: 100%;
    height: 112px;
    border-radius: var(--radius);
  }

  .qb-section > .qb-list .qb-product__img--none {
    background: linear-gradient(135deg, var(--paper), var(--hairline));
  }

  .qb-section > .qb-list .qb-product__name {
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .qb-section > .qb-list .qb-price {
    position: absolute;
    left: 10px;
    bottom: 17px;
    font-size: 0.86rem;
    text-align: left;
  }

  /*
   * A MÉRET NEM ITT DŐL EL. Ez a szabály (0,3,0) súlyú, tehát legyőzte a
   * `body.qb-guest-premium .qb-quickadd` (0,2,1) közös szabályt — így ez az
   * egy gomb 42 pixeles maradt, míg az összes többi 36. A méret kikerült
   * innen, a `--add-size` tokenből jön; itt csak a hely marad.
   */
}

/* ── Élő konyha ───────────────────────────────────────────────────────── */

.qb-live {
  margin: 14px 0 0;
  padding: 18px 16px 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(27, 25, 21, 0.07);
}

.qb-live__now {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 10px;
  margin: 18px 0 0;
  padding: 11px 12px;
  background: var(--amber-soft);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
}

.qb-live__what {
  font-weight: 600;
}

.qb-live__eta {
  color: var(--ash);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.qb-live.is-complete {
  border-color: var(--mint);
}

.qb-live.is-complete .qb-live__now {
  background: var(--mint-soft);
  border-left-color: var(--mint);
}

.qb-confirmed::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: var(--mint);
  border-radius: var(--radius);
  color: var(--on-accent);
  font-size: 0.8rem;
}

.qb-carttoast {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 12px 16px;
  background: var(--ink);
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--lift-strong);
  color: var(--paper);
  font-size: 0.875rem;
  font-weight: 700;
  transform: translateX(-50%);
  animation: qb-carttoast-in 0.18s ease-out;
}

.qb-carttoast__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--mint);
}

/*
 * A LOGÓ ÉS A NÉV EGY SORBAN, a logó DUPLA méretben (44 → 88 képpont).
 *
 * A `line-height: 0` innen kikerült: az akkor kellett, amikor a címben CSAK
 * kép állt. Most szöveg is van benne, és nulla sormagassággal a név
 * összeragadna.
 */


/*
 * A NÉV EGY FOKKAL KISEBB a logó mellett. Teljes címméretben egy 88 pixeles
 * logó mellé egy telefon szélességén már nem fér ki — három sorra törne, és
 * a fejléc elvinné a fél képernyőt.
 */
.qb-title__nev {
  min-width: 0;
  font-size: clamp(1.3rem, 4.8vw, 1.9rem);
  text-wrap: balance;
}

/* ── Fizetés utáni elköszönés ────────────────────────────────────────── */

.qb-farewell {
  width: min(100%, 560px);
  margin: auto;
  padding: clamp(32px, 6vw, 54px);
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-top: 4px solid var(--mint);
  border-radius: var(--radius);  color: var(--ink);
  text-align: center;
}

.qb-farewell__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  background: var(--mint-soft);
  border-radius: var(--radius);
  color: var(--mint);
}

.qb-farewell__mark svg {
  width: 30px;
  height: 30px;
}

.qb-farewell__badge {
  margin: 0;
  color: var(--mint);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.qb-farewell__thanks {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
}

.qb-farewell__bye {
  max-width: 36ch;
  margin: 12px auto 0;
  color: var(--ash);
  font-size: 0.95rem;
}

.qb-rating {
  margin-top: 26px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

.qb-rating__question {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}

.qb-rating__hint {
  margin: 5px 0 16px;
  color: var(--ash);
  font-size: 0.82rem;
}

.qb-rating__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.qb-rating__choice {
  min-height: 76px;
  padding: 10px 6px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ink);
  font: 700 0.75rem/1.2 var(--font-body);
  cursor: pointer;
}

.qb-rating__choice:hover,
.qb-rating__choice:focus-visible {
  border-color: var(--mint);
  color: var(--mint-solid);
}

.qb-rating__choice.is-best {
  background: var(--mint-soft);
  border-color: var(--mint);
  color: var(--mint-solid);
}

.qb-rating__face {
  display: block;
  margin-bottom: 6px;
  font-size: 1.4rem;
  line-height: 1;
}

.qb-rating__skip {
  margin-top: 12px;
  padding: 6px 12px;
  background: transparent;
  border: 0;
  color: var(--ash);
  font: 600 0.78rem var(--font-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.qb-rating__error {
  margin: 8px 0 0;
  color: var(--plum);
  font-size: 0.78rem;
}

.qb-rating__thanks {
  color: var(--mint-solid);
  font-weight: 700;
}

/*
 * NYILVÁNOS ÉRTÉKELÉS a köszönő sor alatt. Külön sorban, mert kérés — nem
 * a visszajelzés része, és nem is kötelező.
 */
.qb-rating__public {
  display: block;
  margin-top: 8px;
  font-weight: 700;
}

/* A válaszért járó pont a köszönő sor mellett, nem jelvényben. */
.qb-rating__bonus {
  margin-left: 4px;
  font-variant-numeric: tabular-nums;
}

.qb-rating__thanks span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  background: var(--mint);
  border-radius: var(--radius);
  color: var(--on-accent);
}

.qb-is-paid .qb-statusmain {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62vh;
  padding: 40px 20px 56px;
}

.qb-is-paid .qb-statusmain > :not(.qb-farewell) {
  display: none;
}

/* ── Értesítés-buborék ────────────────────────────────────────────────── */

.qb-toast {
  position: fixed;
  top: 16px;
  right: 16px;
  left: 16px;
  z-index: 50;
  margin: 0;
  padding: 14px 18px;
  background: var(--mint);
  border-radius: var(--radius);
  box-shadow: var(--lift);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
}

@media (min-width: 560px) {
  .qb-toast {
    right: auto;
    left: 50%;
    max-width: 420px;
    transform: translateX(-50%);
  }}

/* ── Személyzeti sáv ──────────────────────────────────────────────────── */

.qb-notice--staff {
  background: var(--plum-soft);
  border-bottom-color: var(--plum);
}


/*
 * LÉTSZÁM GOMBSOR. A társaságok többsége 1–6 fő: azt egy koppintással meg
 * lehet adni, számbillentyűzet nélkül. A rádiógomb maga rejtve van{
  flex: 1 1 3rem;
}

/* ── Vendégoldali frissítés: menü, kosár, siker, állapot ──────────────── */

.qb-heti__head {
  position: relative;
  z-index: 1;
  display: block;
}

.qb-heti__head .qb-heti__nev {
  flex: 1 1 auto;
  min-width: 0;
}

.qb-heti .qb-heti__nev span {
  min-width: 0;
}

/*
 * MEDDIG KAPHATÓ. Halkabb a menü nevénél: nem az a hír, hogy 11-től 15-ig,
 * hanem hogy mi a mai menü — az időablak csak megnyugtatja azt, aki
 * fél, hogy lekési.
 */
.qb-heti__ablak {
  position: relative;
  z-index: 1;
  margin: 2px 0 0;
  color: var(--ash);
  font-size: 0.82rem;
}

.qb-heti__buy {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid var(--hairline);
}

.qb-heti__kosar {  align-items: center;
  justify-content: center;cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.qb-heti__kosar:active {
  background: var(--mint-solid-active);
  border-color: var(--mint-solid-active);
  transform: translateY(1px);
}
.qb-tape {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-bottom: 0;
  border-radius: var(--radius);
  box-shadow: var(--lift-strong);
}

.qb-carthead {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -18px -18px 14px;
  padding: 18px;
  background: color-mix(in srgb, var(--surface) 94%, var(--brand-soft));
  border-bottom: 1px solid var(--hairline);
}

.qb-carthead__summary {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  padding: 10px 12px;  border-radius: var(--radius);}

.qb-carthead__count {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.76;
}

.qb-carthead__summary strong,
.qb-done__code strong {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.qb-tape__sub,
.qb-tape__note {
  color: color-mix(in srgb, var(--paper) 72%, transparent);
}

.qb-done {
  position: relative;
  overflow: hidden;
  margin: 0 20px 18px;border-radius: var(--radius);  text-align: center;
}

.qb-done__x {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  color: var(--ash);
  cursor: pointer;
}

.qb-done__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;margin-bottom: 12px;  border-radius: var(--radius);}

.qb-done__mark::after {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid var(--mint);
  border-radius: var(--radius);
  opacity: 0.34;
  animation: qb-done-ring 1.8s ease-out infinite;
}
.qb-done__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1.1;
}

.qb-done__code {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 0;
  padding: 8px 12px;  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.qb-done__hint {
  margin: 10px 0 16px;
  color: var(--ash);
}
/*
 * A vendég étlapja a referencia szerint fix világos, 430 px-es kompozíció.
 * Így a PC sötét rendszerbeállítása és a széles viewport nem változtatja meg
 * sem a palettát, sem a kétoszlopos kártyaritmust.
 */
html:has(body.qb-guest) {  color-scheme: light;
}

body.qb-guest > main {
  width: min(100%, 430px);
  margin-right: auto;
  margin-left: auto;
}

/* A vendégoldal minden elsődleges művelete ugyanazt a mély prémiumzöldet kapja. */
body.qb-guest .qb-btn--primary,
body.qb-guest .qb-btn--mint,
body.qb-guest .qb-buttons a.is-primary {
  --btn-szin: var(--mint-solid);}

body.qb-guest .qb-btn--fizet {
  --btn-fizet: var(--mint-solid);
}

body.qb-guest .qb-btn--primary:focus-visible,
body.qb-guest .qb-btn--mint:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mint) 38%, transparent);
}

body.qb-guest .qb-cartbar,
body.qb-guest .qb-heti__kosar,
body.qb-guest .qb-quickadd,
body.qb-guest .qb-reco__add,
body.qb-guest .qb-cartreco__item > .qb-btn {  border-color: color-mix(in srgb, var(--mint-solid) 82%, #000);}
body.qb-guest .qb-cartbar:hover,
body.qb-guest .qb-heti__kosar:hover,
body.qb-guest .qb-quickadd:hover,
body.qb-guest .qb-reco__add:hover,
body.qb-guest .qb-cartreco__item > .qb-btn:hover {transform: translateY(-1px);
}

body.qb-guest .qb-cartbar:active,
body.qb-guest .qb-heti__kosar:active,
body.qb-guest .qb-quickadd:active,
body.qb-guest .qb-reco__add:active,
body.qb-guest .qb-cartreco__item > .qb-btn:active {
  background: var(--mint-solid-active);
  border-color: var(--mint-solid-active);
  transform: translateY(0);
}

body.qb-guest .qb-cartbar:focus-visible,
body.qb-guest .qb-heti__kosar:focus-visible,
body.qb-guest .qb-quickadd:focus-visible,
body.qb-guest .qb-reco__add:focus-visible,
body.qb-guest .qb-cartreco__item > .qb-btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--mint) 38%, transparent);
}
body.qb-guest input[type="radio"],
body.qb-guest input[type="checkbox"] {
  accent-color: var(--mint-solid);
}

/*
 * OPCIÓ-VÁLASZTÓ. A sor maga már kártya, és kiválasztva mentazöldre vált
 * (lásd `.qb-option:has(input:checked)` lentebb) — a natív menta rádiót
 * meghagyjuk kereknek. Itt már csak a kiválasztott tétel SZÖVEGÉT emeljük ki
 * halkan, hogy egy pillantásra látszódjon, mi van bepipálva.
 */
body.qb-guest .qb-option:has(input:checked) .qb-option__name {
  color: var(--ink);
  font-weight: 700;
}

body.qb-guest .qb-option:has(input:checked) .qb-option__price {
  color: var(--mint-solid);
  font-weight: 700;
}

body.qb-guest .qb-rating__choice:hover,
body.qb-guest .qb-rating__choice:focus-visible,
body.qb-guest .qb-rating__choice.is-best {
  border-color: var(--mint);
  color: var(--mint-solid);
}

body.qb-guest .qb-rating__choice.is-best {
  background: var(--mint-soft);
}
body.qb-guest .qb-header__row {  justify-content: flex-start;}

body.qb-guest .qb-header--cover { padding-top: 0; overflow: hidden; }
/* A később betöltött prémium réteg kompakt fejléc-paddingját is felülírja. */
body.qb-guest.qb-guest-premium .qb-header--cover { padding-top: 0; overflow: hidden; }
body.qb-guest .qb-header__cover { position: relative; width: calc(100% + 28px); height: clamp(150px, 26vw, 260px); margin: 0 -14px 48px; }
body.qb-guest .qb-header__cover-image { display: block; width: 100%; height: 100%; object-fit: cover; }
body.qb-guest .qb-header__cover:after { position: absolute; inset: 45% 0 0; content: ""; background: linear-gradient(transparent, rgba(0,0,0,.2)); pointer-events: none; }
body.qb-guest .qb-header__cover-logo { position: absolute; z-index: 1; bottom: -38px; left: 50%; display: grid; width: 88px; height: 88px; place-items: center; overflow: hidden; transform: translateX(-50%); border: 5px solid var(--surface); border-radius: 50%; background: var(--surface); box-shadow: 0 10px 28px rgba(27,25,21,.24); }
body.qb-guest .qb-header__cover-logo img { width: 100%; height: 100%; object-fit: contain; }
body.qb-guest .qb-header__logo.is-cover-hidden { display: none; }
body.qb-guest .qb-header--cover .qb-header__row { justify-content: center; text-align: center; }
body.qb-guest .qb-header--cover .qb-header__namebar { justify-content: center; }
body.qb-guest .qb-header--cover .qb-header__content { flex: 0 1 760px; }
body.qb-guest .qb-header--cover .qb-sub { justify-content: center; }
body.qb-guest.qb-guest-premium .qb-header--cover .qb-title { font-size: clamp(1.28rem, 4vw, 1.7rem); }

body.qb-guest .qb-header__logo {
  display: grid;
  place-items: center;
  flex: 0 0 52px;overflow: hidden;}

body.qb-guest .qb-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.qb-guest .qb-header__content {
  flex: 1 1 auto;
  min-width: 0;
}

body.qb-guest .qb-header__namebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

body.qb-guest .qb-header .qb-title {
  min-width: 0;line-height: 1.05;
}

body.qb-guest .qb-header .qb-sub {
  margin: 3px 0 0;}

body.qb-guest .qb-header .qb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;border-radius: var(--radius);}

body.qb-guest .qb-header .qb-badge svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.qb-guest .qb-header__orders {font-weight: 600;
  text-decoration: none;
}

body.qb-guest .qb-langs {
  display: inline-flex;
  flex: 0 0 auto;  margin: 0;border-radius: var(--radius);
}

body.qb-guest .qb-lang {
  display: grid;
  place-items: center;
  width: 30px;
  height: 24px;  border: 0;  text-decoration: none;
}

body.qb-guest .qb-lang span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.qb-guest .qb-lang.is-active {  box-shadow: 0 1px 2px rgba(27, 25, 21, 0.16);
}

body.qb-guest .qb-lang .qb-flag {
  width: 20px;
  height: 14px;
  border-radius: var(--radius);
}

/* ── Kategóriák és díjak ─────────────────────────────────────────────── */

body.qb-guest .qb-catgrid {
  grid-template-columns: repeat(2, minmax(0, 1fr));}

body.qb-guest .qb-catcard {
  /* A kategória saját régi barna SVG-színe ne írja felül a zöld rendszert. */
  --cat: var(--mint-solid);border-radius: var(--radius);
}

body.qb-guest .qb-catcard--foto {  padding: 0;
}

body.qb-guest .qb-catcard__foto {
  width: 100%;
  height: 100%;}

body.qb-guest .qb-catcard__media {
  position: relative;
  display: block;
  flex: 0 0 108px;
  height: 108px;
  overflow: hidden;
}

body.qb-guest .qb-catcard__media .qb-catcard__icon {
  top: auto;
  right: 9px;
  bottom: 8px;
  left: auto;
  width: 34px;
  height: 34px;
  padding: 7px;
  background: color-mix(in srgb, var(--surface) 84%, transparent);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  color: var(--mint-solid);
  backdrop-filter: blur(7px);
  box-shadow: 0 4px 10px rgba(27, 25, 21, 0.14);
}
body.qb-guest .qb-catcard__cornericon {
  position: absolute;z-index: 2;border-radius: var(--radius);}

body.qb-guest .qb-catcard__icon,
body.qb-guest .qb-catcard__cornericon,
body.qb-guest .qb-catcard__ghost {
  color: var(--mint-solid);
}
.qb-menuoffer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.qb-menuoffer__head h3 { margin: 2px 0 0; font-size: 1.12rem; }
.qb-menuoffer__eyebrow { margin: 0; color: var(--mint-solid); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.qb-menuoffer__head > strong { padding: 7px 10px; background: var(--mint-solid); border-radius: var(--radius); color: #fff; }
.qb-menuoffer__lead { margin: 8px 0 14px; color: var(--ash); font-size: .85rem; }
.qb-menuoffer__step { margin: 0 0 12px; padding: 0; border: 0; }
.qb-menuoffer__step legend { display: flex; align-items: center; gap: 7px;}
.qb-menuoffer__step legend span { display: grid; place-items: center; width: 23px; height: 23px; background: var(--mint-solid); border-radius: var(--radius); color: #fff; font-size: .75rem; }.qb-menuoffer__choice { display: grid;align-items: center; gap: 8px; min-width: 0;cursor: pointer; }.qb-menuoffer__choice img { grid-row: 1;object-fit: cover;}
.qb-menuoffer__choice input { grid-row: 1; accent-color: var(--mint-solid); }.qb-menuoffer__choice > span { display: flex; min-width: 0; flex-direction: column; }
.qb-menuoffer__choice strong { overflow: hidden;text-overflow: ellipsis; white-space: nowrap; }.qb-menuoffer__saving { margin: 4px 0 0; padding: 10px 12px; background: var(--mint-solid); border-radius: var(--radius); color: #fff; font-weight: 800; text-align: center; }
.qb-menuoffer__skip { display: block; margin: 12px auto 0; padding: 5px 8px; background: transparent; border: 0; color: var(--ash); font: inherit; font-size: .78rem; text-decoration: underline; cursor: pointer; }
.qb-menuchip { display: inline-flex; width: fit-content; margin: 0 0 4px; padding: 3px 7px; background: var(--mint-soft); border-radius: var(--radius); color: var(--mint-solid); font-size: .68rem; font-weight: 800; }
.qb-cartline__oldprice { display: block; margin-bottom: 2px; color: var(--ash); font-size: .7rem; font-weight: 400; }
.qb-tape__sub--discount { color: var(--mint-solid); font-weight: 800; }

body.qb-guest .qb-catcard__name {
  font-family: var(--font-display);}

body.qb-guest .qb-fees {
  margin: 12px 0 30px;
  padding: 0 var(--main-pad-x, 20px);
}

body.qb-guest .qb-fees .qb-kozlsav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}


body.qb-guest .qb-fees .qb-kozl {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, var(--mint-soft), transparent 42%),
    linear-gradient(155deg, var(--surface), color-mix(in srgb, #fff 94%, var(--mint-soft)));
  border: 1px solid color-mix(in srgb, var(--mint) 28%, var(--hairline));
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88),
              0 12px 28px color-mix(in srgb, var(--mint-solid) 12%, transparent);
}

body.qb-guest .qb-fees .qb-kozl::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--mint-solid);
}

body.qb-guest .qb-fees .qb-kozl__title {
  color: var(--ash);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

body.qb-guest .qb-fees .qb-kozl__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

body.qb-guest .qb-fees .qb-kozl__icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  background: var(--mint-soft);
  border: 1px solid color-mix(in srgb, var(--mint) 34%, transparent);
  border-radius: var(--radius);
  color: var(--mint-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.qb-guest .qb-fees .qb-kozl__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.qb-guest .qb-fees .qb-kozl__sum {
  display: inline-block;
  margin: 0 0 7px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

body.qb-guest .qb-fees .qb-kozl__text {
  margin: 2px 0 0;
  color: var(--ash);
  font-size: 0.72rem;
  line-height: 1.35;
}

/* ── Kiemelt termék: kosárjel a jobb alsó sarokban ───────────────────── */

body.qb-guest .qb-showcard {
  position: relative;
}
body.qb-guest .qb-reco__add,
body.qb-guest .qb-cartreco__item > .qb-btn,
body.qb-guest .qb-heti__kosar,
body.qb-guest .qb-suggest__add {
  margin-left: auto;
  align-self: flex-end;
}

body.qb-guest .qb-showcard__cart-icon {
  width: 18px;
  height: 18px;
}
body.qb-guest .qb-sheet__intro {
  padding-top: 16px;
}

body.qb-guest .qb-sheet__eyebrow {
  color: var(--brand-dark);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

body.qb-guest .qb-sheet__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

body.qb-guest .qb-sheet__titlerow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

body.qb-guest .qb-sheet__titlerow .qb-sheet__price {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  white-space: nowrap;
}
body.qb-guest .qb-spec__value {  font-variant-numeric: tabular-nums;
}

body.qb-guest .qb-sheet__allergen {
  display: flex;  flex-wrap: wrap;color: var(--ash);
  font-size: 0.72rem;
}

body.qb-guest .qb-sheet__allergen-cap {  font-family: var(--font-mono);  font-weight: 700;  text-transform: uppercase;
}

body.qb-guest .qb-sheet__allergen-list {
  display: contents;
}

body.qb-guest .qb-sheet__allergen-chip {
  display: inline-flex;
  align-items: center;}

body.qb-guest .qb-sheet__allergen-num {
  display: inline-grid;
  place-items: center;margin-left: -3px;font-family: var(--font-mono);  font-weight: 700;
}
body.qb-guest .qb-option {
  margin-bottom: 8px;transition: border-color 0.14s, background 0.14s;
}
/* ── Kosárösszesítő: világos prémium kártya, fekete tömb nélkül ─────── */

body.qb-guest .qb-carthead__summary {box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9),
              0 7px 18px color-mix(in srgb, var(--mint-solid) 12%, transparent);
}

body.qb-guest .qb-carthead__summary strong {
  color: var(--mint-solid);
}

body.qb-guest .qb-sheet .qb-tape .qb-tapesum {color: var(--ink);}
body.qb-guest .qb-sheet .qb-tape .qb-tape__totallabel,
body.qb-guest .qb-sheet .qb-tape .qb-tape__totalvalue {
  color: var(--ink);
}

body.qb-guest .qb-sheet .qb-tape .qb-tape__totalvalue {
  color: var(--mint-solid);
  text-shadow: 0 1px 0 #fff;
}

/* ── Rendeléskövetés: közös szélesség és egységes kártyanyelv ───────── */

body.qb-guest .qb-statusmain > .qb-done,
body.qb-guest .qb-statusmain > .qb-buzzer,
body.qb-guest .qb-statusmain > .qb-orders,
body.qb-guest .qb-statusmain > .qb-suggest,
body.qb-guest .qb-statusmain > .qb-loyal,
body.qb-guest .qb-statusmain > .qb-farewell {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  box-sizing: border-box;
}

body.qb-guest .qb-statusmain > .qb-done,
body.qb-guest .qb-statusmain > .qb-buzzer,
body.qb-guest .qb-order {
  background:
    radial-gradient(circle at 100% 0, var(--mint-soft), transparent 43%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid color-mix(in srgb, var(--mint) 27%, var(--hairline));
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92),
              0 10px 27px color-mix(in srgb, var(--mint-solid) 10%, transparent);
}

body.qb-guest .qb-statusmain > .qb-done {
  margin-bottom: 12px;
  padding: 24px 18px 18px;
}

body.qb-guest .qb-done__mark {border-radius: var(--radius);}

body.qb-guest .qb-done__mark::after {
  border-radius: var(--radius);
}

body.qb-guest .qb-done__x {
  background: rgba(255, 255, 255, 0.86);
  border-color: color-mix(in srgb, var(--mint) 20%, var(--hairline));
  border-radius: var(--radius);
}

body.qb-guest .qb-done__code {border-radius: var(--radius);
}

body.qb-guest .qb-statusmain > .qb-buzzer {
  gap: 14px;
  margin-bottom: 12px;
  padding: 15px 16px;
  border-left-width: 1px;
}

body.qb-guest .qb-buzzer__copy strong {
  color: var(--ink);
  line-height: 1.35;
}

body.qb-guest .qb-buzzer__gombok {
  flex: 0 0 145px;
  justify-content: flex-end;
}

body.qb-guest .qb-buzzer__gombok .qb-btn {
  width: 100%;
  border-radius: var(--radius);
}

body.qb-guest .qb-buzzer__tobb {
  width: 100%;
  text-align: center;}

body.qb-guest .qb-orders > li + li {
  margin-top: 10px;
}
body.qb-guest .qb-order__head {
  padding-bottom: 10px;
  border-bottom: 1px solid color-mix(in srgb, var(--mint) 18%, var(--hairline));
}

body.qb-guest .qb-order__code {
  color: var(--mint-solid);
}

body.qb-guest .qb-order__total {
  color: var(--ink);
  font-weight: 750;
}

body.qb-guest .qb-order .qb-live {
  margin-top: 12px;
  padding: 15px 13px 13px;border-radius: var(--radius);
  box-shadow: inset 0 1px 0 #fff;
}

body.qb-guest .qb-order .qb-live__now {
  margin-top: 14px;
  background: var(--mint-soft);
  border-left-color: var(--mint-solid);
  border-radius: var(--radius);
}
body.qb-guest .qb-order > .qb-tape__lines {
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--mint) 14%, var(--hairline));
}

/* A felszolgálás tételenként történik: az ital már lehet az asztalon,
   miközben az étel még készül. A pipa az állapot oldalán, balról érkezik;
   nincs mögötte gomb- vagy jelvényháttér. */
body.qb-guest .qb-tape__delivered {
  display: inline-grid;
  place-items: center;
  flex: 0 0 17px;
  width: 17px;
  height: 20px;
  margin-right: 3px;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
}

body.qb-guest .qb-tape__delivered.is-served {  filter: drop-shadow(0 2px 3px color-mix(in srgb, var(--mint-solid) 20%, transparent));
}

body.qb-guest .qb-tape__delivered.is-new {
  animation: qb-item-served 620ms cubic-bezier(.18, .86, .28, 1.2) both;
}

@keyframes qb-item-served {
  0% { opacity: 0; transform: translateX(-9px) scale(.55) rotate(-12deg); }
  58% { opacity: 1; transform: translateX(1px) scale(1.2) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@media (max-width: 460px) {
  body.qb-guest .qb-statusmain > .qb-buzzer {
    gap: 12px;
  }

  body.qb-guest .qb-buzzer__gombok {
    flex-basis: auto;
    width: 100%;
  }
}

/* ── Allergénszűrő: rendezett, kompakt választópanel ─────────────────── */

body.qb-guest .qb-allergens {border-radius: var(--radius);}

body.qb-guest .qb-allergens__title {
  display: flex;
  align-items: center;
  gap: 8px;  color: var(--mint-solid);
  font-size: 0.72rem;
  letter-spacing: 0.095em;
}

body.qb-guest .qb-allergens__title::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--mint-solid);
  border-radius: var(--radius);
  box-shadow: 0 0 0 5px var(--mint-soft);
}

body.qb-guest .qb-allergens .qb-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));  margin-top: 0;
}

body.qb-guest .qb-allergens .qb-chip {
  display: flex;
  align-items: center;
  justify-content: flex-start;  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.88);
  border-color: color-mix(in srgb, var(--mint) 18%, var(--hairline));
  border-radius: var(--radius);
  color: color-mix(in srgb, var(--ink) 88%, var(--mint-solid));  line-height: 1.25;
  text-align: left;
  box-shadow: inset 0 1px 0 #fff;
}

body.qb-guest .qb-allergens .qb-chip:hover {
  border-color: var(--mint);
  background: color-mix(in srgb, #fff 88%, var(--mint-soft));
  transform: translateY(-1px);
}

body.qb-guest .qb-allergens .qb-chip.is-active {
  background: linear-gradient(145deg, var(--mint-solid), var(--mint-solid-active));
  border-color: var(--mint-solid);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22),
              0 5px 13px color-mix(in srgb, var(--mint-solid) 20%, transparent);
}

body.qb-guest .qb-allergens .qb-chip.is-clear {
  grid-column: 1 / -1;
  justify-content: center;
  background: transparent;
  border-style: dashed;
  color: var(--mint-solid);
}

body.qb-guest .qb-allergens__note {
  margin-top: 10px;
  padding: 9px 10px;
  background: var(--mint-soft);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.78rem;
}

body.qb-guest .qb-catnav {box-shadow: 0 5px 18px rgba(27, 25, 21, 0.07);}

body.qb-guest .qb-catnav__btn,
body.qb-guest .qb-catnav__back {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid color-mix(in srgb, var(--mint) 16%, var(--hairline));  color: var(--ash);
  box-shadow: inset 0 1px 0 #fff;
}

/* ── Kosár: egyetlen zöld-fehér komponensrendszer ───────────────────── */

body.qb-guest .qb-sheet--cart .qb-tape__body {
  padding: 16px 17px 116px;
  background:
    radial-gradient(circle at 100% 0, var(--mint-soft), transparent 32%),
    #f7f7f2;
}

body.qb-guest .qb-sheet--cart .qb-carthead {
  margin: -16px -17px 14px;
  padding: 16px 17px;
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: color-mix(in srgb, var(--mint) 22%, var(--hairline));
  box-shadow: 0 7px 22px rgba(27, 25, 21, 0.055);
  backdrop-filter: blur(14px);
}

body.qb-guest .qb-carthead__close {
  width: 40px;
  height: 40px;
  background: var(--mint-soft);
  border-color: color-mix(in srgb, var(--mint) 32%, var(--hairline));
  border-radius: var(--radius);
  color: var(--mint-solid);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body.qb-guest .qb-carthead__summary {
  min-width: 92px;
  padding: 9px 12px;
  border-radius: var(--radius);
}

body.qb-guest .qb-tape__lines {
  gap: 9px;
  padding: 0;
}

body.qb-guest .qb-sheet .qb-tape .qb-cartline {
  gap: 12px;
  padding: 12px;border-radius: var(--radius);}

body.qb-guest .qb-sheet .qb-tape .qb-cartline__img {
  width: 72px;
  height: 72px;
  border: 1px solid color-mix(in srgb, var(--mint) 14%, var(--hairline));
  border-radius: var(--radius);
}

body.qb-guest .qb-cartline__name {
  font-size: 0.94rem;
  line-height: 1.25;
}

body.qb-guest .qb-cartline__steps .qb-stepper {
  overflow: hidden;
  background: color-mix(in srgb, #fff 90%, var(--mint-soft));
  border-color: color-mix(in srgb, var(--mint) 27%, var(--hairline));
  border-radius: var(--radius);
}

body.qb-guest .qb-cartline__steps .qb-stepper button {
  color: var(--mint-solid);
  transition: background 0.12s ease;
}

body.qb-guest .qb-cartline__steps .qb-stepper button:hover {
  background: var(--mint-soft);
}

body.qb-guest .qb-tape .qb-cartline__amount {  font-size: 0.95rem;}

body.qb-guest .qb-tape__trash {
  width: 32px;
  height: 32px;
  background: #f8f5f1;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}

body.qb-guest .qb-sheet .qb-tape .qb-tapesum {
  margin-top: 12px;
  padding: 15px 16px;
  border-radius: var(--radius);
}

body.qb-guest .qb-sheet--cart .qb-field {
  margin-top: 12px;
}

body.qb-guest .qb-sheet--cart textarea {
  background: rgba(255, 255, 255, 0.88);
  border-color: color-mix(in srgb, var(--mint) 18%, var(--hairline));
  border-radius: var(--radius);
}

@media (max-width: 370px) {
  body.qb-guest .qb-allergens .qb-chips {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 900px) {
  body.qb-guest .qb-allergens {
    width: min(calc(100% - 48px), 1040px);
  }

  body.qb-guest .qb-allergens .qb-chips {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.qb-guest .qb-catnav__inner {
    width: min(calc(100% - 48px), 1040px);
    margin-inline: auto;
  }
}

body.qb-guest .qb-sheet__foot {
  gap: 10px;}

body.qb-guest .qb-stepper {
  border-radius: var(--radius);
}
@media (max-width: 420px) {
  body.qb-guest .qb-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 14px;
  }

  body.qb-guest .qb-header__logo {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  body.qb-guest .qb-header__cover { width: calc(100% + 28px); height: 150px; margin-bottom: 42px; }
  body.qb-guest .qb-header--cover { padding-top: 0; }
  body.qb-guest .qb-header--cover .qb-header__namebar { align-items: center; flex-direction: column; }

  body.qb-guest .qb-header .qb-title {
    font-size: 1.18rem;
  }

  body.qb-guest .qb-fees .qb-kozl {
    padding: 12px;
  }
}

/* PC-n kihasználjuk a helyet, miközben a mobil kártyaritmus megmarad. */
@media (min-width: 900px) {
  body.qb-guest > main {
    width: min(calc(100% - 48px), 1040px);
  }

  body.qb-guest .qb-header {
    width: min(calc(100% - 48px), 1040px);  }

  body.qb-guest .qb-showcase__list {
    max-width: none;
  }
  body.qb-guest .qb-catcard__media {
    flex-basis: 170px;
    height: 170px;
  }
  body.qb-guest .qb-fees .qb-kozl {
    min-height: 150px;
    padding: 18px;
  }
}
