/* ===== DESIGN TOKENS ===== */
:root {
  --blue:        #4DBDE0;
  --blue-dark:   #2E9DBF;
  --blue-light:  #E6F6FC;
  --blue-deep:   #1A7FA0;
  --yellow:      #F5C518;
  --yellow-dark: #D4A80E;
  --yellow-light:#FEF6D5;
  --red:         #D93949;
  --white:       #FFFFFF;
  --off-white:   #F7F9FB;
  --black:       #0E1820;
  --gray-100:    #F2F5F7;
  --gray-200:    #E4E9ED;
  --gray-400:    #A8B5BE;
  --gray-500:    #6B7785;
  --gray-600:    #5A6B75;
  --gray-800:    #2D3C44;
  --viber:       #7360F2;
  --viber-dark:  #5E4CDB;

  --font: 'Nunito', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 4px rgba(14,24,32,0.07);
  --shadow-md:   0 4px 16px rgba(14,24,32,0.10);
  --shadow-lg:   0 8px 32px rgba(14,24,32,0.13);
  --shadow-blue: 0 6px 24px rgba(77,189,224,0.30);

  --header-h: 58px;
  --bottom-nav-h: 60px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
address { font-style: normal; }

/* bottom nav space on mobile */
@media (max-width: 767px) {
  body { padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px)); }
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(.4,0,.2,1), transform 0.55s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  min-height: 44px;
}
.btn:active { transform: scale(0.96); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 8px 28px rgba(77,189,224,0.42); transform: translateY(-1px); }

.btn-viber {
  background: var(--viber);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(115,96,242,0.30);
}
.btn-viber:hover { background: var(--viber-dark); box-shadow: 0 8px 24px rgba(115,96,242,0.42); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-light); transform: translateY(-1px); }

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 16px rgba(245,197,24,0.35);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-1px); }

.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-sm { padding: 7px 15px; font-size: 13px; min-height: 44px; }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--gray-200);
  box-shadow: 0 1px 8px rgba(14,24,32,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  height: var(--header-h);
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-weight: 900;
  font-size: 20px;
  color: var(--blue-dark);
  flex-shrink: 0;
}
.header-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.header-logo-text { letter-spacing: -0.5px; }

.header-nav {
  display: none;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  min-height: 44px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-800);
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover, .nav-link.active { background: var(--blue-light); color: var(--blue-dark); }

.header-cta { margin-left: auto; }

/* on mobile, hide the Viber icon inside the header CTA to keep it compact */
@media (max-width: 479px) {
  .header-cta svg { display: none; }
}

/* desktop lang switcher in header */
.header-lang-switcher {
  display: none;
  gap: 4px;
  align-items: center;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
  .header-cta { margin-left: 0; }
  .header-lang-switcher { display: flex; }
}

/* ===== BOTTOM NAV (mobile only) ===== */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1.5px solid var(--gray-200);
  box-shadow: 0 -4px 24px rgba(14,24,32,0.08);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}
.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 0;
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-400);
  transition: color 0.15s;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.bottom-nav-item:active { transform: scale(0.92); }
.bottom-nav-item.active { color: var(--blue-dark); }
.bottom-nav-item svg { width: 20px; height: 20px; transition: transform 0.15s; }
.bottom-nav-item.active svg { transform: scale(1.15); }
.bottom-nav-item span { font-size: 9px; }
@media (min-width: 768px) { .bottom-nav { display: none; } }

/* ===== HEADER BURGER (mobile only) ===== */
.header-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  transition: background 0.15s;
}
.header-burger:hover { background: var(--gray-100); }
.header-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1), opacity 0.2s;
  transform-origin: center;
}
.header-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .header-burger { display: none; } }

/* ===== OFF-CANVAS DRAWER ===== */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  height: 100dvh;
  z-index: 600;
  background: var(--white);
  box-shadow: -8px 0 48px rgba(14,24,32,0.18);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.nav-drawer.open { transform: translateX(0); }
@media (min-width: 768px) { .nav-drawer { display: none; } }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 599;
  background: rgba(14,24,32,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(2px);
}
.nav-backdrop.open { opacity: 1; pointer-events: all; }

/* lock body scroll when drawer open */
body.nav-open { overflow: hidden; }

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--gray-200);
  flex-shrink: 0;
}
.nav-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue-dark);
}
.nav-drawer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  transition: background 0.15s, color 0.15s;
}
.nav-drawer-close:hover { background: var(--gray-100); color: var(--black); }

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  flex-shrink: 0;
}
.nav-drawer-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  transition: background 0.15s, color 0.15s;
  min-height: 48px;
}
.nav-drawer-link:hover { background: var(--blue-light); color: var(--blue-dark); }
.nav-drawer-link.active { background: var(--blue-light); color: var(--blue-dark); }
.nav-drawer-link svg { flex-shrink: 0; color: var(--gray-400); }
.nav-drawer-link.active svg { color: var(--blue-dark); }

.nav-drawer-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 4px 20px;
  flex-shrink: 0;
}

.nav-drawer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 32px;
  flex: 1;
}
.nav-drawer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 900;
  color: var(--blue-dark);
  padding: 8px 0;
}
.nav-drawer-phone svg { color: var(--gray-400); flex-shrink: 0; }
.nav-drawer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.nav-drawer-meta svg { flex-shrink: 0; color: var(--gray-400); }

/* language switcher */
.nav-lang-switcher {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
}
.lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
  min-height: 44px;
  min-width: 44px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--gray-600);
  background: var(--gray-100);
  transition: background 0.15s, color 0.15s;
}
.lang-pill--active {
  background: var(--blue);
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0e2535 0%, #1a4a60 50%, #0a1e2c 100%);
}
@media (min-width: 768px) {
  .hero { min-height: 88vh; }
}

/* hero-bg.jpg placeholder — add the file to static/img/ to enable a photo background */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px) brightness(0.45);
  transform: scale(1.06);
  transition: opacity 0.6s;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,25,40,0.72) 0%,
    rgba(26,63,80,0.55) 50%,
    rgba(10,20,30,0.70) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px 0 56px;
}
@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr auto; gap: 48px; padding: 80px 0 88px; }
}

/* hero text */
.hero-title {
  font-size: clamp(44px, 13vw, 92px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--white);
  animation: heroUp 0.7s cubic-bezier(.4,0,.2,1) both;
  text-align: center;
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-top: 12px;
  line-height: 1.55;
  animation: heroUp 0.7s 0.12s cubic-bezier(.4,0,.2,1) both;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  animation: heroUp 0.7s 0.24s cubic-bezier(.4,0,.2,1) both;
}
.hero-actions .btn { width: 100%; justify-content: center; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
  animation: heroUp 0.7s 0.36s cubic-bezier(.4,0,.2,1) both;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .hero-title { text-align: left; }
  .hero-subtitle { text-align: left; max-width: 420px; font-size: 18px; }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; }
  .hero-badges { justify-content: flex-start; }
}

/* hero logo bubble */
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  order: -1;
  animation: heroUp 0.7s 0.2s cubic-bezier(.4,0,.2,1) both;
}
.hero-logo-bubble {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.30);
  box-shadow:
    0 0 0 10px rgba(77,189,224,0.12),
    0 0 0 20px rgba(77,189,224,0.05),
    0 12px 48px rgba(0,0,0,0.4);
}
.hero-logo-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 768px) {
  .hero-logo-wrap { order: 0; }
  .hero-logo-bubble { width: 240px; height: 240px; }
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS ===== */
.section { padding: 48px 0; }
.section-title {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  color: var(--black);
}
.section-cta { margin-top: 28px; text-align: center; }

/* ===== HOW TO ORDER ===== */
.order-strip { background: var(--off-white); }
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) { .steps-row { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; } }

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.step-icon {
  width: 46px;
  height: 46px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.step-label { font-size: 13px; color: var(--gray-600); font-weight: 600; margin-bottom: 3px; }
.step-value { display: flex; align-items: center; min-height: 44px; font-size: 16px; font-weight: 800; color: var(--blue-dark); }
.step-arrow { display: none; color: var(--gray-400); justify-content: center; }
@media (min-width: 600px) { .step-arrow { display: flex; } }

/* ===== HIGHLIGHTS ===== */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.highlight-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.highlight-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.highlight-name { font-size: 16px; font-weight: 800; color: var(--black); }
.highlight-desc { font-size: 13px; color: var(--gray-600); margin-top: 3px; font-weight: 600; line-height: 1.4; }
.highlight-price { font-size: 20px; font-weight: 900; color: var(--blue-dark); }

/* ===== INFO STRIP ===== */
.info-strip { background: var(--blue-deep); color: var(--white); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  background: rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1.5px solid rgba(255,255,255,0.13);
  transition: background 0.2s;
}
.info-card:hover { background: rgba(255,255,255,0.13); }
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.info-title { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.info-list { display: flex; flex-direction: column; gap: 5px; }
.info-list li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.info-list span { opacity: 0.72; }
.info-text { font-size: 14px; font-weight: 600; line-height: 1.6; opacity: 0.88; margin-bottom: 12px; }
.info-link { display: inline-flex; align-items: center; min-height: 44px; font-size: 13px; font-weight: 700; color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.info-phone { display: flex; align-items: center; min-height: 44px; font-size: 21px; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.info-viber-btn { margin-top: 4px; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
}
.page-hero-title {
  font-size: clamp(34px, 7vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
}
.page-hero-subtitle {
  font-size: 17px;
  font-weight: 600;
  margin-top: 8px;
  opacity: 0.82;
}

/* ===== MENU PAGE ===== */
.menu-page-header {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 32px 0 40px;
}
.menu-page-title {
  font-size: clamp(32px, 7vw, 50px);
  font-weight: 900;
  letter-spacing: -1px;
}
.menu-page-subtitle {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.78;
  margin-top: 6px;
  margin-bottom: 18px;
}

/* TABS */
.menu-tabs-wrap {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: var(--white);
  border-bottom: 2px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(14,24,32,0.05);
}
.menu-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-tabs::-webkit-scrollbar { display: none; }
.menu-tab {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-600);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  min-height: 38px;
}
.menu-tab:hover { background: var(--blue-light); color: var(--blue-dark); }
.menu-tab.active { background: var(--blue); color: var(--white); }

/* MENU CONTENT */
.menu-content {
  padding-top: 24px;
  padding-bottom: 40px;
  background: #f2f2f7;
}
.menu-category { margin-bottom: 32px; }

.menu-items-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}
@media (min-width: 600px) {
  .menu-items-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.menu-group-header {
  grid-column: 1 / -1;
  padding: 6px 4px 2px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 1.5px solid var(--gray-200);
  margin-top: 8px;
}
.menu-group-header:first-child { margin-top: 0; }

.menu-bottom-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.menu-bottom-cta p { font-size: 17px; font-weight: 800; color: var(--black); }
@media (min-width: 600px) { .menu-bottom-cta { flex-direction: row; justify-content: center; } }

/* menu header actions row */
.menu-header-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
@media (min-width: 480px) {
  .menu-header-actions { grid-template-columns: auto auto; width: fit-content; }
}
.menu-header-actions .btn { justify-content: center; }
.btn-menu-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  border: 1.5px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
  min-height: 44px;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-menu-call:hover { background: rgba(255,255,255,0.22); }

/* category header */
.menu-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  padding: 0 2px;
}
.menu-category-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.4px;
  color: var(--black);
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-category-en { display: none; }
.menu-category-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-400);
  background: rgba(0,0,0,0.07);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
}

/* menu items — individual cards */
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  transition: background 0.12s, box-shadow 0.15s, border-color 0.15s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.menu-item:active {
  background: #f7f9ff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
@media (hover: hover) {
  .menu-item:hover {
    background: #f7f9ff;
    box-shadow: 0 4px 14px rgba(77,189,224,0.14);
    border-color: rgba(77,189,224,0.3);
  }
  .menu-item:hover .menu-item-arrow { transform: translateX(3px); color: var(--blue); }
}

/* popular items — warm golden tint */
.menu-item--highlight {
  background: #fffdf5;
  border-color: rgba(212,168,14,0.22);
}
.menu-item--highlight:active { background: #fffcee; }
@media (hover: hover) {
  .menu-item--highlight:hover {
    background: #fffdf5;
    box-shadow: 0 4px 14px rgba(212,168,14,0.18);
    border-color: rgba(212,168,14,0.4);
  }
}

.menu-item-body { flex: 1; min-width: 0; }
.menu-item-name-row { display: flex; align-items: center; gap: 6px; }
.menu-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-item-star { font-size: 12px; flex-shrink: 0; }
.menu-item-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-500, #6b7280);
  margin-top: 3px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-item-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.menu-item-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--blue-deep);
  white-space: nowrap;
}
.menu-item--highlight .menu-item-price { color: #b06a00; }
.menu-item-price--from {
  font-size: 11px;
  white-space: nowrap;
  color: var(--gray-500);
  font-weight: 700;
}
.menu-item-arrow {
  color: rgba(0,0,0,0.22);
  transition: transform 0.15s, color 0.15s;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

/* ===== ITEM DETAIL PAGE ===== */
.item-back-bar {
  background: var(--white);
  border-bottom: 1.5px solid var(--gray-200);
  padding: 10px 0;
}
.item-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-dark);
  transition: gap 0.15s;
}
.item-back-link:hover { gap: 2px; }

.item-hero { background: var(--gray-100); }
.item-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  max-height: 380px;
  overflow: hidden;
}
@media (min-width: 768px) { .item-photo { aspect-ratio: 21/9; } }

.item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.item-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue-light) 0%, #d4f0f8 100%);
  min-height: 220px;
}
.item-photo-icon { font-size: 5rem; line-height: 1; }
.item-photo-hint { font-size: 13px; font-weight: 600; color: var(--gray-400); }
.item-badge-hit {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.item-layout {
  padding-top: 28px;
  padding-bottom: 72px;
}
.item-main { max-width: 640px; }

.item-cat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--blue-dark);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}
.item-title {
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 12px;
}
.item-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.item-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--blue-dark);
  letter-spacing: -1px;
}
.item-popular-tag {
  font-size: 12px;
  font-weight: 800;
  color: var(--gray-800);
  background: var(--yellow);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}
.item-desc {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}
.item-ingredients-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.item-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}
.item-chip {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-800);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* pizza size selector */
.item-sizes { margin-bottom: 24px; }
.item-sizes-label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.item-sizes-buttons { display: flex; gap: 10px; }
.size-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 8px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.size-btn:active { transform: scale(0.97); }
.size-btn--active {
  border-color: var(--blue);
  background: var(--blue-light);
  box-shadow: 0 2px 12px rgba(77,189,224,0.18);
}
.size-btn-label {
  font-size: 22px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.size-btn-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.size-btn-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--gray-600);
  margin-top: 4px;
}
.size-btn--active .size-btn-label { color: var(--blue-dark); }
.size-btn--active .size-btn-price { color: var(--blue-dark); }

/* "od €X" in menu list */
.menu-item-price--from {
  font-size: 11px;
  white-space: nowrap;
  color: var(--gray-500);
  font-weight: 700;
}

.item-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.item-cta-primary { flex: 1; min-width: 200px; justify-content: center; }
.item-hours-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  margin-top: 8px;
}

/* related items */
.item-related { background: var(--off-white); }
.item-related-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.item-related-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.item-related-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.item-related-card--hl { border-color: var(--yellow); background: #fffbe6; }
.item-related-info { flex: 1; min-width: 0; }
.item-related-name { display: block; font-size: 14px; font-weight: 800; color: var(--black); }
.item-related-desc { display: block; font-size: 12px; font-weight: 600; color: var(--gray-600); margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-related-price { font-size: 15px; font-weight: 900; color: var(--blue-dark); flex-shrink: 0; }
.item-related-card svg { color: var(--gray-400); flex-shrink: 0; transition: transform 0.15s; }
.item-related-card:hover svg { transform: translateX(3px); }

@media (min-width: 640px) {
  .item-related-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
}

/* ===== DELIVERY PAGE ===== */
.delivery-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 600px) { .delivery-cards { grid-template-columns: repeat(3, 1fr); } }

.delivery-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 26px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.delivery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.delivery-card--primary { border-color: var(--viber); background: linear-gradient(135deg, #f0edff 0%, var(--white) 100%); }
.delivery-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--blue-dark);
}
.delivery-card--primary .delivery-card-icon { background: #ede9fd; color: var(--viber); }
.delivery-card-title { font-size: 19px; font-weight: 900; margin-bottom: 8px; }
.delivery-card-text { font-size: 14px; font-weight: 600; color: var(--gray-600); margin-bottom: 18px; }

.delivery-steps { display: flex; flex-direction: column; gap: 0; }
.delivery-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.delivery-step:last-child { border-bottom: none; }
.delivery-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.delivery-step-content strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 4px; }
.delivery-step-content p { font-size: 14px; font-weight: 600; color: var(--gray-600); }
.delivery-step-content a { color: var(--blue-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* dostava bottom CTA */
.dostava-how { margin-top: 16px; }
.dostava-cta {
  margin-top: 48px;
  padding: 32px 28px;
  background: var(--off-white);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--gray-200);
  text-align: center;
}
.dostava-cta p { font-size: 17px; font-weight: 700; color: var(--gray-600); margin-bottom: 16px; }
.dostava-cta p strong { color: var(--black); }
.dostava-cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

/* ===== CONTACT PAGE ===== */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 40px 0 72px;
}
@media (min-width: 900px) { .kontakt-layout { grid-template-columns: 360px 1fr; } }

.kontakt-info { display: flex; flex-direction: column; gap: 14px; }
.kontakt-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: border-color 0.2s;
}
.kontakt-card:hover { border-color: var(--blue-dark); }
.kontakt-section-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.kontakt-address { font-size: 16px; font-weight: 700; line-height: 1.6; margin-bottom: 14px; }
.kontakt-phone { display: block; font-size: 22px; font-weight: 900; color: var(--blue-dark); margin-bottom: 12px; }
.kontakt-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  transition: color 0.15s;
}
.kontakt-social-link:hover { color: var(--blue-dark); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--gray-100); }
.hours-table td:last-child { text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }

.kontakt-map { border-radius: var(--radius-lg); overflow: hidden; border: 1.5px solid var(--gray-200); min-height: 360px; }
.kontakt-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; }

/* ===== GALLERY PAGE ===== */
.gallery-page { padding: 36px 0 72px; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.gallery-filter {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.gallery-filter:hover { background: var(--blue-light); color: var(--blue-dark); }
.gallery-filter.active { background: var(--blue); color: var(--white); border-color: var(--blue); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
  background: var(--gray-100);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); z-index: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* placeholder card shown before real photos */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ph-bg, var(--blue-light));
  color: var(--ph-color, var(--blue-dark));
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  line-height: 1.3;
  transition: opacity 0.2s;
}
.gallery-placeholder-icon { font-size: 2.2rem; line-height: 1; }
.gallery-placeholder-label { font-size: 12px; font-weight: 700; opacity: 0.7; }
.gallery-item:hover .gallery-placeholder { opacity: 0.85; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,25,40,0);
  display: flex;
  align-items: flex-end;
  padding: 12px;
  transition: background 0.2s;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(10,25,40,0.45); }
.gallery-item-caption {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: translateY(0); }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8,18,26,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 16px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  position: relative;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
}
.lightbox-placeholder {
  width: 70vw;
  max-width: 600px;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-weight: 700;
  color: white;
  font-size: 1.1rem;
}
.lightbox-placeholder-icon { font-size: 4rem; }

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.15s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 10000;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 700;
  z-index: 10000;
  text-align: center;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { display: flex; flex-direction: column; gap: 7px; }
.footer-brand-name { font-size: 17px; font-weight: 800; letter-spacing: -0.3px; }
.footer-tagline { font-size: 13px; font-weight: 600; opacity: 0.55; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { display: inline-flex; align-items: center; min-height: 44px; font-size: 14px; font-weight: 700; opacity: 0.7; transition: opacity 0.15s; }
.footer-links a:hover { opacity: 1; }
.footer-contact { display: flex; flex-direction: column; gap: 5px; }
.footer-phone { display: inline-flex; align-items: center; min-height: 44px; font-size: 19px; font-weight: 900; }
.footer-address { font-size: 13px; font-weight: 600; opacity: 0.55; line-height: 1.5; }
.footer-social { display: flex; gap: 8px; align-items: center; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; opacity: 0.6; transition: opacity 0.15s; }
.footer-social a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 14px 0; }
.footer-bottom p { font-size: 12px; font-weight: 600; opacity: 0.35; }

/* ===== MOBILE POLISH ===== */
@media (max-width: 767px) {
  :root { --header-h: 54px; }

  /* ---- Sections ---- */
  .section { padding: 32px 0; }
  .section-title { font-size: 22px; margin-bottom: 18px; }
  .section-cta { margin-top: 20px; }

  /* ---- Highlights grid: 2 cols ---- */
  .highlights-grid { grid-template-columns: 1fr 1fr; gap: 9px; }
  .highlight-card { padding: 13px 12px; gap: 8px; }
  .highlight-name { font-size: 13px; }
  .highlight-desc { font-size: 11px; }
  .highlight-price { font-size: 17px; }

  /* ---- Info strip ---- */
  .info-grid { gap: 10px; }
  .info-card { padding: 16px; }
  .info-title { font-size: 14px; margin-bottom: 8px; }
  .info-icon { width: 38px; height: 38px; margin-bottom: 10px; }
  .info-phone { font-size: 18px; }
  .info-text { font-size: 13px; }
  .info-list li { font-size: 13px; }

  /* ---- Order steps: vertical ---- */
  .steps-row { gap: 10px; }
  .step { padding: 16px; }
  .step-icon { width: 40px; height: 40px; margin-bottom: 8px; }
  .step-label { font-size: 12px; }
  .step-value { font-size: 15px; }

  /* ---- Menu page ---- */
  .menu-page-header { padding: 20px 0 22px; }
  .menu-page-title { font-size: 26px; letter-spacing: -0.5px; }
  .menu-page-subtitle { font-size: 12px; margin-bottom: 14px; opacity: 0.75; }
  .menu-header-actions { gap: 8px; margin-top: 14px; }
  .menu-content { padding-top: 16px; padding-bottom: 80px; }
  .menu-category { margin-bottom: 22px; }
  .menu-category-header { margin-bottom: 6px; padding: 0 2px; }
  .menu-category-title { font-size: 15px; letter-spacing: -0.2px; }
  .menu-item { padding: 12px 14px; gap: 10px; }
  .menu-item-name { font-size: 14px; }
  .menu-item-desc { font-size: 11px; }
  .menu-item-price { font-size: 14px; }
  .menu-item-right { gap: 4px; }
  .menu-bottom-cta { padding: 20px 16px; gap: 10px; margin-top: 20px; }
  .menu-bottom-cta p { font-size: 15px; }

  /* ---- Menu tabs ---- */
  .menu-tabs { padding: 5px 0; gap: 2px; }
  .menu-tab { padding: 6px 12px; font-size: 12px; min-height: 32px; }

  /* ---- Item detail page ---- */
  .item-back-bar { padding: 8px 0; }
  .item-back-link { font-size: 13px; }
  .item-photo { max-height: 240px; }
  .item-photo-placeholder { min-height: 160px; }
  .item-photo-icon { font-size: 3.5rem; }
  .item-layout { padding-top: 20px; padding-bottom: 80px; }
  .item-cat-tag { font-size: 11px; margin-bottom: 8px; }
  .item-title { font-size: clamp(26px, 8vw, 40px); margin-bottom: 8px; }
  .item-price { font-size: 28px; }
  .item-price-row { margin-bottom: 14px; gap: 10px; }
  .item-desc { font-size: 15px; margin-bottom: 12px; }
  .item-ingredients { gap: 6px; margin-bottom: 22px; }
  .item-chip { font-size: 12px; padding: 3px 10px; }
  .item-cta { flex-direction: column; }
  .item-cta-primary { flex: none; min-width: unset; width: 100%; }
  .item-hours-note { font-size: 12px; }
  .item-related-grid { gap: 6px; }
  .item-related-card { padding: 11px 12px; }
  .item-related-name { font-size: 13px; }
  .item-related-price { font-size: 14px; }

  /* ---- Delivery ---- */
  .delivery-cards { gap: 12px; margin-bottom: 32px; }
  .delivery-card { padding: 20px 16px; border-radius: var(--radius-lg); }
  .delivery-card-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .delivery-card-title { font-size: 17px; }
  .delivery-card-text { font-size: 13px; margin-bottom: 14px; }
  .delivery-step { padding: 16px 0; gap: 12px; }
  .delivery-step-num { width: 32px; height: 32px; font-size: 14px; }
  .delivery-step-content strong { font-size: 15px; }
  .delivery-step-content p { font-size: 13px; }
  .dostava-cta { padding: 22px 16px; margin-top: 32px; }
  .dostava-cta p { font-size: 15px; margin-bottom: 12px; }

  /* ---- Kontakt ---- */
  .kontakt-layout { gap: 16px; padding: 24px 0 56px; }
  .kontakt-info { gap: 10px; }
  .kontakt-card { padding: 16px; }
  .kontakt-section-title { font-size: 11px; margin-bottom: 8px; }
  .kontakt-address { font-size: 15px; margin-bottom: 12px; }
  .kontakt-phone { font-size: 22px; margin-bottom: 10px; }
  .hours-table td { font-size: 13px; padding: 6px 0; }
  .kontakt-map { min-height: 280px; }
  .kontakt-map iframe { min-height: 280px; }

  /* ---- Page hero ---- */
  .page-hero { padding: 24px 0; }
  .page-hero-title { font-size: 30px; letter-spacing: -0.5px; }
  .page-hero-subtitle { font-size: 14px; margin-top: 6px; }

  /* ---- Gallery ---- */
  .gallery-page { padding: 24px 0 56px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .gallery-filters { gap: 6px; margin-bottom: 18px; }
  .gallery-filter { padding: 6px 12px; font-size: 12px; }
  .gallery-item-caption { font-size: 11px; }

  /* ---- Footer ---- */
  .site-footer { padding-top: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 20px; }
  .footer-phone { font-size: 16px; }
  .footer-address { font-size: 12px; }
  .footer-tagline { font-size: 12px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom p { font-size: 11px; }

  /* ---- Buttons on very small screens ---- */
  .btn-lg { padding: 12px 22px; font-size: 15px; }
}

/* ===== ERROR PAGES ===== */
.error-page { min-height: 60vh; display: flex; align-items: center; padding: 80px 0; }
.error-page .container { text-align: center; }
.error-code {
  font-size: clamp(80px, 20vw, 140px);
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  letter-spacing: -4px;
}
.error-msg { font-size: 20px; font-weight: 700; color: var(--gray-600); margin: 14px 0 28px; }

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}
