/* ============================================================
   פיצה צ'ומה — עיצוב ראשי
   כהה · כתום אש · RTL
   ============================================================ */

:root {
  --bg: #0c0a09;
  --bg-2: #171310;
  --bg-3: #221b15;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f1ea;
  --text-dim: #b3a99c;
  --brand: #fca404;
  --brand-2: #fdc041;
  --brand-deep: #d8831c;
  --whatsapp: #25d366;
  --danger: #ff5a5a;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --header-h: 76px;
  --font-body: "Heebo", system-ui, sans-serif;
  --font-display: "Karantina", "Heebo", sans-serif;
}

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

/* מאפיין hidden תמיד גובר על display של מחלקות */
[hidden] { display: none !important; }

/* קישור דילוג לתוכן — מופיע רק בפוקוס מקלדת */
.skip-link {
  position: fixed;
  top: 8px;
  inset-inline-start: 8px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--brand);
  color: #17110a;
  border-radius: 10px;
  font-weight: 700;
  transform: translateY(-250%);
  transition: transform 0.15s;
}
.skip-link:focus { transform: none; }
main { scroll-margin-top: 80px; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

::selection { background: var(--brand); color: #14100c; }

/* ---------- רקע זוהר ---------- */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 { width: 560px; height: 560px; background: var(--brand); top: -180px; left: -120px; }
.bg-glow-2 { width: 480px; height: 480px; background: #ff5e00; bottom: -160px; right: -140px; }

/* ---------- כפתורים ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #17110a;
  box-shadow: 0 8px 24px rgba(252, 164, 4, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(252, 164, 4, 0.5); transform: translateY(-2px); }
.btn-outline { border: 1.5px solid var(--line); background: var(--surface); color: var(--text); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand-2); }
.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--brand-2); }
.btn-whatsapp { background: var(--whatsapp); color: #06250f; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3); }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45); }
.btn-lg { padding: 14px 28px; font-size: 1.05rem; }
.btn-sm { padding: 7px 14px; font-size: 0.85rem; }

/* ---------- כותרת עליונה ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 90;
  background: rgba(12, 10, 9, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.scrolled { background: rgba(12, 10, 9, 0.92); border-color: var(--line); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 52px; height: 52px; border-radius: 14px; object-fit: cover; box-shadow: 0 4px 14px rgba(0,0,0,.5); }
.brand-name { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--brand-2); letter-spacing: 0.5px; }

.main-nav { display: flex; gap: 22px; font-weight: 500; }
.main-nav a { color: var(--text-dim); transition: color 0.2s; position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.25s;
  border-radius: 2px;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--brand-2); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.open-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
}
.open-badge.open { color: #6ee7a0; border-color: rgba(110, 231, 160, 0.4); }
.open-badge.open::before { content: "● "; }
.open-badge.closed { color: var(--danger); border-color: rgba(255, 90, 90, 0.4); }
.open-badge.closed::before { content: "● "; }

.btn-cart {
  position: relative;
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 1.05rem;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-cart:hover { border-color: var(--brand); }
.btn-cart.bump { animation: bump 0.4s ease; }
@keyframes bump { 30% { transform: scale(1.18); } }
.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand);
  color: #17110a;
  font-size: 0.8rem;
  font-weight: 800;
}

.nav-toggle { display: none; font-size: 1.6rem; color: var(--text); }
.mobile-nav { display: none; }

/* ---------- גיבור ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 20px) 20px 60px;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.15); } }
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(12, 10, 9, 0.55) 65%, var(--bg) 100%),
              linear-gradient(to bottom, rgba(12,10,9,.35), transparent 35%, transparent 70%, var(--bg));
}
.hero-content { max-width: 820px; position: relative; z-index: 1; }
.hero-kicker {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  padding: 7px 18px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand-2);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 15vw, 10rem);
  line-height: 0.9;
  font-weight: 700;
  color: var(--text);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}
.hero-title .stroke {
  color: var(--brand);
  text-shadow: 0 0 42px rgba(252, 164, 4, 0.45);
}
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--brand-2);
  margin-top: 10px;
}
.hero-desc { color: var(--text-dim); font-size: 1.1rem; margin-top: 14px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.6rem;
  color: var(--brand-2);
  animation: float 2s ease-in-out infinite;
}
@keyframes float { 50% { transform: translate(-50%, 8px); } }

/* ---------- פס נע ---------- */
.marquee {
  background: var(--brand);
  color: #17110a;
  overflow: hidden;
  padding: 10px 0;
  font-weight: 800;
  width: calc(100% + 20px);
  margin-inline-start: -10px;
  transform: rotate(-1deg);
  box-shadow: 0 8px 30px rgba(252, 164, 4, 0.25);
}
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { padding-inline-end: 40px; white-space: nowrap; }
@keyframes marquee { to { transform: translateX(50%); } }

/* ---------- מקטעים ---------- */
.section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 90px 20px 30px; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--brand-2);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}
.section-sub { color: var(--text-dim); margin-top: 10px; font-size: 1.05rem; }

/* ---------- מבצעים ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.promo-card {
  position: relative;
  background: linear-gradient(160deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.promo-card:hover { transform: translateY(-8px); border-color: rgba(252, 164, 4, 0.5); box-shadow: var(--shadow); }
.promo-card img { width: 100%; height: 210px; object-fit: cover; }
.promo-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand);
  color: #17110a;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}
.promo-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.promo-body h3 { font-size: 1.25rem; font-weight: 800; }
.promo-note { color: var(--text-dim); font-size: 0.92rem; }
.promo-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.promo-price { font-family: var(--font-display); font-size: 2.2rem; color: var(--brand-2); font-weight: 700; }

/* ---------- טאבים ---------- */
.cat-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 34px;
  position: sticky;
  top: calc(var(--header-h) + 8px);
  z-index: 20;
  padding: 10px;
  background: rgba(12, 10, 9, 0.82);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.cat-tab {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--surface);
  border: 1.5px solid var(--line);
  color: var(--text-dim);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s;
}
.cat-tab:hover { color: var(--text); border-color: rgba(252, 164, 4, 0.5); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #17110a;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(252, 164, 4, 0.35);
}

/* ---------- כרטיסי תפריט ---------- */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.menu-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: cardIn 0.4s ease both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } }
.menu-card:hover { transform: translateY(-5px); border-color: rgba(252, 164, 4, 0.45); box-shadow: var(--shadow); }
.menu-card-img { position: relative; height: 165px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.07); }
.menu-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--brand);
  color: #17110a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.menu-card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.menu-card-name { font-weight: 700; font-size: 1.02rem; line-height: 1.35; flex: 1; }
.menu-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.menu-price { font-family: var(--font-display); font-size: 1.7rem; color: var(--brand-2); font-weight: 700; }
.menu-add {
  background: var(--surface-2);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-weight: 800;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.menu-add:hover { background: var(--brand); color: #17110a; border-color: transparent; }

/* ---------- אודות ---------- */
.about-inner { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
.about-text .section-title { margin-bottom: 18px; }
.about-text p { color: var(--text-dim); margin-bottom: 14px; font-size: 1.03rem; }
.about-stats { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.about-stats li { display: flex; flex-direction: column; }
.about-stats strong { font-family: var(--font-display); font-size: 2.4rem; color: var(--brand); line-height: 1; }
.about-stats span { color: var(--text-dim); font-size: 0.9rem; }
.about-media { position: relative; }
.about-media > img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 4/4.6;
  object-fit: cover;
}
.about-card {
  position: absolute;
  bottom: -20px;
  right: -14px;
  background: rgba(23, 19, 16, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
}
.about-card img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.about-card strong { display: block; }
.about-card span { color: var(--text-dim); font-size: 0.85rem; }

/* ---------- גלריה ---------- */
.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px 4px 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--brand) transparent;
}
.gallery-strip img {
  width: 300px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  scroll-snap-align: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.gallery-strip img:hover { transform: scale(1.04); }
.gallery-strip:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ---------- צור קשר ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s, border-color 0.25s;
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(252, 164, 4, 0.4); }
.contact-emoji { font-size: 2rem; }
.contact-card h3 { font-size: 1.15rem; }
.contact-card p { color: var(--text-dim); }
.contact-phone { font-family: var(--font-display); font-size: 2rem; color: var(--brand-2); direction: ltr; }
.contact-links { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; justify-content: center; }
.contact-note { font-size: 0.88rem; }
.hours-list { color: var(--text-dim); }
.hours-list li { padding: 3px 0; }
.hours-list li.today { color: var(--brand-2); font-weight: 700; }

/* ---------- תחתית ---------- */
.site-footer { border-top: 1px solid var(--line); margin-top: 80px; background: var(--bg-2); position: relative; z-index: 1; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 20px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { border-radius: 14px; }
.footer-brand strong { display: block; font-size: 1.2rem; }
.footer-brand span { color: var(--text-dim); font-size: 0.9rem; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; color: var(--text-dim); }
.footer-nav a:hover { color: var(--brand-2); }
.footer-info { color: var(--text-dim); font-size: 0.95rem; display: flex; flex-direction: column; gap: 6px; }
.footer-info a:hover { color: var(--brand-2); }
.footer-copy { text-align: center; color: var(--text-dim); font-size: 0.85rem; padding: 18px; border-top: 1px solid var(--line); }

/* ---------- פס סל תחתון ---------- */
.cart-bar {
  position: fixed;
  bottom: 14px;
  inset-inline: 14px;
  z-index: 80;
  display: none;
}
.cart-bar-btn { width: 100%; justify-content: space-between; padding: 16px 22px; font-size: 1rem; border-radius: 16px; }
.cart-bar-sep { opacity: 0.5; }
.cart-bar-go { font-size: 0.9rem; }

/* ---------- מגירת סל ---------- */
.drawer-backdrop, .modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 100;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.cart-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(430px, 100vw);
  background: var(--bg-2);
  border-inline-end: 1px solid var(--line);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow);
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.drawer-head h2 { font-size: 1.3rem; }
.drawer-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--danger); color: #fff; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 20px; }

.cart-empty { text-align: center; padding: 60px 10px; color: var(--text-dim); display: flex; flex-direction: column; gap: 12px; align-items: center; }
.cart-empty span { font-size: 3rem; }

.cart-list { display: flex; flex-direction: column; gap: 14px; }
.cart-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: start;
}
.cart-item img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; }
.cart-item-name { font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
.cart-item-tops { color: var(--text-dim); font-size: 0.8rem; margin-top: 4px; line-height: 1.5; }
.cart-item-price { color: var(--brand-2); font-weight: 800; margin-top: 6px; }
.cart-item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.cart-remove { color: var(--text-dim); font-size: 0.85rem; transition: color 0.2s; padding: 8px 10px; margin: -6px -10px -8px 0; }
.cart-remove:hover { color: var(--danger); }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}
.qty-stepper button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  position: relative;
}
/* אזור מגע מורחב בלתי-נראה (44px אפקטיבי) */
.qty-stepper button::before { content: ""; position: absolute; inset: -5px; border-radius: 50%; }
.qty-stepper button:hover { background: var(--brand); color: #17110a; }
.qty-stepper span { min-width: 22px; text-align: center; font-weight: 800; }

.drawer-foot { border-top: 1px solid var(--line); padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); display: flex; flex-direction: column; gap: 12px; }
.cart-total { display: flex; align-items: center; justify-content: space-between; font-size: 1.05rem; }
.cart-total strong { font-family: var(--font-display); font-size: 2.1rem; color: var(--brand-2); }
.cart-error { color: var(--danger); font-size: 0.9rem; font-weight: 600; text-align: center; }
.drawer-foot-btns { display: flex; flex-direction: column; gap: 10px; }
.drawer-foot-btns .btn { width: 100%; }
.send-btns { display: flex; flex-direction: column; gap: 10px; }

/* ---------- שלב פרטים ---------- */
.order-type { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
.order-type-btn {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  transition: all 0.2s;
}
.order-type-btn.active {
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #17110a;
  border-color: transparent;
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field span { font-size: 0.88rem; font-weight: 600; color: var(--text-dim); }
.field input, .field select, .field textarea {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.98rem;
  transition: border-color 0.2s;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field select option { background: var(--bg-2); }
.field.invalid input, .field.invalid select { border-color: var(--danger); }
.pay-note {
  background: rgba(252, 164, 4, 0.08);
  border: 1px solid rgba(252, 164, 4, 0.25);
  color: var(--brand-2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- שלב אישור שליחה ---------- */
.sent-step { text-align: center; padding: 30px 10px; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.sent-emoji { font-size: 3.2rem; }
.sent-step h3 { font-size: 1.35rem; }
.sent-step p { color: var(--text-dim); }
.sent-step strong { color: var(--brand-2); }
.sent-note a { color: var(--brand-2); text-decoration: underline; }
.sent-btns { display: flex; flex-direction: column; gap: 10px; width: 100%; margin-top: 10px; }

/* ---------- מודאל תוספות ---------- */
.topping-modal {
  position: fixed;
  z-index: 110;
  inset-inline: 0;
  bottom: 0;
  margin: 0 auto;
  max-width: 520px;
  max-height: 88svh;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: var(--shadow);
}
@keyframes slideUp { from { transform: translateY(60px); opacity: 0; } }
@media (min-width: 640px) {
  .topping-modal { bottom: auto; top: 50%; transform: translateY(-50%); border-radius: 22px; }
  @keyframes slideUp { from { transform: translateY(calc(-50% + 40px)); opacity: 0; } to { transform: translateY(-50%); } }
}
.modal-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}
.modal-head img { width: 62px; height: 62px; border-radius: 14px; object-fit: cover; }
.modal-head > div { flex: 1; }
.modal-head h3 { font-size: 1.15rem; line-height: 1.3; }
.modal-head p { color: var(--brand-2); font-weight: 800; }
.pizza-tabs { display: flex; gap: 8px; padding: 14px 20px 0; flex-wrap: wrap; }
.pizza-tab {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.2s;
}
.pizza-tab.active { background: var(--brand); color: #17110a; border-color: transparent; }
.pizza-tab .has-tops { color: inherit; opacity: .75; font-size: .78rem; }
.modal-body { padding: 16px 20px; overflow-y: auto; }
.tops-group-title { font-size: 0.85rem; font-weight: 700; color: var(--text-dim); margin: 10px 0 8px; }
.tops-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.top-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.15s;
  text-align: start;
}
.top-chip:hover { border-color: rgba(252, 164, 4, 0.5); }
.top-chip.on { background: rgba(252, 164, 4, 0.15); border-color: var(--brand); color: var(--brand-2); }
.top-chip .top-price { margin-inline-start: auto; font-size: 0.8rem; color: var(--text-dim); }
.top-chip.on .top-price { color: var(--brand-2); }
.modal-foot {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
}
.modal-foot .btn { flex: 1; }

/* ---------- טוסט ----------
   קיים תמיד בעץ הנגישות (aria-live) — מוסתר ב-opacity בלבד */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  background: var(--bg-3);
  border: 1px solid var(--brand);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 120;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%); }

/* ---------- אנימציות גילוי ----------
   ברירת מחדל: הכל גלוי. רק כשה-JS מאשר (html.anim-ready)
   מסתירים עד ש-IntersectionObserver חושף — כך שום דפדפן לא נתקע על תוכן שקוף. */
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
html.anim-ready .reveal:not(.shown) { opacity: 0; transform: translateY(26px); }
.reveal.shown { opacity: 1; transform: none; }

/* ---------- קונפטי ---------- */
.confetti {
  position: fixed;
  top: -12px;
  z-index: 130;
  font-size: 1.4rem;
  animation: confettiFall linear forwards;
  pointer-events: none;
}
@keyframes confettiFall {
  to { transform: translateY(110vh) rotate(720deg); opacity: 0.6; }
}

/* ---------- רספונסיב ---------- */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .open-badge { display: none; }
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-card { right: 10px; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .brand-name { font-size: 1.45rem; }
  .brand-logo { width: 44px; height: 44px; }
  .btn-phone span { display: none; }
  .btn-phone { padding: 10px 12px; }
  .mobile-nav {
    display: none;
    flex-direction: column;
    padding: 10px 20px 18px;
    gap: 4px;
    border-top: 1px solid var(--line);
    background: rgba(12, 10, 9, 0.97);
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 10px 4px; color: var(--text-dim); font-weight: 600; border-bottom: 1px solid var(--line); }
  .mobile-nav a:last-child { border-bottom: none; }
  .cart-bar.visible { display: block; }
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
  .menu-card-img { height: 120px; }
  .menu-card-name { font-size: 0.9rem; }
  .menu-price { font-size: 1.4rem; }
  .menu-add { padding: 7px 13px; font-size: 0.82rem; }
  .cat-tabs { top: calc(var(--header-h) + 2px); gap: 7px; padding: 8px; }
  .cat-tab { padding: 8px 13px; font-size: 0.85rem; }
  .section { padding: 64px 16px 20px; }
  .gallery-strip img { width: 240px; height: 180px; }
  .tops-grid { grid-template-columns: 1fr; }
}

/* ---------- תנועה מופחתת ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
