/* ===== t1z1 bistro & more — shared styles (plain CSS port) ===== */

:root {
  --amber: #EF9A2E;
  --amber-deep: #E07D12;
  --peach: #F7CB8E;
  --ink: #1A1511;
  --ink-2: #2A231C;
  --cream: #F6EFE3;
  --cream-2: #EFE5D4;
  --paper: #FFFFFF;
  --muted: #6B5F50;
  --line: rgba(26, 21, 17, .12);
  --display: 'Montserrat';
  --display-weight: 900;
  --display-tracking: -.01em;
  --script: 'Kaushan Script';
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--cream); color: var(--ink); -webkit-font-smoothing: antialiased; }
img { display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--amber); color: var(--ink); }
a { color: inherit; text-decoration: none; }

.mono { font-family: 'Space Mono', monospace; }
.script { font-family: var(--script), 'Kaushan Script', cursive; font-weight: 400; line-height: 1; }
.caps { font-family: var(--display), 'Montserrat', sans-serif; font-weight: var(--display-weight); text-transform: uppercase; letter-spacing: var(--display-tracking); line-height: .9; }
.kicker { font-family: 'Space Mono', monospace; font-size: 13px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--amber-deep); }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; padding: 14px 26px; border-radius: 999px; transition: transform .15s ease, box-shadow .2s ease, color .2s ease, background-color .2s ease; white-space: nowrap; }
.btn:active { transform: scale(.96); }
.btn-primary { background-color: var(--amber); color: var(--ink); }
.btn-primary:hover { background-color: var(--amber-deep); box-shadow: 0 8px 22px rgba(224, 125, 18, .35); }
.btn-dark { background-color: var(--ink); color: var(--cream); }
.btn-dark:hover { background-color: var(--ink-2); box-shadow: 0 8px 22px rgba(26, 21, 17, .28); }
.btn-outline { border: 2px solid var(--ink); color: var(--ink); padding: 12px 24px; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { border: 2px solid rgba(255, 255, 255, .5); color: #fff; padding: 12px 24px; }
.btn-ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ---- Tags ---- */
.tag { display: inline-flex; align-items: center; font-family: 'Space Mono', monospace; font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 3px 8px; border-radius: 5px; }
.tag-nepszeru { background: var(--amber); color: var(--ink); }
.tag-uj { background: var(--ink); color: var(--amber); }
.tag-csipos { background: #C0392B; color: #fff; }
.tag-vega { background: #4F7A3A; color: #fff; }
.tag-row { display: flex; gap: 6px; flex-wrap: wrap; }

/* ---- Reveal-on-scroll ---- */
.fade-up { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .fade-up { opacity: 0; transform: translateY(24px); }
  .fade-up.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
}

@keyframes popIn { 0% { opacity: 0; transform: translateY(14px) scale(.96); } 100% { opacity: 1; transform: none; } }
@keyframes bubbleIn { 0% { opacity: 0; transform: translateY(8px) scale(.9); } 100% { opacity: 1; transform: none; } }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }

.hide-scroll::-webkit-scrollbar { display: none; }
.hide-scroll { scrollbar-width: none; }

/* ---- Food media ---- */
.food-media { width: 100%; height: 100%; }
.food-media img { width: 100%; height: 100%; object-fit: cover; }
.food-ph { width: 100%; height: 100%; position: relative; overflow: hidden; background: radial-gradient(circle at 30% 25%, #3a2f23, var(--ink) 75%); display: flex; align-items: center; justify-content: center; }
.food-ph::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(239, 154, 46, .06) 0 14px, transparent 14px 28px); }
.food-ph .ph-letter { font-size: 76px; color: rgba(239, 154, 46, .5); line-height: 1; }
.food-ph .ph-note { position: absolute; bottom: 10px; left: 12px; font-size: 10.5px; color: rgba(247, 203, 142, .55); letter-spacing: .05em; }

/* ---- Social row ---- */
.social-row { display: flex; gap: 12px; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--line); color: var(--ink); transition: all .2s ease; }
.social-row.dark a { border-color: rgba(255, 255, 255, .28); color: #fff; }
.social-row a:hover { background: var(--amber); color: var(--ink); border-color: var(--amber); }

/* ===== Navigation ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 40; transition: background .3s ease, box-shadow .3s ease, border-color .3s; background: rgba(246, 239, 227, .92); backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid var(--line); }
.site-header.transparent { background: transparent; backdrop-filter: none; border-bottom-color: transparent; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo { height: 80px; cursor: pointer; transition: filter .3s; }
.site-header.transparent .nav-logo { filter: brightness(0) invert(1); }
.desktop-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { font-weight: 700; font-size: 13.5px; letter-spacing: .04em; text-transform: uppercase; padding: 9px 14px; border-radius: 999px; color: var(--ink); opacity: .72; position: relative; }
.site-header.transparent .nav-link { color: #fff; }
.nav-link.active { opacity: 1; }
.nav-link.active::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; background: var(--amber); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cart { position: relative; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--line); color: var(--ink); }
.site-header.transparent .nav-cart { border-color: rgba(255, 255, 255, .45); color: #fff; }
.nav-cart-count { position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px; background: var(--amber); color: var(--ink); font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center; border: 2px solid var(--cream); }
.nav-cart-count[hidden] { display: none; }
.nav-burger { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; border: 1.5px solid var(--line); color: var(--ink); background: transparent; cursor: pointer; }
.site-header.transparent .nav-burger { border-color: rgba(255, 255, 255, .45); color: #fff; }
@media (max-width: 860px) { .desktop-nav { display: none !important; } .nav-burger { display: flex; } }
@media (max-width: 520px) { .nav-order { display: none !important; } }

/* mobil menü drawer (balról csúszik be) */
.nav-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(10, 8, 6, .5); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.nav-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-nav { position: fixed; top: 0; left: 0; bottom: 0; z-index: 61; width: 300px; max-width: 86vw; background: var(--cream); box-shadow: 20px 0 50px rgba(0, 0, 0, .25); transform: translateX(-100%); transition: transform .32s cubic-bezier(.3, .7, .2, 1); display: flex; flex-direction: column; padding: 0 22px 26px; }
.mobile-nav.open { transform: none; }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 0 18px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link { font-weight: 700; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; padding: 15px 8px; color: var(--ink); opacity: .82; border-bottom: 1px solid var(--line); }
.mobile-nav-link.active { opacity: 1; color: var(--amber-deep); }
.mobile-nav-order { margin-top: auto; justify-content: center; }

/* ===== Footer ===== */
.footer-stack { position: relative; background: var(--ink); }
.site-footer { position: relative; z-index: 2; background: var(--cream); padding: clamp(12px,1.6vw,20px); }
.footer-card { width: 100%; background: var(--ink); color: var(--cream); border-radius: clamp(22px,3vw,36px); overflow: hidden; }

/* -- Newsletter strip -- */
.footer-nl { display:none; position: relative; z-index: 2; background: var(--ink-2); color: var(--cream); }
.footer-nl-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 72px 28px; }
.footer-nl-script { font-size: clamp(22px,3vw,34px); color: var(--amber); display: block; margin-bottom: 8px; }
.footer-nl-title { font-size: clamp(28px,4vw,38px); line-height: .93; }
.footer-nl-sub { font-size: 15px; line-height: 1.6; color: rgba(246,239,227,.6); margin-top: 16px; max-width: 380px; }
.footer-nl-row { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-nl-input { flex: 1; min-width: 180px; border: none; border-radius: 999px; padding: 15px 20px; font-size: 15px; outline: none; background: rgba(255,255,255,.08); color: var(--cream); border: 1.5px solid rgba(255,255,255,.15); }
.footer-nl-input::placeholder { color: rgba(246,239,227,.35); }
.footer-nl-input:focus { border-color: var(--amber); background: rgba(239,154,46,.06); }
.footer-nl-prefs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.footer-nl-legal { font-size: 11px; color: rgba(246,239,227,.35); margin-top: 14px; }
.footer-nl-success { background: rgba(239,154,46,.12); border: 1.5px solid var(--amber); border-radius: 16px; padding: 22px 24px; margin-top: 4px; }

/* -- Main footer body (Lando-style) -- */
.footer-main { border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-main-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; padding: 72px 28px 64px; align-items: start; }
.footer-col-label { color: var(--amber); margin-bottom: 24px; display: block; }
.footer-big-link { display: block; font-family: var(--display), 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase; letter-spacing: -.01em; font-size: clamp(22px,3vw,38px); line-height: 1.05; color: rgba(246,239,227,.82); padding: 5px 0; transition: color .18s ease, transform .18s ease; cursor: pointer; }
.footer-big-link:hover { color: var(--amber); transform: translateX(6px); }
.footer-order-link { color: var(--amber); margin-top: 10px; }
.footer-order-link:hover { color: var(--amber-deep); }
.footer-social-link { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.footer-col-social { text-align: right; }
.footer-col-social .footer-big-link { margin-left: auto; }
.footer-col-social .footer-big-link:hover { transform: translateX(-6px); }
.footer-center { align-self: stretch; display: grid; grid-template-rows: 1fr auto 1fr; justify-items: center; text-align: center; }
.footer-logo { grid-row: 2; height: 52px; filter: brightness(0) invert(1); margin: 0; }
.footer-tagline { font-size: clamp(14px,1.8vw,20px); color: rgba(246,239,227,.35); line-height: 1.1; }
.footer-address { grid-row: 3; align-self: start; margin-top: 14px; font-size: 13px; line-height: 1.8; color: rgba(246,239,227,.45); }
.footer-phone { color: var(--amber); font-weight: 700; }
.footer-phone:hover { color: var(--amber-deep); }

/* -- Bottom bar -- */
.footer-bottom { }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 28px; flex-wrap: wrap; gap: 10px; }
.footer-bottom-inner span, .footer-bottom-inner .mono { font-size: 12px; color: rgba(246,239,227,.38); }
.footer-bottom-link { color: rgba(246,239,227,.38); text-decoration: underline; }
.footer-bottom-link:hover { color: var(--amber); }

@media (max-width: 900px) {
  .footer-nl-inner { grid-template-columns: 1fr; gap: 36px; padding: 54px 28px; }
  .footer-main-inner { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 40px 20px; }
  .footer-center { grid-column: 1 / -1; order: -1; padding-top: 0; align-self: auto; display: flex; flex-direction: column; align-items: center; }
  .footer-address { grid-row: auto; margin-top: 16px; }
  .footer-col-social { text-align: left; }
  .footer-col-social .footer-big-link { margin-left: 0; }
  .footer-col-social .footer-social-link { justify-content: flex-start; }
  .footer-col-social .footer-big-link:hover { transform: translateX(6px); }
}
@media (max-width: 560px) {
  .footer-main-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-big-link { font-size: clamp(20px,6vw,30px); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}
/* ===== Cart drawer ===== */
.cart-backdrop { position: fixed; inset: 0; z-index: 60; background: rgba(10, 8, 6, .5); backdrop-filter: blur(2px); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.cart-backdrop.open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 61; width: 420px; max-width: 92vw; background: var(--cream); box-shadow: -20px 0 50px rgba(0, 0, 0, .25); transform: translateX(100%); transition: transform .32s cubic-bezier(.3, .7, .2, 1); display: flex; flex-direction: column; }
.cart-drawer.open { transform: none; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.icon-btn { width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; }
.cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; gap: 14px; }
.cart-empty-ico { width: 76px; height: 76px; border-radius: 50%; background: var(--cream-2); display: flex; align-items: center; justify-content: center; }
.cart-lines { flex: 1; overflow-y: auto; padding: 16px 22px; display: flex; flex-direction: column; gap: 14px; }
.cart-line { display: flex; gap: 12px; background: #fff; border-radius: 14px; padding: 10px; border: 1px solid var(--line); }
.cart-line-media { width: 64px; height: 64px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--line); border-radius: 999px; }
.qty button { width: 30px; height: 30px; border-radius: 50%; font-weight: 800; font-size: 18px; color: var(--ink); }
.qty span { min-width: 22px; text-align: center; font-weight: 800; font-size: 14px; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); background: var(--cream); }

/* ===== Tizi chat ===== */
/* a lebegő sarok-gomb és a buborék elrejtve — a chat a "Beszélek Tizivel" gombbal nyílik */
.tizi-fab, .tizi-bubble { display: none !important; }
.tizi-close { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: rgba(255, 255, 255, .12); flex-shrink: 0; }
.tizi-close:hover { background: rgba(255, 255, 255, .22); }
.tizi-bubble { position: fixed; right: 96px; bottom: 30px; z-index: 49; max-width: 250px; animation: bubbleIn .4s ease both; }
.tizi-bubble-inner { background: #fff; border-radius: 16px 16px 4px 16px; padding: 14px 16px; box-shadow: 0 12px 34px rgba(0, 0, 0, .18); cursor: pointer; position: relative; }
.tizi-bubble-close { position: absolute; top: 6px; right: 8px; font-size: 15px; color: var(--muted); line-height: 1; }
.tizi-fab { display: none ;position: fixed; right: 24px; bottom: 24px; z-index: 50; width: 60px; height: 60px; border-radius: 50%; background: var(--amber); box-shadow: 0 10px 28px rgba(224, 125, 18, .45); display: flex; align-items: center; justify-content: center; transition: transform .2s ease; }
.tizi-fab:hover { transform: scale(1.06); }
.tizi-avatar { border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.tizi-panel { position: fixed; right: 24px; bottom: 96px; z-index: 50; width: 374px; max-width: calc(100vw - 32px); height: 540px; max-height: calc(100vh - 130px); background: #fff; border-radius: 20px; box-shadow: 0 24px 60px rgba(0, 0, 0, .28); display: none; flex-direction: column; overflow: hidden; }
.tizi-panel.open { display: flex; animation: popIn .26s ease both; }
.tizi-head { background: var(--ink); color: #fff; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.tizi-msgs { flex: 1; overflow-y: auto; padding: 16px 16px 8px; background: var(--cream); display: flex; flex-direction: column; gap: 12px; }
.tizi-msg-row { display: flex; gap: 8px; }
.tizi-bubble-msg { max-width: 78%; padding: 10px 14px; font-size: 14px; line-height: 1.5; box-shadow: 0 2px 8px rgba(0, 0, 0, .05); }
.tizi-bubble-msg.tizi { border-radius: 16px 16px 16px 4px; background: #fff; color: var(--ink); }
.tizi-bubble-msg.user { border-radius: 16px 16px 4px 16px; background: var(--ink); color: var(--cream); }
.tizi-suggest { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; margin-left: 38px; }
.tizi-suggest button { display: inline-flex; align-items: center; gap: 6px; background: var(--amber); color: var(--ink); font-weight: 800; font-size: 12.5px; padding: 7px 12px; border-radius: 999px; }
.tizi-quick { display: flex; gap: 7px; padding: 8px 14px; overflow-x: auto; border-top: 1px solid var(--line); background: #fff; }
.tizi-quick button { white-space: nowrap; border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 13px; font-size: 12.5px; font-weight: 700; color: var(--ink); flex-shrink: 0; }
.tizi-form { display: flex; gap: 8px; padding: 12px 14px; background: #fff; border-top: 1px solid var(--line); }
.tizi-form input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 16px; font-size: 14px; outline: none; }
.tizi-send { width: 44px; height: 44px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tizi-send:disabled { opacity: .5; }
.typing { display: flex; gap: 4px; padding: 4px 2px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite; }

/* ===== Menu card ===== */
.menu-card { background: var(--paper); border-radius: 16px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(26, 21, 17, .12); }
.menu-card-media { position: relative; height: 170px; }
.menu-card-media .tag-row { position: absolute; top: 12px; left: 12px; }
.menu-card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.menu-card-top { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.menu-card-top h3 { font-size: 16.5px; font-weight: 800; line-height: 1.2; }
.menu-card-price { font-size: 16px; color: var(--amber-deep); white-space: nowrap; }
.menu-card-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; margin-top: 8px; flex: 1; }
.menu-card-allergen { font-size: 10.5px; color: var(--muted); margin-top: 10px; letter-spacing: .03em; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }

/* ===== Termék-slider (vízszintes csúszka) ===== */
.slider { position: relative; padding: 0 52px; }
.slider-track { display: grid; grid-auto-flow: column; grid-auto-columns: 280px; gap: 22px; overflow-x: auto; scroll-snap-type: x proximity; padding: 4px 2px 12px; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; }
.slider-track::-webkit-scrollbar { display: none; }
.slider-track > .menu-card { scroll-snap-align: start; }
.slider-arrow { position: absolute; top: 42%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 26px; line-height: 1; padding-bottom: 3px; cursor: pointer; box-shadow: 0 8px 22px rgba(0, 0, 0, .22); transition: background .2s ease, transform .2s ease; }
.slider-arrow:hover { background: var(--amber-deep); transform: translateY(-50%) scale(1.06); }
.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }
.slider-arrow[hidden] { display: none; }
@media (max-width: 620px) {
  .slider { padding: 0; }
  .slider-track { grid-auto-columns: 80%; gap: 16px; }
  .slider-arrow { display: none; }
}

/* ===== Generic page header (dark band) ===== */
.page-head { background: var(--ink); color: var(--cream); padding: 54px 0 40px; }
.page-head h1 { font-size: clamp(40px, 7vw, 80px); margin-top: 8px; }
.page-head p { color: rgba(246, 239, 227, .7); font-size: 16.5px; margin-top: 10px; max-width: 520px; line-height: 1.5; }

main.page { padding-top: 70px; }

/* ===== Section helpers used across pages (see per-page assets where needed) ===== */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(26px, 5vw, 56px); margin-top: 8px; }

/* ===== Events ===== */
.event-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.event-soon { position: absolute; top: 12px; right: 12px; z-index: 2; background: var(--amber); color: var(--ink); font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; padding: 5px 11px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 2px 8px rgba(239,154,46,.45); }
.event-type { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 11.5px; font-weight: 700; font-family: 'Space Mono', monospace; padding: 4px 10px; border-radius: 6px; letter-spacing: .04em; text-transform: uppercase; }
.event-body { padding: 14px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.event-body h3 { font-size: 21px; font-weight: 800; line-height: 1.2; }
.event-when { font-size: 12.5px; color: var(--amber-deep); font-weight: 700; margin-top: 8px; letter-spacing: .04em; }
.event-desc { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin-top: 10px; flex: 1; }
.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }

/* ===== Newsletter ===== */
.news-card { background: var(--ink); border-radius: 24px; overflow: hidden; display: grid; grid-template-columns: 1.1fr .9fr; }
.news-body { padding: clamp(30px, 4vw, 56px); color: var(--cream); }
.news-img { position: relative; min-height: 260px; overflow: hidden; }
.news-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.news-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink), transparent 35%); }
.news-pref { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; font-size: 13px; font-weight: 700; background: transparent; color: rgba(246, 239, 227, .6); border: 1.5px solid rgba(255, 255, 255, .18); }
.news-pref.on { background: rgba(239, 154, 46, .16); color: var(--amber); border-color: var(--amber); }
.news-pref .box { width: 15px; height: 15px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1.5px solid rgba(255, 255, 255, .3); }
.news-pref.on .box { background: var(--amber); border-color: var(--amber); }
@media (max-width: 760px) { .news-card { grid-template-columns: 1fr; } .news-img { min-height: 180px; order: -1; } }

/* ===== Forms / checkout ===== */
.field-label { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--ink); margin-bottom: 7px; display: block; }
.field { width: 100%; border: 1.5px solid var(--line); border-radius: 12px; padding: 13px 15px; font-size: 15px; outline: none; background: #fff; }
.field.bad { border-color: #C0392B; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 30px; align-items: start; }
.checkout-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.mode-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mode-btn { text-align: left; padding: 14px; border-radius: 12px; border: 2px solid var(--line); background: #fff; }
.mode-btn.on { border-color: var(--amber); background: rgba(239, 154, 46, .1); }
.mode-btn .t { font-weight: 800; font-size: 14.5px; }
.mode-btn .sub { font-size: 11.5px; color: var(--muted); margin-top: 3px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pay-btn { flex: 1; min-width: 180px; padding: 14px; border-radius: 12px; font-weight: 700; font-size: 14px; text-align: left; border: 2px solid var(--line); background: #fff; }
.pay-btn.on { border-color: var(--amber); background: rgba(239, 154, 46, .1); }
.summary { background: var(--ink); color: var(--cream); border-radius: 18px; padding: 24px; position: sticky; top: 90px; }
.summary-line { display: flex; gap: 10px; align-items: center; }
.summary .qty { border-color: rgba(255, 255, 255, .2); }
.summary .qty button { color: var(--cream); width: 26px; height: 26px; font-size: 16px; }
.summary .qty span { min-width: 18px; font-size: 13px; }
.row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(246, 239, 227, .78); }
.row span:last-child { font-weight: 700; }
@media (max-width: 820px) { .checkout-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ===== Home hero ===== */
.hero { position: relative; min-height: 100vh; overflow: hidden; background: var(--ink); }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 8, 6, .62) 0%, rgba(10, 8, 6, .18) 32%, rgba(10, 8, 6, .30) 62%, rgba(10, 8, 6, .88) 100%); }
.hero-inner { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 66px; padding-bottom: 24px; }
.hero-script { position: absolute; top: -32px; left: 4px; font-size: clamp(23px, 3.8vw, 38px); color: #fff; transform: rotate(-4deg); text-shadow: 0 2px 18px rgba(0, 0, 0, .4); }
.hero h1 { font-size: clamp(46px, 9.5vw, 120px); }
.hero-lead { color: rgba(255, 255, 255, .9); font-size: clamp(16px, 2vw, 20px); font-weight: 500; max-width: 565px; margin-top: 16px; line-height: 1.5; }
.hero-stats { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats .num { font-size: 26px; color: #fff; }
.hero-stats .lbl { font-size: 11.5px; color: rgba(255, 255, 255, .6); letter-spacing: .08em; text-transform: uppercase; margin-top: 2px; }

/* programok a heroban */
.hero-events { margin-top: 22px; max-width: 720px; }
.hero-events-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hero-events-head .kicker { padding: 5px 11px; border-radius: 999px; }
.hero-events-all { color: #fff; font-weight: 700; font-size: 13px; opacity: .85; }
.hero-events-all:hover { opacity: 1; color: var(--amber); }
.hero-events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.hero-event { display: flex; flex-direction: column; gap: 9px; padding: 15px 16px; border-radius: 14px; background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .16); backdrop-filter: blur(10px); transition: background .2s ease, transform .2s ease; }
.hero-event:hover { background: rgba(255, 255, 255, .16); transform: translateY(-3px); }
.hero-event-type { align-self: flex-start; font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #fff; padding: 4px 9px; border-radius: 999px; }
.hero-event-title { font-weight: 800; font-size: 14.5px; color: #fff; line-height: 1.25; }
.hero-event-when { font-size: 11px; color: rgba(255, 255, 255, .62); margin-top: auto; }
.hero-event-meta { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.hero-event-soon { background: var(--amber); color: var(--ink); font-family: 'Space Mono', monospace; font-size: 9px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; box-shadow: 0 2px 8px rgba(239,154,46,.45); }
@media (max-width: 640px) {
  .hero-events-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 76%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
  .hero-event { scroll-snap-align: start; }
}
/* mobilon a kézzel-írott alcím a folyásban (ne lógjon a logó/menü alá) */
@media (max-width: 860px) {
  .hero-inner { padding-top: 88px; }
  .hero-script { position: static; transform: rotate(-3deg); margin: 0 0 2px 2px; font-size: clamp(22px, 6vw, 34px); }
}
.scroll-hint { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255, 255, 255, .6); display: flex; flex-direction: column; align-items: center; gap: 6px; }
.scroll-hint span { font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; }

/* ---- elfogyott termék ---- */
.menu-card.sold-out { opacity: .78; }
.menu-card.sold-out .menu-card-media { filter: grayscale(.55); }
.menu-card .menu-card-media { position: relative; }
.sold-out-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: #b71c1c; color: #fff; font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.dinein-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--amber); color: var(--ink); font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}

/* ===== Upsell felugró ablak ===== */
.ups-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; padding: 20px; z-index: 120; opacity: 0; transition: opacity .18s; }
.ups-backdrop.open { opacity: 1; }
.ups-modal { width: 100%; max-width: 384px; background: var(--cream); border-radius: 22px; overflow: hidden; transform: translateY(10px); transition: transform .18s; max-height: 90vh; overflow-y: auto; }
.ups-backdrop.open .ups-modal { transform: none; }
.ups-head { padding: 20px 22px 14px; background: var(--ink); }
.ups-kicker { color: var(--amber); font-size: 19px; line-height: 1; }
.ups-title { color: var(--cream); font-size: 30px; line-height: 1.05; margin-top: 2px; }
.ups-step { color: rgba(246,239,227,.6); font-size: 11.5px; margin-top: 4px; }
.ups-body { padding: 18px 22px 4px; }
.ups-q { font-weight: 800; font-size: 17px; color: var(--ink); margin-bottom: 14px; }
.ups-opt { display: flex; justify-content: space-between; align-items: center; width: 100%; text-align: left; padding: 14px 16px; border-radius: 12px; border: 2px solid var(--line); background: #fff; margin-bottom: 10px; cursor: pointer; }
.ups-opt:hover { border-color: var(--amber); }
.ups-opt.sel { border-color: var(--amber); background: rgba(239,154,46,.14); }
.ups-opt-label { font-weight: 700; font-size: 15px; color: var(--ink); }
.ups-opt-price { font-weight: 800; font-size: 13.5px; color: var(--amber-deep); }
.ups-foot { padding: 6px 22px 22px; }
.ups-primary { width: 100%; border: none; border-radius: 999px; background: var(--amber); color: var(--ink); font-weight: 800; font-size: 16px; padding: 15px; cursor: pointer; }
.ups-primary.shake { animation: upsShake .4s; }
@keyframes upsShake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.ups-back { background: none; border: none; color: var(--muted); font-weight: 700; font-size: 13px; padding: 8px 0; margin-bottom: 4px; cursor: pointer; }
.ups-skip { width: 100%; background: none; border: none; color: var(--muted); font-weight: 700; font-size: 13px; padding: 12px 0 2px; cursor: pointer; }

/* ===== Zárva állapot ===== */
.shop-closed-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #c0392b; color: #fff; text-align: center;
  font-weight: 700; font-size: 14px; line-height: 1.35;
  padding: 9px 16px;
}
/* a fix csík alá csúsztatjuk a fejlécet és a tartalmat (csak főoldal + étlap) */
body.shop-closed { padding-top: 42px; }
body.shop-closed .site-header { top: 42px; }
/* rendelés-gombok tiltása zárva állapotban (minden oldalon) */
body.shop-closed-mode .nav-order,
body.shop-closed-mode .mobile-nav-order,
body.shop-closed-mode .footer-order-link,
body.shop-closed-mode .cart-checkout,
body.shop-closed-mode .order-cta,
body.shop-closed-mode [data-add] {
  opacity: .45; pointer-events: none; cursor: default;
}