/* ===== אצל צ'יקו — RTL Full Design ===== */

:root {
  --amber: #f5a623;
  --amber-dark: #c4830e;
  --amber-glow: rgba(245, 166, 35, 0.4);
  --red: #c0392b;
  --bg: #111010;
  --bg2: #181514;
  --bg3: #1e1a18;
  --card: #231f1c;
  --card2: #2a2420;
  --border: rgba(255,255,255,0.07);
  --border-amber: rgba(245,166,35,0.3);
  --text: #f2ece3;
  --text-muted: #9e968d;
  --text-dim: #6b6560;
  --display: "Frank Ruhl Libre", Georgia, serif;
  --body: "Heebo", system-ui, sans-serif;
  --ease: cubic-bezier(0.16,1,0.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: var(--amber); text-decoration: none; }
a:hover { color: #ffd06a; }

/* SEO text — hidden visually, readable by crawlers */
.seo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ===== NOISE OVERLAY ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: linear-gradient(to bottom, rgba(17,16,16,0.97) 80%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.logo span { color: var(--amber); }

/* ---- Desktop nav ---- */
.nav-desktop {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color .2s, background .2s;
  text-decoration: none;
}
.nav-desktop a:hover { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--amber) !important;
  color: #1a0e00 !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 0.55rem 1.4rem !important;
  box-shadow: 0 4px 20px var(--amber-glow);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px var(--amber-glow); background: #ffbe40 !important; }

/* ---- Hamburger ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle-bar { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---- Backdrop ---- */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 400;
}
.nav-backdrop.is-open { display: block; }

/* ---- Mobile Drawer ---- */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; bottom: 0;
  right: 0;
  width: min(280px, 85vw);
  background: #1a1612;
  border-left: 1px solid rgba(245,166,35,0.25);
  box-shadow: -16px 0 60px rgba(0,0,0,0.7);
  z-index: 500;
  flex-direction: column;
  overflow-y: auto;
}
.nav-drawer.is-open {
  display: flex;
  animation: drawerIn .3s cubic-bezier(0.16,1,0.3,1);
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-drawer-logo {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}
.nav-drawer-logo span { color: var(--amber); }
.nav-close {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 1rem;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
}
.nav-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.nav-drawer-list {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  flex: 1;
}
.nav-drawer-list li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.nav-drawer-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.nav-drawer-list a:hover { background: rgba(255,255,255,0.05); color: var(--text); }

.nav-drawer-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 1.25rem 1.5rem;
  padding: 0.9rem;
  background: var(--amber);
  color: #1a0800;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 20px var(--amber-glow);
}

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background: #0e0c0a;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #b83a1a 0%, transparent 70%);
  top: -20%; left: -10%;
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f5a623 0%, transparent 70%);
  bottom: -15%; left: 20%;
  animation: orb-drift 14s ease-in-out infinite alternate-reverse;
}
.hero-orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #6b2d0e 0%, transparent 70%);
  top: 10%; right: 5%;
  animation: orb-drift 20s ease-in-out infinite alternate;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.12); }
}

/* Giant watermark */
.hero-watermark {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(120px, 22vw, 280px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,166,35,0.08);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Two-column body */
.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 2rem 3rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 70px);
}

/* Left decorative plate */
.hero-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
}

.hero-plate {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-plate-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(245,166,35,0.18);
  animation: spin-slow linear infinite;
}
.hero-plate-ring-1 { animation-duration: 30s; }
.hero-plate-ring-2 {
  inset: 25px;
  border-color: rgba(245,166,35,0.1);
  animation-duration: 22s;
  animation-direction: reverse;
}
.hero-plate-ring-3 {
  inset: 55px;
  border-color: rgba(200,80,30,0.2);
  animation-duration: 16s;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-plate-center {
  width: 140px; height: 140px;
  background: radial-gradient(circle at 40% 35%, #3a1a08, #1a0c04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 1px rgba(245,166,35,0.25),
    0 0 60px rgba(200,80,20,0.4),
    inset 0 1px 0 rgba(255,200,100,0.1);
}

.hero-flame { font-size: 4rem; animation: flame-flicker 3s ease-in-out infinite; }
@keyframes flame-flicker {
  0%,100% { transform: scale(1) rotate(-3deg); }
  33%      { transform: scale(1.08) rotate(2deg); }
  66%      { transform: scale(0.95) rotate(-1deg); }
}

/* Floating food icons */
.hero-items-float { position: absolute; inset: 0; pointer-events: none; }
.hif {
  position: absolute;
  font-size: 2.2rem;
  animation: float-icon 5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.hif-1 { top: 5%;  right: 10%; animation-delay: 0s;    animation-duration: 6s; }
.hif-2 { top: 15%; left: 5%;  animation-delay: 1.2s;  animation-duration: 5s; }
.hif-3 { bottom: 10%; right: 5%;  animation-delay: 0.6s;  animation-duration: 7s; }
.hif-4 { bottom: 18%; left: 10%; animation-delay: 2s;    animation-duration: 4.5s; }

@keyframes float-icon {
  0%,100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-14px) rotate(5deg); }
}

/* Right text content */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero-tag-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.hero-dot-live {
  width: 9px; height: 9px;
  background: #4caf50;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(76,175,80,0.7);
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%,100% { box-shadow: 0 0 6px rgba(76,175,80,0.6); }
  50%      { box-shadow: 0 0 16px rgba(76,175,80,0.9); }
}
.hero-tag-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.hero-title-line1 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 400;
  color: rgba(242,236,227,0.6);
  letter-spacing: -0.02em;
}
.hero-title-line2 {
  font-family: var(--display);
  font-size: clamp(5rem, 11vw, 9.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 30%, #f5a623 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-chips span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, #f5a623, #d4820c);
  color: #1a0800;
  box-shadow: 0 6px 28px rgba(245,166,35,0.4);
  font-size: 1rem;
  padding: 0.9rem 2rem;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(245,166,35,0.55); color: #1a0800; }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-size: 1rem;
  padding: 0.9rem 2rem;
}
.btn-outline:hover { border-color: var(--amber); color: var(--amber); }

.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 1rem;
  padding: 0.9rem 2rem;
}
.btn-ghost:hover { background: rgba(255,255,255,0.13); color: var(--amber); border-color: var(--border-amber); }

.btn-lg { font-size: 1.05rem; padding: 1rem 2.2rem; }
.btn-block { width: 100%; }

/* Stats row under CTAs */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hsr-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.hsr-item strong {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
}
.hsr-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hsr-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

@media (max-width: 900px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem 3rem;
    min-height: auto;
    padding-top: 3rem;
  }
  .hero-left { height: 280px; }
  .hero-plate { width: 200px; height: 200px; }
  .hero-plate-center { width: 95px; height: 95px; }
  .hero-flame { font-size: 2.8rem; }
  .hero-right { align-items: center; text-align: center; }
  .hero-title { align-items: center; }
  .hero-chips { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-stats-row { justify-content: center; }
  .hero-tag-row { justify-content: center; }
  .hero-tagline { text-align: center; }
}

/* ===== SHARED SECTION STYLES ===== */
.section { padding: 6rem 2rem; position: relative; overflow: hidden; }
.section-inner { max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }

/* Watermark base */
.section::before {
  content: attr(data-wm);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,166,35,0.18);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
  line-height: 1;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 55ch;
}

/* ===== DIVIDER ===== */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
  margin: 0;
}

/* ===== HIGHLIGHTS BAND ===== */
.highlights {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.highlights-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.hl-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--bg2);
}
.hl-card + .hl-card { border-inline-start: 1px solid var(--border); }
.hl-icon {
  font-size: 2.4rem;
  line-height: 1;
  flex-shrink: 0;
}
.hl-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.2rem;
}
.hl-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ===== MENU SECTION ===== */
.menu-section { background: var(--bg); }

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: transform .25s var(--ease), border-color .25s, box-shadow .25s var(--ease);
  overflow: hidden;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-amber);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1);
}
.menu-card:hover::before { opacity: 1; }

.menu-card.is-featured {
  border-color: rgba(245,166,35,0.35);
  background: linear-gradient(145deg, #2a2218 0%, var(--card) 100%);
}

.badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--amber);
  color: #1a0e00;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.menu-emoji {
  font-size: 2.8rem;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.menu-card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.menu-card-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.menu-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}

.menu-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== SIDES ===== */
.sides-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.side-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color .2s, transform .2s var(--ease);
}
.side-card:hover { border-color: var(--border-amber); transform: translateY(-4px); }
.side-emoji { font-size: 3.5rem; margin-bottom: 1.25rem; display: block; }
.side-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.side-desc { color: var(--text-muted); font-size: 0.95rem; }

/* ===== DRINKS ===== */
.drinks-section { background: var(--bg); }

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.drink-cat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .2s;
}
.drink-cat.is-open { border-color: var(--border-amber); }

.drink-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-family: var(--body);
  text-align: right;
}
.drink-cat-btn:hover { background: rgba(255,255,255,0.03); }

.drink-cat-left { display: flex; align-items: center; gap: 0.75rem; }
.drink-cat-emoji { font-size: 1.5rem; }
.drink-cat-name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}
.drink-cat-pill {
  background: var(--amber);
  color: #1a0e00;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.drink-arrow {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: transform .25s var(--ease);
}
.drink-cat.is-open .drink-arrow { transform: rotate(180deg); color: var(--amber); }

.drink-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1rem;
  padding: 0 1.5rem 1.5rem;
}
.drink-items[hidden] { display: none; }
.drink-items li {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
}

/* ===== ORDERING PLATFORMS ===== */
.platforms-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}

.platforms-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.platforms-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.platforms-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  white-space: nowrap;
}

.platforms-list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.platform-link {
  display: inline-block;
  transition: transform .2s var(--ease), opacity .2s;
  border-radius: 8px;
  overflow: hidden;
}
.platform-link:hover { transform: translateY(-3px) scale(1.04); opacity: 0.88; }

.platform-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ===== WHY US ===== */
.why-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .why-layout { grid-template-columns: 1fr; gap: 2.5rem; }
}

.why-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 1.25rem 0 2rem;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.why-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--amber);
  flex-shrink: 0;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.why-stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  transition: border-color .2s, transform .2s var(--ease);
}
.why-stat-card:hover { border-color: var(--border-amber); transform: translateY(-3px); }
.why-stat-card-amber { border-color: rgba(245,166,35,0.2); background: rgba(245,166,35,0.04); }

.why-stat-num { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.why-stat-card h3 { font-family: var(--display); font-size: 1.05rem; color: #fff; margin-bottom: 0.4rem; }
.why-stat-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--bg); }

.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.reviews-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
}

.reviews-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.reviews-score { font-family: var(--display); font-size: 1.3rem; font-weight: 700; color: #fff; }
.reviews-source { font-size: 0.8rem; color: var(--text-muted); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-head { flex-direction: column; align-items: flex-start; }
}

.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .2s, transform .2s var(--ease);
}
.review-card:hover { border-color: var(--border-amber); transform: translateY(-4px); }

.review-stars { color: var(--amber); font-size: 1rem; letter-spacing: 2px; }
.review-text { color: var(--text-muted); font-size: 0.97rem; line-height: 1.7; flex: 1; font-style: italic; }

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--amber-dark), var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.review-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.review-author span { font-size: 0.78rem; color: var(--text-dim); }

/* ===== CONTACT ===== */
.contact-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
}
.info-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.info-card-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.info-card-main {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}
.info-card-main a { color: #fff; }
.info-card-main a:hover { color: var(--amber); }
.info-card-note { color: var(--text-muted); font-size: 0.9rem; }

.hours-rows { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.92rem; }
.hours-row .day { color: #fff; font-weight: 600; }
.hours-row .time { color: var(--text-muted); }

/* ===== DELIVERY ===== */
.delivery-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.delivery-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (max-width: 1024px) {
  .delivery-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .delivery-cards { grid-template-columns: 1fr; }
  .delivery-top { flex-direction: column; align-items: stretch; gap: 1rem; }
  .delivery-top .btn { width: 100%; justify-content: center; }
}

.delivery-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: border-color .2s, transform .25s var(--ease);
}
.delivery-card:hover { border-color: var(--border-amber); transform: translateY(-5px); }
.delivery-card-highlight {
  border-color: rgba(245,166,35,0.3);
  background: linear-gradient(145deg, rgba(245,166,35,0.07) 0%, var(--card) 100%);
}

.delivery-card-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.delivery-card h3 { font-family: var(--display); font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.delivery-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.delivery-cta-strip {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.delivery-cta-text { font-size: 0.97rem; color: var(--text-muted); }
.delivery-cta-text strong { color: var(--text); }

/* ===== KOSHER BADGE ===== */
.kosher-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 0.2rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(242,236,227,0.65);
  letter-spacing: 0.06em;
}

/* ===== OPEN STATUS ===== */
.open-status-card {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}
.is-open-now { background: rgba(76,175,80,0.15); color: #4caf50; border: 1px solid rgba(76,175,80,0.3); }
.is-closed-now { background: rgba(244,67,54,0.12); color: #f44336; border: 1px solid rgba(244,67,54,0.25); }

/* ===== MAP ===== */
.map-wrap {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.map-wrap iframe { display: block; }

/* ===== STICKY BOTTOM BAR ===== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 500;
  background: rgba(15,12,10,0.97);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transform: translateY(100%);
  transition: transform .35s var(--ease);
  padding: 0.65rem 1.5rem;
  /* extra padding so bar doesn't overlap content */
  padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
}
.sticky-bar.is-visible { transform: translateY(0); }

.sticky-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-name { font-family: var(--display); font-size: 1.1rem; font-weight: 700; color: #fff; }
.sticky-status { font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 50px; }
.sticky-open  { background: rgba(76,175,80,0.2);  color: #4caf50; }
.sticky-closed{ background: rgba(244,67,54,0.15); color: #f44336; }

.sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform .2s var(--ease), opacity .2s;
  padding: 0.5rem 1rem;
  gap: 0.4rem;
}
.sticky-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.sticky-btn-phone {
  background: var(--amber);
  color: #1a0800;
}
.sticky-btn-wolt, .sticky-btn-tenbis {
  background: #fff;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(0,0,0,0.08);
}
.sticky-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ===== FLOATING BUTTONS ===== */
.fab-group {
  position: fixed;
  bottom: 5rem;
  left: 1.5rem;
  z-index: 400;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.5); }

.fab-whatsapp {
  background: #25d366;
  color: #fff;
}

.fab-top {
  background: var(--card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .2s var(--ease);
}
.fab-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ===== SCROLL FADE-IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* extra bottom padding on body so sticky bar doesn't cover content */
body { padding-bottom: 70px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0808;
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--amber); }
.footer-meta { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0.5rem; line-height: 1.8; }
.footer-keywords {
  font-size: 0.75rem;
  color: var(--text-dim);
  opacity: 0.5;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.footer-copy { color: var(--text-dim); font-size: 0.82rem; }
.footer-made {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  transition: border-color .2s;
}
.footer-made:hover { border-color: rgba(245,166,35,0.2); }
.footer-made a {
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: text-shadow .2s;
}
.footer-made a:hover {
  color: #ffd06a;
  text-shadow: 0 0 12px rgba(245,166,35,0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .delivery-layout { grid-template-columns: 1fr; }
  .order-box { position: static; }
  .contact-strip { grid-template-columns: 1fr; }
  .sides-grid { grid-template-columns: 1fr; }
  .highlights-inner { grid-template-columns: 1fr; }
  .hl-card + .hl-card { border-inline-start: none; border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-desktop { display: none; }

  .hero-stats { gap: 1.5rem; flex-wrap: wrap; padding: 0 1rem; }
  .menu-grid { grid-template-columns: 1fr; }
  .drinks-grid { grid-template-columns: 1fr; }
  .section { padding: 4rem 1.25rem; }
  .highlights { padding: 1.5rem 1.25rem; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .delivery-top { flex-direction: column; align-items: stretch; gap: 1rem; }
  .delivery-top .btn { width: 100%; justify-content: center; }
  .platforms-inner { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .platforms-note { display: none; }
  .sticky-bar-inner { flex-wrap: wrap; gap: 0.5rem; }
  .sticky-name { font-size: 0.95rem; }
  .fab-group { bottom: 5.5rem; left: 1rem; }
}

@media (max-width: 480px) {
  .hero-title-line2 { font-size: clamp(3.5rem, 18vw, 5.5rem); }
  .hero-title-line1 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-tagline { font-size: 0.97rem; }
  .hero-chips span { font-size: 0.82rem; padding: 0.3rem 0.7rem; }
  .btn-lg { font-size: 0.95rem; padding: 0.85rem 1.6rem; }
  .hsr-item strong { font-size: 1.6rem; }
  .why-cards { grid-template-columns: 1fr; }
  .delivery-cards { grid-template-columns: 1fr; }
  .section-heading { font-size: clamp(1.6rem, 7vw, 2rem); }
  .sticky-bar-actions { gap: 0.4rem; }
  .sticky-btn-phone { font-size: 0.82rem; padding: 0.45rem 0.75rem; }
  .sticky-logo { height: 20px; }
  .fab { width: 46px; height: 46px; }
  .map-wrap iframe { height: 220px; }
  .info-card { padding: 1.25rem; }
  .review-card { padding: 1.25rem; }
}
