/* ==========================================================================
   Rojaus Pica - Sporto baras
   Modernus dizainas. Firminės spalvos: raudona / juoda / balta.
   ========================================================================== */

/* ---------- Šriftas (self-hosted, veikia ir be interneto) ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Kintamieji ---------- */
:root {
  --red:        #e10600;
  --red-hot:    #ff2a17;
  --red-deep:   #a30400;
  --red-soft:   rgba(225, 6, 0, .14);
  --red-glow:   rgba(225, 6, 0, .45);

  --ink:        #0b0b0d;
  --ink-2:      #101014;
  --surface:    #16161b;
  --surface-2:  #1e1e25;
  --line:       rgba(255, 255, 255, .09);
  --line-soft:  rgba(255, 255, 255, .055);

  --text:       #f5f5f7;
  --muted:      #a3a3af;
  --muted-2:    #74747f;

  --radius:     18px;
  --radius-sm:  12px;
  --radius-pill:999px;

  --shadow:     0 18px 45px -22px rgba(0, 0, 0, .95);
  --shadow-lg:  0 32px 70px -30px rgba(0, 0, 0, 1);

  --header-h:   72px;
  --maxw:       1220px;

  --ease:       cubic-bezier(.22, .68, .35, 1);
}

/* ---------- Bazė ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Mygtukai ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary:hover { box-shadow: 0 18px 40px -14px var(--red-glow), inset 0 1px 0 rgba(255,255,255,.3); }

.btn--ghost {
  background: rgba(255,255,255,.04);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.2); }

.btn--sm { padding: 10px 18px; font-size: .875rem; }

/* ==========================================================================
   Viršutinė juosta + antraštė
   ========================================================================== */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line-soft);
  font-size: .8125rem;
  color: var(--muted);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--red-hot); flex: none; }
.topbar__item strong { color: #fff; font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(11, 11, 13, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(11, 11, 13, .95);
  box-shadow: 0 12px 34px -22px #000;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; flex: none; margin-right: auto; }
.brand img {
  height: 46px;
  width: auto;
  transition: transform .3s var(--ease);
}
.brand:hover img { transform: scale(1.04); }

.mainnav { display: flex; align-items: center; gap: 4px; }
.mainnav a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: .925rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.mainnav a:hover { color: #fff; background: rgba(255,255,255,.06); }

.header__cta { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.burger span {
  display: block; position: relative;
  width: 19px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease), background-color .2s var(--ease);
}
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0;
  width: 19px; height: 2px; border-radius: 2px; background: #fff;
  transition: transform .3s var(--ease);
}
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobilus meniu */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  background: var(--ink-2);
  border-left: 1px solid var(--line);
  padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
  overflow-y: auto;
  transform: translateX(102%);
  transition: transform .32s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 14px; margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.drawer__head img { height: 38px; }
.drawer__close {
  width: 40px; height: 40px; border-radius: 11px;
  border: 1px solid var(--line); background: rgba(255,255,255,.04);
  display: grid; place-items: center; cursor: pointer;
}
.drawer__close svg { width: 18px; height: 18px; }
.drawer__link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  transition: background-color .2s var(--ease);
}
.drawer__link:hover, .drawer__link:focus-visible { background: rgba(255,255,255,.06); }
.drawer__link .count { color: var(--muted-2); font-size: .8125rem; font-weight: 500; }
.drawer__label {
  padding: 16px 14px 6px;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2); font-weight: 700;
}
.drawer .btn { margin-top: 16px; width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 9vw, 104px) 0 clamp(44px, 7vw, 76px);
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  top: -32%; left: 50%;
  width: min(1100px, 145vw); aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, var(--red-glow) 0%, rgba(225,6,0,.10) 42%, transparent 68%);
  filter: blur(12px);
  z-index: -2;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: radial-gradient(ellipse 78% 62% at 50% 34%, #000 30%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 78% 62% at 50% 34%, #000 30%, transparent 74%);
  z-index: -1;
  pointer-events: none;
}
.hero__inner { text-align: center; display: grid; justify-items: center; gap: 22px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(225,6,0,.35);
  background: var(--red-soft);
  font-size: .8125rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: #ff8d84;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-hot);
  box-shadow: 0 0 0 4px rgba(225,6,0,.22);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(225,6,0,.22); }
  50%      { box-shadow: 0 0 0 8px rgba(225,6,0,.05); }
}

.hero h1 {
  font-size: clamp(2.4rem, 7.2vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.035em;
  max-width: 15ch;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--red-hot), #ff7b5e 55%, var(--red));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 56ch;
  color: var(--muted);
  font-size: clamp(1rem, 2.3vw, 1.175rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

.hero__stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
  margin-top: 6px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  font-size: .875rem; font-weight: 600;
  color: var(--text);
}
.chip svg { width: 15px; height: 15px; color: var(--red-hot); flex: none; }
.chip em { font-style: normal; color: var(--muted); font-weight: 500; }

/* Akcijos juosta */
.promo {
  margin-top: clamp(30px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 14px;
}
.promo__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 26px 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.promo__card--hot {
  background:
    radial-gradient(120% 160% at 12% 0%, rgba(255,42,23,.36), transparent 58%),
    linear-gradient(135deg, #1c0503, #150303);
  border-color: rgba(225,6,0,.4);
}
.promo__tag {
  align-self: flex-start;
  font-size: .70rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: #ffb0a6;
}
.promo__card h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); font-weight: 900; }
.promo__card p { color: var(--muted); font-size: .925rem; }
.promo__card--hot p { color: #f0c9c4; }
.promo__price {
  font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 900; letter-spacing: -.04em;
  color: #fff; line-height: 1;
}
.promo__price small { font-size: .42em; font-weight: 700; color: #ffb0a6; margin-left: 6px; letter-spacing: 0; }

/* ==========================================================================
   Sekcijos
   ========================================================================== */
.section { padding: clamp(52px, 8vw, 92px) 0; }
.section--tight { padding: clamp(40px, 6vw, 66px) 0; }
.section-head { margin-bottom: clamp(26px, 4vw, 40px); max-width: 62ch; }
.section-head .kicker {
  display: block;
  font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--red-hot); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.8rem, 4.6vw, 2.8rem); font-weight: 900; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 1.02rem; }

/* ---------- Meniu valdymas (paieška + kategorijos) ---------- */
.menubar {
  position: sticky;
  top: var(--header-h);
  z-index: 70;
  background: rgba(11,11,13,.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.menubar__inner { display: flex; align-items: center; gap: 14px; }

.search {
  position: relative;
  flex: none;
  width: 270px;
}
.search .ico {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--muted-2); pointer-events: none;
}
.search input {
  width: 100%;
  padding: 11px 38px 11px 40px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: .9rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.search input::placeholder { color: var(--muted-2); }
.search input:focus { outline: none; border-color: rgba(225,6,0,.55); background: #23232b; }
.search__clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.09);
  display: none; place-items: center; cursor: pointer;
}
.search__clear svg { width: 13px; height: 13px; }
.search.has-value .search__clear { display: grid; }

.cats {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding: 3px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px, #000 calc(100% - 24px), transparent 100%);
}
.cats::-webkit-scrollbar { display: none; }
.cats a {
  flex: none;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
  font-size: .875rem; font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.cats a:hover { color: #fff; border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.08); }
.cats a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  border-color: transparent;
  box-shadow: 0 8px 22px -12px var(--red-glow);
}

.noresults {
  display: none;
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
}
.noresults strong { display: block; color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.noresults.is-visible { display: block; }

/* ---------- Meniu kategorijos ---------- */
.menu-section { padding-top: clamp(40px, 6vw, 64px); scroll-margin-top: calc(var(--header-h) + 78px); }
.menu-section.is-hidden { display: none; }

.menu-section__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.menu-section__head h2 {
  font-size: clamp(1.35rem, 3.4vw, 2rem);
  font-weight: 900;
}
.menu-section__head .count {
  font-size: .8125rem; color: var(--muted-2); font-weight: 600;
  padding: 3px 10px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: rgba(255,255,255,.03);
}
.menu-section__head .note { margin-left: auto; font-size: .85rem; color: var(--muted); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 18px;
}

/* ---------- Kortelė ---------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.card.is-hidden { display: none; }
@media (hover: hover) {
  .card:hover {
    transform: translateY(-4px);
    border-color: rgba(225,6,0,.42);
    box-shadow: var(--shadow-lg);
  }
  .card:hover .card__media img { transform: scale(1.06); }
}

.card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1d1d23, #131317);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,.72) 0%, transparent 46%);
  pointer-events: none;
}

.badge {
  position: absolute; top: 12px; left: 12px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  color: #fff;
  box-shadow: 0 8px 20px -10px var(--red-glow);
}
.badge--gold { background: linear-gradient(135deg, #ffc247, #f0951b); color: #2a1700; }

.card__body {
  padding: 16px 18px 18px;
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.card__title {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}
.card__desc {
  font-size: .875rem;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
}
.card__meta {
  font-size: .8125rem;
  color: var(--muted-2);
  font-weight: 600;
}

.prices {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 2px;
}
.price {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 7px 12px;
  border-radius: 11px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  font-size: .8125rem;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.card:hover .price { border-color: rgba(255,255,255,.16); }
.price .size { color: var(--muted-2); font-weight: 600; }
.price .val { color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: -.01em; }
.price--solo .val { color: var(--red-hot); }

.card__note {
  font-size: .72rem;
  color: var(--muted-2);
  padding-top: 2px;
}

/* ---------- Amžiaus patvirtinimas (alkoholis) ---------- */
.agegate {
  border: 1px solid rgba(225,6,0,.3);
  background: linear-gradient(135deg, rgba(225,6,0,.1), rgba(225,6,0,.02));
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px) 24px;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.agegate.is-done { display: none; }
.agegate h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
.agegate p { color: var(--muted); max-width: 56ch; font-size: .95rem; }
.agegate__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 6px; }

.grid--gated { display: none; }
.grid--gated.is-unlocked { display: grid; }

/* Kortelė be nuotraukos (papildomi produktai) */
.card--plain {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.card--plain .card__body { padding: 18px; }
.card--plain .card__title { font-size: .975rem; }

/* ---------- Info kortelės ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.info-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.info-card:hover { border-color: rgba(225,6,0,.35); transform: translateY(-3px); }
.info-card__ico {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--red-soft);
  border: 1px solid rgba(225,6,0,.3);
  margin-bottom: 16px;
}
.info-card__ico svg { width: 21px; height: 21px; color: var(--red-hot); }
.info-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.info-card p, .info-card li { color: var(--muted); font-size: .925rem; }
.info-card ul { margin: 0; padding-left: 18px; }
.info-card li { margin-bottom: 5px; }
.info-card strong { color: #fff; font-weight: 700; }

/* ---------- Baras ---------- */
.bar {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.bar__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.bar__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.bar__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,11,13,.5), transparent 55%);
}
.bar__text h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 16px; }
.bar__text p { color: var(--muted); }
.bar__list { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 10px; }
.bar__list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .95rem; }
.bar__list svg { width: 18px; height: 18px; color: var(--red-hot); flex: none; margin-top: 3px; }

/* ---------- Poraštė ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #08080a;
  padding: clamp(44px, 6vw, 68px) 0 0;
  margin-top: clamp(40px, 6vw, 70px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 34px;
  padding-bottom: 40px;
}
.footer-brand img { height: 52px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: .9rem; max-width: 34ch; }
.footer-col h4 {
  font-size: .75rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 14px; font-weight: 800;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: .9rem; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--red-hot); }
.footer-col strong { color: #fff; }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.socials a:hover {
  background: linear-gradient(135deg, var(--red-hot), var(--red));
  border-color: transparent;
  transform: translateY(-2px);
}
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  font-size: .8125rem; color: var(--muted-2);
}

/* ---------- Mobilus skambučio blokas ---------- */
.callbar {
  position: fixed;
  left: 12px; right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 80;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(18,18,22,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: translateY(140%);
  transition: transform .35s var(--ease);
}
.callbar.is-visible { transform: translateY(0); }
.callbar .btn { flex: 1; padding: 13px 12px; }

/* ---------- Į viršų ---------- */
.totop {
  position: fixed;
  right: 20px; bottom: 22px;
  z-index: 75;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(22,22,27,.9);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(12px);
  transition: opacity .3s var(--ease), visibility .3s var(--ease), transform .3s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { border-color: rgba(225,6,0,.5); background: rgba(225,6,0,.18); }
.totop svg { width: 18px; height: 18px; }

/* ---------- Turinio puslapis (informacija) ---------- */
.page-hero {
  padding: clamp(44px, 7vw, 76px) 0 clamp(24px, 4vw, 40px);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -240px; left: 50%; transform: translateX(-50%);
  width: 760px; height: 460px;
  background: radial-gradient(circle, rgba(225,6,0,.3), transparent 66%);
  pointer-events: none;
}
.page-hero h1 { font-size: clamp(2rem, 5.4vw, 3.2rem); font-weight: 900; position: relative; }
.page-hero p { margin-top: 14px; color: var(--muted); position: relative; max-width: 60ch; }
.crumbs { font-size: .8125rem; color: var(--muted-2); margin-bottom: 14px; position: relative; }
.crumbs a:hover { color: var(--red-hot); }

.doc {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
}
.doc__nav {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 4px;
}
.doc__nav a {
  padding: 10px 14px;
  border-radius: 11px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.doc__nav a:hover, .doc__nav a.is-active { color: #fff; background: rgba(255,255,255,.06); }

.prose { max-width: 78ch; }
.prose h2 {
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin: 44px 0 14px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin: 26px 0 10px; color: #fff; }
.prose p, .prose li { color: var(--muted); font-size: .975rem; line-height: 1.75; }
.prose strong { color: #fff; }
.prose ul, .prose ol { padding-left: 20px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--red-hot); text-decoration: underline; text-underline-offset: 3px; }

.callout {
  border: 1px solid rgba(225,6,0,.32);
  background: linear-gradient(135deg, rgba(225,6,0,.12), rgba(225,6,0,.03));
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 22px 0;
}
.callout p { color: #f3d9d6; }

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin: 24px 0 8px;
}
.fact {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 0;
}
.fact dt { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.fact dd { margin: 6px 0 0; font-weight: 700; color: #fff; font-size: 1.02rem; }

/* ==========================================================================
   Adaptyvumas
   ========================================================================== */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .doc { grid-template-columns: 1fr; }
  .doc__nav {
    position: static;
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
    mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 28px), transparent 100%);
  }
  .doc__nav::-webkit-scrollbar { display: none; }
  .doc__nav a { border: 1px solid var(--line); border-radius: var(--radius-pill); white-space: nowrap; }
}

@media (max-width: 960px) {
  .mainnav { display: none; }
  .burger { display: flex; }
  .header__cta .btn--ghost { display: none; }
  .promo { grid-template-columns: 1fr; }
  .bar { grid-template-columns: 1fr; }
  .menubar__inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .search { width: 100%; }
  .menu-section { scroll-margin-top: calc(var(--header-h) + 132px); }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .topbar { display: none; }
  .brand img { height: 38px; }
  .wrap { padding-inline: 16px; }

  .hero { padding-top: 40px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1 1 100%; }

  .grid { grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 12px; }
  .card__media { aspect-ratio: 1 / 1; }
  .card__body { padding: 12px 13px 14px; gap: 7px; }
  .card__title { font-size: .925rem; }
  .card__desc { font-size: .78rem; line-height: 1.45; }
  .price { padding: 5px 9px; font-size: .72rem; border-radius: 9px; }
  .price .val { font-size: .84rem; }
  .card__note { font-size: .66rem; }
  .badge { font-size: .6rem; padding: 4px 8px; top: 8px; left: 8px; }

  .menu-section__head { margin-bottom: 16px; padding-bottom: 12px; }
  .menu-section__head .note { margin-left: 0; flex-basis: 100%; }

  .callbar { display: flex; }
  .totop { display: none; }
  .site-footer { padding-bottom: 92px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 26px; }
  .footer-bottom { justify-content: center; text-align: center; }

  .promo__card { padding: 20px; }
  .info-card { padding: 20px; }
}

@media (max-width: 430px) {
  .header__cta .btn--primary { padding: 11px 13px; }
  .phone-text { display: none; }
  .btn svg { width: 20px; height: 20px; }
}

@media (max-width: 380px) {
  .grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card__title { font-size: .86rem; }
  .callbar .btn { font-size: .875rem; }
}

@media print {
  .site-header, .menubar, .callbar, .totop, .hero__actions, .socials, .drawer { display: none !important; }
  body { background: #fff; color: #000; }
  .card { break-inside: avoid; border-color: #ccc; }
}
