/* =========================================================================
   smartpage.sk - verejne digitalne menu
   Jeden zdielany "papierovy harok" (.sheet) pre online aj tlac.
   Online aj tlac vykreslia identicky harok; lisi sa len obal:
     - online: .menu-online .backdrop (neutralne pozadie strany + tien)
     - tlac:   .menu-print + @page (velkost listu) + .print-toolbar
   Vzhlad harku riadia CSS premenne nastavene inline v _menu_body.html
   z rozlisenej temy `r`, plus 7 strukturnych stylov .tpl-*.
   ========================================================================= */

/* ---------- Reset / zaklad ------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body-font, system-ui, sans-serif);
  line-height: 1.5;
  color: #1a1a1a;
  background: #ecebe9;
}

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

/* ---------- Online obal: backdrop + harok -------------------------------- */
.menu-online .backdrop {
  padding: 24px;
  background: #ecebe9;          /* neutralne pozadie strany */
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.menu-online .sheet {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14), 0 2px 8px rgba(0, 0, 0, .08);
  border-radius: 6px;
}

/* Embed (iframe): bez tienu, bez okrajov, harok na plnu sirku */
.menu-online.is-embed .backdrop { padding: 0; background: transparent; min-height: 0; }
.menu-online.is-embed .sheet { box-shadow: none; max-width: none; border-radius: 0; }

/* Brandova paticka (mimo harku) */
.brandbar {
  text-align: center;
  padding: 16px;
  font: 400 13px/1.4 system-ui, sans-serif;
  color: #8a8a8a;
  background: #ecebe9;
}
.brandbar a { color: #6a6a6a; text-decoration: underline; }

/* =========================================================================
   HAROK (.sheet) - zdielany online + tlac
   ========================================================================= */
.sheet {
  --paper: #ffffff;
  --ink: #1a1a1a;
  --primary: #b8002e;
  --muted: #8a8a8a;
  --line: #e6e6e6;
  --head-font: Georgia, serif;
  --body-font: system-ui, sans-serif;
  --bg: var(--paper);

  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  padding: 44px 40px;
  /* farba pozadia harku sa MUSI vytlacit */
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* ---------- Hlavicka harku ----------------------------------------------- */
.sheet-head {
  text-align: center;
  margin-bottom: 32px;
}
.sheet-logo {
  max-height: 96px;
  width: auto;
  margin: 0 auto 8px;
}
.sheet-title {
  font-family: var(--head-font);
  color: var(--primary);
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}
.sheet-tagline {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
}
.sheet-info {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 0;
  font-size: 13px;
  color: var(--muted);
}
.sheet-info .chip {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0 13px;
  color: var(--muted);
  position: relative;
}
.sheet-info .chip:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 3px;
  height: 3px;
  margin-top: -1.5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 30%, transparent);
}
.sheet-info .chip a { text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--line); }
.sheet-info .chip-ico { color: var(--muted); }
.sheet-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}
.sheet-social .soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: .14s;
}
.sheet-social .soc:hover { color: var(--primary); border-color: var(--primary); }
@media print { .sheet-social .soc { border-color: var(--line) !important; color: var(--ink) !important; } }

/* ---------- Kategorie ----------------------------------------------------- */
.cat { margin: 0 0 30px; }
.cat:last-child { margin-bottom: 0; }

/* Dekorativny ornamentalny oddelovac medzi sekciami */
.cat-divider { text-align: center; margin: 6px 0 24px; color: var(--primary); line-height: 0; }
.cat-divider svg { width: 150px; height: 15px; opacity: .5; }
.cat-divider line { stroke: currentColor; stroke-width: 1; }
.cat-divider path { fill: currentColor; }
/* V strankovanom rezime (taby) online oddelovace nedavaju zmysel - skry; v tlaci ostavaju */
.menu-paged .cat-divider { display: none; }
@media print { .menu-paged .cat-divider { display: block; } }

.cat-head { margin-bottom: 14px; }
.cat-name {
  font-family: var(--head-font);
  color: var(--primary);
  font-size: 22px;
  line-height: 1.2;
  margin: 0;
  font-weight: 700;
}
.cat-note {
  margin: 4px 0 0;
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
}

.items { display: flex; flex-direction: column; gap: 14px; }

/* ---------- Polozka (list) ------------------------------------------------ */
.item-main { min-width: 0; }

.item-line {
  display: flex;
  align-items: baseline;
  gap: 0;
}
.item-name { font-weight: 600; font-size: 16px; }
.item-name .alg {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-left: 2px;
}
.item-portion {
  flex: 0 0 auto;
  margin-left: .6em;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.item-leader {
  flex: 1 1 auto;
  align-self: flex-end;
  border-bottom: 1px dotted var(--line);
  margin: 0 .5em;
  transform: translateY(-.28em);
  min-width: 1.5em;
}
.item-price {
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.item-price.item-from { color: var(--muted); font-weight: 600; }
.item-desc {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.item-variants {
  margin: 5px 0 0;
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}
.item-variants .vlabel { color: var(--muted); }
.item-variants .vprice { font-weight: 600; }
.item-variants .vsep { color: var(--line); }
.item-addons {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.item-addons .addons-lab { font-weight: 600; color: var(--ink); margin-right: 4px; }
.item-addons .addon-price { font-weight: 600; color: var(--ink); }
/* WiFi QR (pripojenie naskenovanim) */
.sheet-wifi {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-top: 16px;
}
.sheet-wifi .wifi-qr {
  width: 92px;
  height: 92px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 5px;
  background: #fff;
}
.sheet-wifi .wifi-meta { display: flex; flex-direction: column; text-align: left; }
.sheet-wifi .wifi-lab {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 600;
}
.sheet-wifi .wifi-ssid { font-size: 16px; font-weight: 600; color: var(--ink); }

/* Dietne oznacenia - decentne, menu-nativne (ZIADNE pilulky) */
.item-tags {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 1px 14px;
}
.tag {
  font-size: 10.5px;
  line-height: 1.3;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  white-space: nowrap;
}
.tag-vegan, .tag-vege, .tag-bio { color: #5f7d56; }
.tag-spicy { color: #a35a47; }
.tag-new { color: var(--primary); }
.tag-chef { color: var(--primary); font-weight: 700; }
.tag-season { color: #b07b3c; }

/* Nedostupne */
.item.unavail { opacity: .55; }
.badge-off {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 5px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ---------- Legenda alergenov -------------------------------------------- */
.allergen-section { margin-top: 8px; }
.allergen-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 28px;
  font-size: 11.5px;
  color: var(--muted);
}
.allergen-legend li { break-inside: avoid; padding: 1px 0; }
.allergen-legend b { color: var(--ink); font-weight: 700; margin-right: 4px; }

/* =========================================================================
   LAYOUT: cards
   ========================================================================= */
.sheet[data-layout="cards"] .items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sheet[data-layout="cards"] .item {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 2%, transparent);
  display: flex;
  flex-direction: column;
}
.sheet[data-layout="cards"] .item-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.sheet[data-layout="cards"] .item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sheet[data-layout="cards"] .item-main { padding: 12px 14px 14px; flex: 1; }

/* Maly nahlad fotky v zoznamovom rozlozeni (list) */
.item.has-thumb { display: flex; gap: 13px; align-items: flex-start; }
.item.has-thumb .item-main { flex: 1; min-width: 0; }
.item-thumb {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  overflow: hidden;
  background: color-mix(in srgb, var(--ink) 6%, transparent);
}
.item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet[data-layout="cards"] .item-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.sheet[data-layout="cards"] .item-leader { display: none; }

/* =========================================================================
   7 STRUKTURNYCH STYLOV (.tpl-*)
   Menia hlavne vzhlad .cat-name (nadpis sekcie) + oddelovace + vahu/spacing.
   ========================================================================= */

/* --- classic: tradicny serif nadpis vlavo s tenkou linkou pod nim -------- */
.tpl-classic .cat-name {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.tpl-classic .sheet-head { padding-bottom: 18px; border-bottom: 2px solid var(--primary); }

/* --- elegant: maly verzalkovy nadpis, velky letter-spacing, vlasove linky  */
.tpl-elegant .sheet { padding: 56px 52px; }
.tpl-elegant .cat-name {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .32em;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-bottom: 12px;
}
.tpl-elegant .cat-name::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 44px;
  height: 1px;
  background: var(--primary);
  transform: translateX(-50%);
}
.tpl-elegant .cat-head { text-align: center; }
.tpl-elegant .cat { margin-bottom: 38px; }
.tpl-elegant .item-leader { border-bottom-style: solid; border-color: var(--line); opacity: .6; }

/* --- minimal: minimum liniek, male tracked verzalky, vzdusne ------------- */
.tpl-minimal .sheet { padding: 48px 44px; }
.tpl-minimal .cat-name {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 600;
  color: var(--muted);
}
.tpl-minimal .item-leader { display: none; }
.tpl-minimal .item-line { justify-content: space-between; gap: 12px; }
.tpl-minimal[data-layout="list"] .item-name { flex: 1; }
.tpl-minimal .cat { margin-bottom: 34px; }
.tpl-minimal .sheet-info .chip { border: none; background: transparent; padding: 4px 0; }

/* --- modern: cisty sans, tucnejsie nadpisy vo farbe primary, zaoblene ---- */
.tpl-modern .cat-name {
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -.01em;
}
.tpl-modern .item-name { font-weight: 600; }
.tpl-modern .sheet-info .chip { border-radius: 8px; }
.tpl-modern .tag { border-radius: 6px; }

/* --- rustic: kondenzovane tucne VERZALky, hrubsie linky, remeselne ------- */
.tpl-rustic .cat-name {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 700;
  font-size: 23px;
  padding-bottom: 7px;
  border-bottom: 2px solid var(--primary);
}
.tpl-rustic .sheet-title { text-transform: uppercase; letter-spacing: .02em; }
.tpl-rustic .item-leader { border-bottom-style: dashed; }

/* --- bold: velke vyrazne kondenzovane nadpisy, vysoky kontrast ----------- */
.tpl-bold .cat-name {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: .01em;
  line-height: 1;
}
.tpl-bold .cat-head {
  display: inline-block;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.tpl-bold .item-name { font-weight: 700; }
.tpl-bold .sheet-title { font-size: clamp(34px, 8vw, 52px); }

/* --- playful: zaoblene, priatelske, nadpis ako pilulka s pozadim primary -- */
.tpl-playful .cat-name {
  display: inline-block;
  background: var(--primary);
  color: var(--paper);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 18px;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.tpl-playful .item-name { font-weight: 600; }
.tpl-playful .tag { border-radius: 999px; font-weight: 600; }
.tpl-playful[data-layout="cards"] .item { border-radius: 16px; }
.tpl-playful .sheet-info .chip { border-radius: 999px; }

/* =========================================================================
   Responsive (online)
   ========================================================================= */
@media (max-width: 600px) {
  .menu-online .backdrop { padding: 0; background: var(--paper, #fff); }
  .menu-online .sheet { box-shadow: none; border-radius: 0; }
  .sheet { padding: 28px 20px; }
  .tpl-elegant .sheet,
  .tpl-minimal .sheet { padding: 32px 22px; }
  .sheet[data-layout="cards"] .items { grid-template-columns: 1fr; }
}

/* =========================================================================
   Tlacovy obal (.menu-print) + toolbar
   ========================================================================= */
.menu-print { background: #ecebe9; }

.print-toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  font: 400 14px/1.4 system-ui, sans-serif;
}
.pbtn {
  font: 600 14px/1 system-ui, sans-serif;
  color: #fff;
  background: #1a1a1a;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}
.pbtn:hover { background: #333; }
.print-formats a {
  color: #555;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
}
.print-formats a:hover { background: #f0f0f0; }
.print-formats a.is-active {
  color: #1a1a1a;
  font-weight: 600;
  background: #ececec;
}

/* Na obrazovke ukaz tlacovy harok ako papier vycentrovany */
.menu-print .sheet {
  max-width: 800px;
  margin: 24px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
}
.menu-print.fmt-a5 .sheet,
.menu-print.fmt-tent .sheet { max-width: 480px; }

/* =========================================================================
   ONLINE-ONLY: rychla navigacia (jump-nav)
   Sticky horizontalna lista "chips" nad harkom. Len online, nie embed/tlac.
   ========================================================================= */
.jump-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: 720px;
  margin: 0 auto 12px;
  background: color-mix(in srgb, #ecebe9 90%, #fff);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e6e1d8;
}
.jump-nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 6px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
}
.jump-nav-list::-webkit-scrollbar { height: 5px; }
.jump-nav-list::-webkit-scrollbar-thumb { background: #cfcdc9; border-radius: 999px; }

/* Prepinac jazyka (online) */
.lang-switch { display: flex; justify-content: center; gap: 6px; padding: 12px 12px 2px; flex-wrap: wrap; }
.lang-opt { font: 600 12px/1 system-ui, sans-serif; letter-spacing: .07em; text-transform: uppercase;
  color: #a39d92; background: none; border: none; border-radius: 0; padding: 6px 8px; text-decoration: none; }
.lang-opt:hover { color: #15131a; }
.lang-opt.active { color: #15131a; text-decoration: underline; text-underline-offset: 4px; }
@media print { .lang-switch { display: none; } }
.jump-link {
  display: inline-block;
  white-space: nowrap;
  scroll-snap-align: center;
  font: 600 13px/1 system-ui, sans-serif;
  letter-spacing: .02em;
  color: #948e84;
  text-decoration: none;
  padding: 9px 10px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  transition: color .15s, border-color .15s;
}
.jump-link:hover { color: #2a2620; }
.jump-link.active {
  color: #2a2620;
  border-bottom-color: #2a2620;
}

/* =========================================================================
   ONLINE-ONLY: plavajuce akcie (.share-fab + .to-top)
   ========================================================================= */
.share-fab,
.to-top {
  position: fixed;
  z-index: 30;
  border: none;
  cursor: pointer;
  font-family: system-ui, sans-serif;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .22), 0 2px 6px rgba(0, 0, 0, .12);
  transition: transform .15s, box-shadow .15s, opacity .2s;
}
.share-fab:active,
.to-top:active { transform: scale(.96); }

.share-fab {
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font: 600 14px/1 system-ui, sans-serif;
}
.share-fab:hover { background: #333; }
.share-fab .fab-ico { font-size: 17px; line-height: 1; }

.to-top {
  right: 18px;
  bottom: 76px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: #1a1a1a;
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
}
.to-top.is-shown { opacity: 1; pointer-events: auto; }
.to-top:hover { background: #f4f4f2; }

@media (max-width: 600px) {
  .jump-nav { border-radius: 0; margin-bottom: 10px; }
  .share-fab .fab-label { display: none; }
  .share-fab { padding: 0; width: 48px; justify-content: center; }
  .to-top { bottom: 74px; }
}

/* Skry online-only prvky v embede aj na tlaci */
.menu-online.is-embed .jump-nav,
.menu-online.is-embed .share-fab,
.menu-online.is-embed .to-top { display: none !important; }

/* =========================================================================
   STRANKOVANY REZIM (menu-paged): sekcie ako zalozky, host prepina jednu.
   Jump-nav uz vyzera ako tabova lista (.jump-link.active ma podciarknutie).
   ========================================================================= */
.cat-hidden { display: none; }
/* Pri aktivnom hladani/filtri musi filter prehladat cele menu -> odkry vsetko */
.menu-online.searching .cat-hidden { display: block; }

/* =========================================================================
   QR PLAGAT / STOLOVY STOJAN (poster.html)
   ========================================================================= */
.poster-page {
  margin: 0;
  background: #ecebe9;
  font-family: var(--body-font, system-ui, sans-serif);
}

.poster-toolbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  font: 400 14px/1.4 system-ui, sans-serif;
}
.poster-formats a {
  color: #555;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
}
.poster-formats a:hover { background: #f0f0f0; }
.poster-formats a.is-active { color: #1a1a1a; font-weight: 600; background: #ececec; }

.poster {
  background: var(--paper, #fff);
  color: var(--ink, #1a1a1a);
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

/* Na obrazovke ukaz plagat ako papier vycentrovany */
.poster-a4 {
  width: 210mm;
  min-height: 297mm;
  max-width: 100%;
  margin: 24px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
}
.poster-tent {
  width: 100mm;
  min-height: 210mm;
  margin: 24px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
}

.poster-inner {
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 18mm 14mm;
}
.poster-a4 .poster-inner { padding: 26mm 22mm; }

.poster-brand { margin-bottom: 6mm; }
.poster-logo {
  max-height: 26mm;
  width: auto;
  margin: 0 auto;
}
.poster-a4 .poster-logo { max-height: 34mm; }
.poster-name {
  font-family: var(--head-font, Georgia, serif);
  color: var(--primary, #b8002e);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
}
.poster-a4 .poster-name { font-size: 40px; }

.poster-headline {
  font-family: var(--head-font, Georgia, serif);
  color: var(--primary, #b8002e);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 8mm;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
.poster-a4 .poster-headline { font-size: 52px; margin-bottom: 12mm; }

.poster-qr {
  background: #fff;
  border: 1px solid var(--line, #e6e6e6);
  border-radius: 12px;
  padding: 5mm;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}
.poster-qr img {
  display: block;
  width: 60mm;
  height: auto;
  image-rendering: pixelated;
}
.poster-a4 .poster-qr img { width: 95mm; }

.poster-hint {
  margin: 7mm 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink, #1a1a1a);
}
.poster-a4 .poster-hint { font-size: 19px; }

.poster-contact {
  margin-top: 5mm;
  display: flex;
  flex-direction: column;
  gap: 2mm;
  font-size: 12px;
  color: var(--muted, #8a8a8a);
}
.poster-a4 .poster-contact { font-size: 15px; }
.poster-web { font-weight: 600; color: var(--primary, #b8002e); }

.poster-foot {
  margin-top: auto;
  padding-top: 8mm;
  font: 400 10px/1.4 system-ui, sans-serif;
  color: var(--muted, #8a8a8a);
  opacity: .8;
}
.poster-a4 .poster-foot { font-size: 12px; }

@media print {
  .poster-toolbar { display: none !important; }
  .poster-page { background: #fff; }
  .poster-a4,
  .poster-tent {
    margin: 0;
    box-shadow: none;
    width: auto;
    min-height: 100vh;
  }
}

/* =========================================================================
   @media print - identicky harok, cisty vystup
   ========================================================================= */
@media print {
  .print-toolbar,
  .jump-nav,
  .share-fab,
  .to-top,
  .brandbar { display: none !important; }

  body { background: #fff; }
  .menu-online .backdrop,
  .menu-print {
    background: #fff;
    padding: 0;
    /* harok musí prirodzene tiecť cez viac A4 strán, nie byt zviazany na 100vh */
    min-height: 0;
    display: block;
  }

  .sheet {
    box-shadow: none !important;
    max-width: none;
    width: auto;
    /* ziadne pevne ohranicenie vysky -> obsah tecie cez viac stran */
    height: auto;
    min-height: 0;
    margin: 0;
    border-radius: 0;
    /* paper / primary farby musia vyjst aj na tlaci */
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* viacstrankova tlac: nezlamovat sekcie/polozky cez okraj strany skaredo */
  .cat { break-inside: avoid-page; }
  .item { break-inside: avoid; }
  /* nadpis sekcie nech neostane sam na konci strany */
  .cat-name { break-after: avoid; }
  .cat-head { break-after: avoid; }

  /* v tlaci ignoruj strankovanie - vytlac VSETKY sekcie */
  .menu-paged .cat-hidden { display: block !important; }
}

/* =========================================================================
   NOVE (v2): nastroje menu - vyhladavanie + dietny filter (online only)
   Lista .menu-tools je nad harkom, sticky pod jump-nav. Drzi sa estetiky
   harku (papier, jemne tiene, pilulky). CSP-safe, ovlada ju menu.js.
   ========================================================================= */
.menu-tools {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}

/* Vyhladavacie pole */
.search-box {
  position: relative;
  flex: 1 1 220px;
  min-width: 180px;
  display: flex;
  align-items: center;
}
.search-box .search-ico {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  color: #9a9893;
  pointer-events: none;
}
.search-input {
  width: 100%;
  font: 400 14px/1.2 system-ui, sans-serif;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #e2e0dc;
  border-radius: 999px;
  padding: 10px 36px 10px 36px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.search-input:focus {
  border-color: #c4c2be;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, .05);
}
.search-input::placeholder { color: #a8a6a1; }
.search-clear {
  position: absolute;
  right: 8px;
  width: 24px;
  height: 24px;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: #9a9893;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
}
.search-clear:hover { background: #f0efed; color: #5a5a5a; }
.search-box.has-value .search-clear { display: inline-flex; }

/* Dietne filter-chips */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.filter-chip {
  font: 600 12.5px/1 system-ui, sans-serif;
  letter-spacing: .02em;
  color: #948e84;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 7px 6px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.filter-chip:hover { color: #2a2620; }
.filter-chip.active {
  color: #2a2620;
  border-bottom-color: #2a2620;
}

/* Skryte polozky/sekcie pri filtrovani */
.item.is-hidden { display: none !important; }
.cat.is-hidden { display: none !important; }

/* Hlaska "ziadne vysledky" */
.tools-empty {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 16px;
  text-align: center;
  font: 400 14px/1.5 system-ui, sans-serif;
  color: #8a8a8a;
  padding: 18px;
  background: color-mix(in srgb, #ecebe9 86%, #fff);
  border-radius: 10px;
}

@media (max-width: 600px) {
  .menu-tools { margin-bottom: 10px; }
  .search-box { flex: 1 1 100%; }
}
@media print { .menu-tools, .tools-empty { display: none !important; } }
.menu-online.is-embed .menu-tools,
.menu-online.is-embed .tools-empty { display: none !important; }

/* =========================================================================
   NOVE (v2): VEREJNE DENNE MENU (daily.html)
   Velka dnesna hlavicka + jedla + prepinac dni. Pouziva tie iste --premenne
   z temy `r` (cez .sheet) -> rovnaka estetika ako stale menu.
   ========================================================================= */
.daily-online .backdrop {
  padding: 24px;
  background: #ecebe9;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}
.daily-online .sheet {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .14), 0 2px 8px rgba(0, 0, 0, .08);
  border-radius: 6px;
}
/* Embed (iframe na cudzom webe): bez okrajov a tienu, harok na plnu sirku, dni ostavaju */
.daily-online.is-embed .backdrop { padding: 0; background: transparent; min-height: 0; }
.daily-online.is-embed .sheet { box-shadow: none; max-width: none; border-radius: 0; }
.daily-online.is-embed .lang-switch { padding-top: 6px; }

/* Hlavicka dnesneho dna */
.daily-today {
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--primary);
}
.daily-venue {
  font-family: var(--head-font);
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 4px;
  opacity: .85;
}
.daily-venue.with-logo { margin-bottom: 10px; }
.daily-tagline {
  color: var(--muted);
  font-size: 13.5px;
  font-style: italic;
  margin: 0 0 10px;
}
.daily-contact {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.daily-contact .sheet-info { justify-content: center; }
.daily-logo {
  max-height: 64px;
  width: auto;
  margin: 0 auto 8px;
}
.daily-eyebrow {
  display: inline-block;
  font: 600 11px/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted);
  margin-bottom: 8px;
}
.daily-dayname {
  font-family: var(--head-font);
  color: var(--primary);
  font-size: clamp(30px, 8vw, 46px);
  line-height: 1.05;
  margin: 0;
  font-weight: 700;
}
.daily-todaytag {
  display: inline-block;
  margin-top: 8px;
  font: 600 11px/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--primary);
  background: none;
  padding: 0;
}

/* Jedla dnesneho dna - znovupouzitie .item* z harku */
.daily-items { display: flex; flex-direction: column; gap: 14px; }

.daily-empty {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  padding: 30px 10px;
}

/* Prepinac dni v tyzdni */
.daily-week {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.daily-week-label {
  font: 600 11px/1 system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin: 0 0 10px;
  text-align: center;
}
.daily-days {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}
.daily-day {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 38px;
  text-decoration: none;
  font: 600 14px/1 system-ui, sans-serif;
  color: color-mix(in srgb, var(--ink) 50%, var(--paper));
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 6px 8px;
  transition: color .15s, border-color .15s;
}
.daily-day:hover { color: var(--ink); }
.daily-day.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.daily-day.is-today::after { content: none; }
.daily-day .dow-today {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 3px;
  opacity: .85;
}

@media (max-width: 600px) {
  .daily-online .backdrop { padding: 0; background: var(--paper, #fff); }
  .daily-online .sheet { box-shadow: none; border-radius: 0; }
  .daily-day { min-width: 40px; padding: 8px 9px; }
}

/* =========================================================================
   404 verejne menu (not_found.html)
   ========================================================================= */
.notfound-page {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecebe9;
  padding: 24px;
}
.notfound {
  max-width: 440px;
  width: 100%;
  text-align: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .12), 0 2px 8px rgba(0, 0, 0, .06);
  padding: 40px 32px;
}
.notfound-title {
  font: 700 24px/1.2 Georgia, serif;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.notfound-text {
  font: 400 15px/1.55 system-ui, sans-serif;
  color: #8a8a8a;
  margin: 0 0 24px;
}
.notfound-btn {
  display: inline-block;
  font: 600 14px/1 system-ui, sans-serif;
  color: #fff;
  background: #1a1a1a;
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
}
.notfound-btn:hover { background: #333; }

/* ============ Štruktúrne varianty šablón (cols / istyle) ============ */
/* viacstĺpcové sekcie (novinový layout) */
.sheet[data-layout="list"][data-cols="2"] .items{display:block;columns:2;column-gap:38px}
.sheet[data-layout="list"][data-cols="3"] .items{display:block;columns:3;column-gap:26px}
.sheet[data-cols="2"] .items .item,.sheet[data-cols="3"] .items .item{break-inside:avoid;-webkit-column-break-inside:avoid;margin-bottom:14px}

/* inline cena: hneď za názvom, žiadne leader bodky (minimal / brasserie) */
.istyle-inline .item-line{flex-wrap:wrap;gap:0 .15rem}
.istyle-inline .item-price{margin-left:.55rem;color:var(--primary)}

/* cena vľavo (vínny grand-cru) */
.item-price-left{font-weight:700;color:var(--primary);margin-right:.85rem;min-width:3em;flex:none;
  font-variant-numeric:tabular-nums;font-size:15px}
.istyle-priceleft .item-name{flex:1 1 auto}

/* číslované položky (set / ázijské / canteen) */
.item-num{flex:none;font-weight:700;color:var(--primary);margin-right:.7rem;min-width:1.5em;
  font-variant-numeric:tabular-nums}
.istyle-numbered .item-num::after{content:"."}

@media print{
  .sheet[data-layout="list"][data-cols="2"] .items{columns:2}
  .sheet[data-layout="list"][data-cols="3"] .items{columns:3}
}

/* ===================================================================
   DEKORATÍVNE ŠTÝLY (deco-*) - úplne odlišná kostra harku
   =================================================================== */

/* --- deco-script: rukou písaná tabuľa (font Caveat) -------------- */
.deco-script .sheet-title{font-size:clamp(42px,9vw,64px);font-weight:700;letter-spacing:.4px;line-height:1}
.deco-script .sheet-tagline{font-family:var(--head-font);font-size:21px;font-style:normal;opacity:.85}
.deco-script .cat-name{font-size:30px;font-weight:700;letter-spacing:.3px}
.deco-script .item-name{font-family:var(--head-font);font-size:22px;font-weight:400;letter-spacing:.2px}
.deco-script .item-price{font-family:var(--head-font);font-size:21px;font-weight:700}
.deco-script .item-portion{font-family:var(--head-font);font-size:17px}
.deco-script .item-leader{border-bottom-style:dotted;opacity:.45}
.deco-script .item-desc{font-size:14.5px;opacity:.82}
.deco-script .cat-divider svg{opacity:.4}
/* jemný kriedový závoj */
.deco-script .sheet{position:relative}
.deco-script .cat-name::after{content:"";display:block;width:54px;height:2px;margin-top:6px;
  background:var(--primary);opacity:.7;border-radius:2px}

/* --- deco-ticket: účtenka / bloček (font Space Mono, úzke) ------- */
.menu-online .sheet.deco-ticket,.menu-print .sheet.deco-ticket{max-width:440px;margin-left:auto;margin-right:auto}
.sheet.deco-ticket{padding:38px 34px;position:relative}
.deco-ticket .sheet-title{font-size:clamp(22px,5vw,30px);text-transform:uppercase;letter-spacing:3px;font-weight:700}
.deco-ticket .sheet-tagline{font-size:12px;letter-spacing:1px;text-transform:uppercase;font-style:normal}
.deco-ticket .sheet-head{border-bottom:2px dashed var(--line);padding-bottom:16px}
.deco-ticket .cat-name{font-size:13px;text-transform:uppercase;letter-spacing:3px;text-align:center;
  border-top:1px solid var(--ink);border-bottom:1px solid var(--ink);padding:7px 0;margin-bottom:4px}
.deco-ticket .items{display:block}
.deco-ticket .items .item{border-bottom:1px dashed var(--line);padding:9px 0}
.deco-ticket .items .item:last-child{border-bottom:0}
.deco-ticket .item-leader{display:none}
.deco-ticket .item-line{font-size:13.5px;align-items:baseline}
.deco-ticket .item-price-left{min-width:3.6em;font-size:13.5px}
.deco-ticket .item-desc{font-size:11.5px;opacity:.7}
.deco-ticket .cat-divider{display:none}
/* faux barcode na päte */
.sheet.deco-ticket::after{content:"";display:block;height:44px;max-width:230px;margin:26px auto 4px;
  background:repeating-linear-gradient(90deg,var(--ink) 0 2px,transparent 2px 4px,var(--ink) 4px 7px,
    transparent 7px 9px,var(--ink) 9px 12px,transparent 12px 17px);opacity:.85}

/* --- deco-frame: art-deco zlatý dvojrám ------------------------- */
.sheet.deco-frame{padding:48px 44px;position:relative}
.sheet.deco-frame::before{content:"";position:absolute;inset:14px;border:2px solid var(--primary);
  pointer-events:none;opacity:.9}
.sheet.deco-frame::after{content:"";position:absolute;inset:20px;
  border:1px solid color-mix(in srgb,var(--primary) 50%,transparent);pointer-events:none}
.deco-frame .sheet-head{text-align:center}
.deco-frame .sheet-title{letter-spacing:4px;text-transform:uppercase;font-weight:700}
.deco-frame .sheet-tagline{letter-spacing:2px;text-transform:uppercase;font-size:12px;font-style:normal}
.deco-frame .cat-head{text-align:center}
.deco-frame .cat-name{letter-spacing:5px;text-transform:uppercase;font-size:17px;
  display:inline-flex;align-items:center;gap:14px}
.deco-frame .cat-name::before,.deco-frame .cat-name::after{content:"";width:26px;height:1px;
  background:var(--primary);opacity:.7}
.deco-frame .item-leader{opacity:.4}

/* --- deco-poster: plagát / street (font Anton, obrie nadpisy) --- */
.deco-poster .sheet-title{font-size:clamp(46px,12vw,86px);line-height:.88;text-transform:uppercase;
  letter-spacing:-.005em;font-weight:400}
.deco-poster .sheet-tagline{text-transform:uppercase;letter-spacing:3px;font-size:12px;font-style:normal;font-weight:600}
.deco-poster .cat-name{font-size:clamp(26px,6vw,38px);text-transform:uppercase;line-height:1;
  letter-spacing:0;font-weight:400}
.deco-poster .cat-head{border-bottom:3px solid var(--ink);padding-bottom:8px;margin-bottom:16px}
.deco-poster .item-name{text-transform:uppercase;letter-spacing:.01em;font-weight:600;font-size:15px}
.deco-poster .item-price{font-family:var(--head-font);font-size:22px;font-weight:400}
.deco-poster .item-desc{text-transform:none;font-size:13px}

/* ===================================================================
   TLAC: profesionalne formaty + zalomenie sekcii (#20)
   @page margin:0 (v print.html) zrusi hlavicky/paticky prehliadaca (URL/datum).
   Tlacove okraje davame paddingom harku.
   =================================================================== */
/* obrazovkovy nahlad papiera pre nove formaty */
.menu-print.fmt-a5 .sheet,
.menu-print.fmt-a6 .sheet,
.menu-print.fmt-tent .sheet,
.menu-print.fmt-booklet .sheet { max-width: 480px; }
.menu-print.fmt-a6 .sheet { max-width: 360px; }

/* prepinac + hint v toolbare (len obrazovka) */
.print-toggle{display:inline-flex;align-items:center;gap:.4rem;font:400 13.5px/1.4 system-ui,sans-serif;color:#555;cursor:pointer}
.print-toggle input{accent-color:#1a1a1a;width:1rem;height:1rem}
.print-hint{max-width:800px;margin:14px auto 0;padding:12px 16px;background:#fbf2dd;border:1px solid #ecd9ad;
  border-radius:10px;font:400 13.5px/1.5 system-ui,sans-serif;color:#5a4a2a}
.print-hint b{color:#3a2e15}

@media print {
  /* ziadne hlavicky/paticky/toolbar/hint na papieri */
  .print-toggle, .print-hint { display: none !important; }
  /* bezpecne tlacove okraje (kedze @page margin:0): padding harku zostava;
     pri malych formatoch ho zmensime nech sa zmesti viac obsahu */
  .menu-print.fmt-a6 .sheet,
  .menu-print.fmt-tent .sheet { padding: 8mm 7mm; }
  .menu-print.fmt-a5 .sheet,
  .menu-print.fmt-booklet .sheet { padding: 10mm 9mm; }
  /* zalomenie kazdej sekcie na novu stranu (booklet / viacstrankove / obojstranne) */
  .menu-print.pb-sections section.cat { break-before: page; page-break-before: always; }
  .menu-print.pb-sections section.cat:first-of-type { break-before: avoid; page-break-before: avoid; }
  .menu-print.pb-sections .cat-divider { display: none !important; }
}

/* ===================================================================
   EDITOR à la Canva (#21): banner, pečiatky, pätička (logá + atribúcia)
   =================================================================== */
/* dekoratívny banner v hlavičke */
.sheet-banner{margin:-8px 0 22px;border-radius:12px;overflow:hidden;line-height:0}
.sheet-banner img{width:100%;height:auto;max-height:190px;object-fit:cover;display:block}

/* pečiatky / odznaky s textom */
.sheet-stamps{display:flex;flex-wrap:wrap;justify-content:center;gap:12px;margin-top:18px}
.stamp{font-family:var(--head-font);font-weight:700;font-size:12.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--primary);line-height:1.15;text-align:center;
  -webkit-print-color-adjust:exact;print-color-adjust:exact}
.stamp-classic{border:2px solid var(--primary);border-radius:4px;padding:.4rem .8rem;
  transform:rotate(-3deg);box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--primary) 35%,transparent)}
.stamp-round{border:2px solid var(--primary);border-radius:50%;width:92px;height:92px;
  display:inline-flex;align-items:center;justify-content:center;padding:.5rem;font-size:11px;
  transform:rotate(-6deg)}
.stamp-ribbon{background:var(--primary);color:var(--paper);padding:.42rem 1.1rem;position:relative;
  border-radius:3px;letter-spacing:.1em}
.stamp-ribbon::before,.stamp-ribbon::after{content:"";position:absolute;top:0;bottom:0;width:9px;background:inherit}
.stamp-ribbon::before{left:-7px;clip-path:polygon(100% 0,0 50%,100% 100%)}
.stamp-ribbon::after{right:-7px;clip-path:polygon(0 0,100% 50%,0 100%)}

/* pätička: logá partnerov + voľný text + atribúcia */
.sheet-foot{margin-top:34px;padding-top:20px;border-top:1px solid var(--line);text-align:center}
.foot-logos{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:22px;margin-bottom:14px}
.foot-logos img{max-height:48px;max-width:150px;width:auto;height:auto;object-fit:contain;
  opacity:.85;-webkit-print-color-adjust:exact;print-color-adjust:exact}
.foot-note{font-size:13px;color:var(--muted);line-height:1.5;margin:0 0 8px;font-style:italic}
.foot-attrib{font-size:11.5px;color:var(--muted);letter-spacing:.02em;margin:0;opacity:.85}
.foot-attrib .foot-sep{opacity:.6}
@media print{.sheet-foot{break-inside:avoid}}

/* ===================================================================
   VOĽNÁ GRAFICKÁ VRSTVA (Canva režim) - overlay nad hárkom
   =================================================================== */
.sheet{position:relative;container-type:inline-size}
.sheet-overlay{position:absolute;inset:0;pointer-events:none;overflow:hidden}
.ov-el{position:absolute;display:flex;align-items:center;justify-content:center}
.ov-el>*{width:100%;height:100%}
.ov-text-in{display:flex;align-items:center;line-height:1.2;overflow:hidden;
  -webkit-print-color-adjust:exact;print-color-adjust:exact;box-sizing:border-box;word-break:break-word}
.ov-el.ov-text{align-items:stretch}
.ov-el img{display:block;-webkit-print-color-adjust:exact;print-color-adjust:exact}
.ov-shape{-webkit-print-color-adjust:exact;print-color-adjust:exact}
.ov-line{width:100%;align-self:center}
.ov-el .stamp{white-space:nowrap}
.ov-icon{width:100%;height:100%;display:block}
.ov-icon use{fill:currentColor}

/* ===================================================================
   UX POLISH (audit 2026-07): čitateľnosť + tap-targety na mobile + tlač
   =================================================================== */
/* alergény a tagy čitateľnejšie (boli 11/10.5px - na mobile málo) */
.item-name .alg { font-size: 12px; }
.tag { font-size: 12px; color: #7c7264; }   /* tmavší = lepší kontrast (WCAG) */
.tag-new { color: var(--primary); }
/* väčšie tap-targety pre hosťa (min ~44px) */
.filter-chip { padding: 12px 10px; }
.jump-link { padding: 13px 12px; }
.sheet-social .soc { width: 40px; height: 40px; }
.sheet-info .chip a { padding: 4px 0; display: inline-block; }
/* indikátor že sa dá scrollovať cez sekcie (pravý fade) */
.jump-nav { position: relative; }
.jump-nav::after { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 34px;
  pointer-events: none; background: linear-gradient(to right, transparent, var(--paper, #fff) 82%); border-radius: 0 18px 18px 0; }
.menu-online.is-embed .jump-nav::after { display: none; }
/* visiace oddeľovače "·" v hlavičke pri zalomení na mobile - radšej skry, daj viac medzery */
@media (max-width: 600px) {
  .sheet-info { gap: 6px 0; }
  .sheet-info .chip:not(:last-child)::after { display: none; }
  .sheet-info .chip { padding: 0 9px; }
}
/* úsporná tlač (biele pozadie, čierny text) - cez ?ink=0 -> body.economy */
@media print {
  body.economy .sheet, body.economy .sheet * {
    background: #fff !important; background-image: none !important; color: #000 !important;
    box-shadow: none !important; text-shadow: none !important;
  }
  body.economy .item-leader { border-color: #999 !important; }
}
