/* ==========================================================================
   PIZZAWANKER — פיצה ואנקר
   Retro-trashy Italian-American diner kitsch. Hebrew RTL. Moshiko approved.
   One stylesheet to rule the whole greasy empire.
   ========================================================================== */

/* ----------------------------------------------------------------------------
   0. Tokens
---------------------------------------------------------------------------- */
:root {
  /* Palette — pulled straight from the PIZZAWANKER hero explorations */
  --tomato:      #c8102e;
  --tomato-dark: #9c0c22;
  --mustard:     #ffd24a;
  --mustard-dk:  #e6a817;
  --basil:       #4e6e2e;
  --basil-dk:    #3a5420;
  --basil-lt:    #cfe39a;
  --cream:       #f4e9d0;
  --cream-2:     #ead9b4;
  --paper:       #fdf6e3;
  --espresso:    #2b1a12;
  --ink:         #2b1a12;
  --ink-deep:    #1c110c;
  --olive:       #6e7b2a;

  /* Neon direction (the dark restaurant wall) */
  --coral:       #ff8a80;
  --coral-2:     #ff7a7a;
  --pink-lt:     #ffb3b3;
  --red-bright:  #ff3b3b;
  --night:       #2a1215;
  --night-2:     #1c110c;
  --night-3:     #241712;

  /* System */
  --shadow-hard: 6px 6px 0 var(--ink);
  --shadow-soft: 0 14px 30px rgba(42,26,17,.18);
  --radius:      18px;
  --radius-sm:   10px;
  --border:      3px solid var(--ink);

  --font-display: "Suez One", Georgia, serif;
  --font-fun:     "Suez One", Georgia, serif;
  --font-pop:     "Secular One", system-ui, sans-serif;
  --font-body:    "Heebo", system-ui, -apple-system, sans-serif;
}

/* ----------------------------------------------------------------------------
   1. Reset-ish
---------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background-color: var(--cream);
  background-image:
    radial-gradient(rgba(42,26,17,.05) 1.4px, transparent 1.5px);
  background-size: 14px 14px;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px dashed var(--basil); outline-offset: 3px; }

/* keep Latin brand bits LTR inside RTL flow */
.ltr { direction: ltr; unicode-bidi: isolate; display: inline-block; }

/* ----------------------------------------------------------------------------
   2. Patterns & textures (the tablecloth lives here)
---------------------------------------------------------------------------- */
.checker {
  background-color: #fff;
  background-image:
    linear-gradient(45deg,  var(--tomato) 25%, transparent 25%),
    linear-gradient(-45deg, var(--tomato) 25%, transparent 25%),
    linear-gradient(45deg,  transparent 75%, var(--tomato) 75%),
    linear-gradient(-45deg, transparent 75%, var(--tomato) 75%);
  background-size: 46px 46px;
  background-position: 0 0, 0 23px, 23px -23px, -23px 0;
}
.checker--green {
  background-image:
    linear-gradient(45deg,  var(--basil) 25%, transparent 25%),
    linear-gradient(-45deg, var(--basil) 25%, transparent 25%),
    linear-gradient(45deg,  transparent 75%, var(--basil) 75%),
    linear-gradient(-45deg, transparent 75%, var(--basil) 75%);
}
.checker--sm { background-size: 30px 30px;
  background-position: 0 0, 0 15px, 15px -15px, -15px 0; }

.sunburst {
  background: repeating-conic-gradient(from 8deg,
    var(--mustard) 0deg 11deg, var(--cream-2) 11deg 22deg);
}
.sunburst--hot {
  background: repeating-conic-gradient(from 8deg,
    var(--tomato) 0deg 11deg, var(--mustard) 11deg 22deg);
}

/* ----------------------------------------------------------------------------
   3. Layout helpers
---------------------------------------------------------------------------- */
.wrap { width: min(1180px, 92vw); margin-inline: auto; }
.wrap--tight { width: min(760px, 92vw); margin-inline: auto; }
.section { padding: clamp(48px, 7vw, 96px) 0; position: relative; }
.center { text-align: center; }
.stack > * + * { margin-top: 1rem; }
.row { display: flex; gap: 1rem; align-items: center; }
.row--wrap { flex-wrap: wrap; }
.spread { justify-content: space-between; }
.hide { display: none !important; }
@media (max-width: 720px){ .desk-only { display: none !important; } }
@media (min-width: 721px){ .mob-only  { display: none !important; } }

/* ----------------------------------------------------------------------------
   4. Type
---------------------------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-pop);
  font-size: .8rem; letter-spacing: .12em;
  color: var(--tomato-dark); text-transform: uppercase;
}
.display {
  font-family: var(--font-display);
  line-height: .94; letter-spacing: -.01em;
  font-size: clamp(2.6rem, 8vw, 6rem);
  color: var(--espresso);
}
.display--mega { font-size: clamp(3.4rem, 13vw, 9rem); }
.script { font-family: var(--font-fun); color: var(--tomato); }
.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 56ch; }
.tiny { font-size: .82rem; opacity: .75; }

.outline-text {
  color: var(--paper);
  -webkit-text-stroke: 2.4px var(--ink);
  paint-order: stroke fill;
  text-shadow: 4px 4px 0 var(--tomato);
}

/* ----------------------------------------------------------------------------
   5. Buttons
---------------------------------------------------------------------------- */
.btn {
  --bg: var(--mustard);
  --fg: var(--ink);
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-pop); font-size: 1rem;
  padding: .82em 1.5em; border: var(--border); border-radius: 999px;
  box-shadow: var(--shadow-hard);
  transition: transform .08s ease, box-shadow .08s ease, background .15s;
  text-align: center;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(3px,3px); box-shadow: 2px 2px 0 var(--ink); }
.btn--primary { --bg: var(--tomato); --fg: var(--paper); }
.btn--green   { --bg: var(--basil);  --fg: var(--paper); }
.btn--ink     { --bg: var(--ink);    --fg: var(--mustard); }
.btn--lg { font-size: 1.2rem; padding: 1em 1.8em; }
.btn--block { display: flex; width: 100%; justify-content: center; }
.btn--ghost {
  --bg: transparent; --fg: var(--ink);
  box-shadow: none; border-style: dashed;
}
.btn--ghost:hover { background: rgba(27,18,6,.06); transform: none; box-shadow: none; }

/* ----------------------------------------------------------------------------
   6. Stickers, badges, ribbons (the trash jewelry)
---------------------------------------------------------------------------- */
.sticker {
  display: inline-block; background: var(--paper);
  border: var(--border); border-radius: 999px;
  padding: .4em 1em; font-family: var(--font-pop);
  font-size: .85rem; box-shadow: 4px 4px 0 var(--ink);
}
.sticker--rot  { transform: rotate(-4deg); }
.sticker--rot2 { transform: rotate(3deg); }

.starburst {
  --c: var(--tomato);
  position: relative; display: grid; place-items: center;
  width: 116px; height: 116px; color: var(--paper);
  font-family: var(--font-pop); text-align: center; line-height: 1;
  filter: drop-shadow(3px 4px 0 var(--ink));
}
.starburst::before {
  content: ""; position: absolute; inset: 0; background: var(--c);
  clip-path: polygon(
    50% 0%, 61% 12%, 76% 6%, 78% 23%, 94% 24%, 88% 39%, 100% 50%,
    88% 61%, 94% 76%, 78% 78%, 76% 94%, 61% 88%, 50% 100%, 39% 88%,
    24% 94%, 22% 78%, 6% 76%, 12% 61%, 0% 50%, 12% 39%, 6% 24%,
    22% 23%, 24% 6%, 39% 12%);
}
.starburst > * { position: relative; }
.starburst--mustard { --c: var(--mustard); color: var(--ink); }
.starburst--green   { --c: var(--basil); }
.starburst__big { font-size: 1.5rem; }

.ribbon {
  display: inline-block; background: var(--basil); color: var(--paper);
  font-family: var(--font-pop); font-size: .75rem; letter-spacing: .05em;
  padding: .35em .9em; border: 2px solid var(--ink);
  transform: rotate(-2deg); box-shadow: 3px 3px 0 var(--ink);
}

.tag {
  display: inline-flex; align-items: center; gap: .35em;
  background: var(--cream-2); border: 2px solid var(--ink);
  border-radius: 999px; padding: .22em .8em; font-size: .8rem; font-weight: 700;
}
.tag--hot   { background: var(--tomato); color: var(--paper); }
.tag--veg   { background: var(--basil);  color: var(--paper); }
.tag--gold  { background: var(--mustard); }

/* ----------------------------------------------------------------------------
   7. Marquee (the scrolling diner banner)
---------------------------------------------------------------------------- */
.marquee {
  background: var(--ink); color: var(--mustard);
  border-block: 4px solid var(--tomato); overflow: hidden;
  font-family: var(--font-pop); padding-block: .55rem;
}
.marquee__track {
  display: inline-flex; gap: 2.4rem; white-space: nowrap;
  animation: marquee 26s linear infinite; will-change: transform;
}
.marquee__track > span { display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee em { color: var(--tomato); font-style: normal; }
@keyframes marquee { to { transform: translateX(50%); } }
@media (prefers-reduced-motion: reduce){ .marquee__track { animation: none; } }

/* ----------------------------------------------------------------------------
   8. Nav
---------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream); border-bottom: var(--border);
  box-shadow: 0 4px 0 rgba(27,18,6,.12);
}
.nav__inner { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.nav__logo { display: flex; align-items: center; gap: .55rem; }
.nav__logo img { width: 46px; height: 46px; }
.nav__word {
  font-family: var(--font-pop); font-size: 1.35rem; letter-spacing: -.02em;
  color: var(--tomato); line-height: 1;
}
.nav__word small { display: block; font-family: var(--font-body);
  font-size: .58rem; color: var(--espresso); letter-spacing: .25em; }
.nav__links { display: flex; gap: .3rem; margin-inline-start: auto; align-items: center; }
.nav__links a {
  font-family: var(--font-pop); font-size: .8rem; padding: .5rem .8rem;
  border-radius: 999px; transition: background .15s, color .15s;
}
.nav__links a:hover, .nav__links a.is-active { background: var(--mustard); }
.nav__cart {
  position: relative; display: inline-flex; align-items: center; gap: .4rem;
  background: var(--tomato); color: var(--paper); border: var(--border);
  border-radius: 999px; padding: .45rem .9rem; font-family: var(--font-pop);
  font-size: .82rem; box-shadow: 3px 3px 0 var(--ink);
}
.nav__cart .count {
  background: var(--mustard); color: var(--ink); border: 2px solid var(--ink);
  border-radius: 999px; min-width: 1.5em; height: 1.5em; display: grid;
  place-items: center; font-size: .72rem; padding: 0 .2em;
}
.nav__burger {
  margin-inline-start: auto; background: var(--mustard); border: var(--border);
  border-radius: 12px; width: 46px; height: 46px; display: grid; place-items: center;
  box-shadow: 3px 3px 0 var(--ink); font-size: 1.3rem;
}
.nav__mobile {
  display: none; flex-direction: column; gap: .3rem; padding: .6rem 0 1rem;
  border-top: 2px dashed var(--ink);
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a { font-family: var(--font-pop); padding: .6rem .4rem;
  border-bottom: 1px dashed rgba(27,18,6,.25); }

/* ----------------------------------------------------------------------------
   9. Hero (shared bones; directions remix in their own files)
---------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem;
  align-items: center; padding-block: clamp(2rem, 5vw, 4.5rem);
}
@media (max-width: 880px){ .hero__grid { grid-template-columns: 1fr; text-align: center; } }
.hero__art { position: relative; display: grid; place-items: center; }
.hero__art img { width: min(420px, 80%); filter: drop-shadow(10px 12px 0 rgba(27,18,6,.25)); }
.hero__plate {
  position: absolute; inset: 0; margin: auto; width: 116%; aspect-ratio: 1;
  border-radius: 50%; z-index: -1;
}

/* ----------------------------------------------------------------------------
   10. Cards / menu
---------------------------------------------------------------------------- */
.card {
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hard); overflow: hidden;
}
.menu-grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
}
.pizza-card { display: flex; flex-direction: column; position: relative; }
.pizza-card__media {
  aspect-ratio: 5/4; display: grid; place-items: center; font-size: 4.4rem;
  border-bottom: var(--border); position: relative;
}
.pizza-card__body { padding: 1rem 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.pizza-card__name { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.05; }
.pizza-card__desc { font-size: .9rem; opacity: .82; flex: 1; }
.pizza-card__foot { display: flex; align-items: center; justify-content: space-between; gap: .6rem; margin-top: .3rem; }
.pizza-card .starburst { position: absolute; top: -16px; inset-inline-start: -14px; width: 78px; height: 78px; z-index: 2; }

.price { font-family: var(--font-pop); font-size: 1.5rem; color: var(--tomato-dark); }
.price small { font-size: .7rem; color: var(--espresso); }
.price--strike { text-decoration: line-through; color: var(--espresso); opacity: .5; font-size: 1rem; }

/* ----------------------------------------------------------------------------
   11. Steppers / qty
---------------------------------------------------------------------------- */
.stepper { display: inline-flex; align-items: center; border: var(--border);
  border-radius: 999px; overflow: hidden; background: var(--paper); }
.stepper button { width: 40px; height: 40px; border: 0; background: var(--cream-2);
  font-family: var(--font-pop); font-size: 1.2rem; color: var(--ink); }
.stepper button:hover { background: var(--mustard); }
.stepper output { min-width: 2.4em; text-align: center; font-family: var(--font-pop); }

/* ----------------------------------------------------------------------------
   12. Sections: section title
---------------------------------------------------------------------------- */
.section__head { display: flex; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section__title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1; }
.underline-squiggle { position: relative; display: inline-block; }
.underline-squiggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -.18em; height: .28em;
  background: var(--mustard); z-index: -1; transform: rotate(-1deg);
  border-radius: 4px;
}

/* feature strip */
.feature {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
@media (max-width: 760px){ .feature { grid-template-columns: 1fr; } }
.feature__item { background: var(--paper); border: var(--border); border-radius: var(--radius);
  padding: 1.4rem; box-shadow: var(--shadow-hard); text-align: center; }
.feature__icon { font-size: 2.6rem; }
.feature__item h3 { font-family: var(--font-display); font-size: 1.3rem; margin: .4rem 0; }

/* ----------------------------------------------------------------------------
   13. Mascot speech
---------------------------------------------------------------------------- */
.moshiko-says {
  display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: center;
  background: var(--basil); color: var(--paper); border: var(--border);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; box-shadow: var(--shadow-hard);
}
.moshiko-says img { width: 96px; }
.speech { position: relative; background: var(--paper); color: var(--ink);
  border: var(--border); border-radius: 16px; padding: 1rem 1.2rem; font-weight: 700; }
.speech::after { content: ""; position: absolute; top: 50%; inset-inline-start: -16px;
  transform: translateY(-50%); border: 9px solid transparent;
  border-inline-end-color: var(--ink); }
@media (max-width:560px){ .moshiko-says { grid-template-columns: 1fr; text-align: center; }
  .moshiko-says img { margin-inline: auto; } .speech::after { display: none; } }

/* ----------------------------------------------------------------------------
   14. Forms (checkout)
---------------------------------------------------------------------------- */
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.field label { font-family: var(--font-pop); font-size: .82rem; }
.input, .select, .textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem;
  padding: .8rem 1rem; border: var(--border); border-radius: 12px;
  background: var(--paper); color: var(--ink);
}
.input:focus, .select:focus, .textarea:focus { outline: 3px solid var(--mustard); outline-offset: 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width:560px){ .grid-2 { grid-template-columns: 1fr; } }

.radio-card { display: flex; gap: .8rem; align-items: center; cursor: pointer;
  border: var(--border); border-radius: 14px; padding: .9rem 1rem; background: var(--paper);
  transition: background .15s, transform .08s; }
.radio-card:hover { background: var(--cream-2); }
.radio-card input { accent-color: var(--tomato); width: 1.2rem; height: 1.2rem; }
.radio-card.is-on { background: var(--mustard); box-shadow: var(--shadow-hard); }

/* ----------------------------------------------------------------------------
   15. Cart / summary tables
---------------------------------------------------------------------------- */
.line-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 1rem;
  align-items: center; padding: 1rem 0; border-bottom: 2px dashed rgba(27,18,6,.25); }
.line-item__emoji { width: 64px; height: 64px; display: grid; place-items: center;
  font-size: 2rem; background: var(--cream-2); border: var(--border); border-radius: 14px; }
.line-item__name { font-family: var(--font-display); font-size: 1.2rem; line-height: 1.05; }
.summary { display: flex; flex-direction: column; gap: .6rem; }
.summary__row { display: flex; justify-content: space-between; }
.summary__row--total { font-family: var(--font-pop); font-size: 1.4rem;
  border-top: var(--border); padding-top: .8rem; color: var(--tomato-dark); }
.linkish { text-decoration: underline; color: var(--tomato-dark); background: none; border: 0; font: inherit; }

/* ----------------------------------------------------------------------------
   16. Footer
---------------------------------------------------------------------------- */
.footer { background: var(--ink); color: var(--cream); padding: 3rem 0 2rem; margin-top: 4rem; }
.footer a:hover { color: var(--mustard); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
@media (max-width:680px){ .footer__grid { grid-template-columns: 1fr; } }
.footer h4 { font-family: var(--font-pop); color: var(--mustard); margin-bottom: .6rem; }
.footer__legal { border-top: 1px solid rgba(251,241,218,.2); margin-top: 2rem;
  padding-top: 1.2rem; font-size: .8rem; opacity: .75; display: flex;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap; }

/* ----------------------------------------------------------------------------
   17. Toast
---------------------------------------------------------------------------- */
.toast {
  position: fixed; inset-block-end: 1.2rem; inset-inline: 0; margin-inline: auto;
  width: max-content; max-width: 90vw; z-index: 100;
  background: var(--ink); color: var(--mustard); border: var(--border);
  border-radius: 999px; padding: .8rem 1.4rem; font-family: var(--font-pop);
  box-shadow: var(--shadow-hard); display: flex; align-items: center; gap: .6rem;
  transform: translateY(160%); transition: transform .35s cubic-bezier(.2,1.4,.4,1);
}
.toast.is-up { transform: translateY(0); }

/* ----------------------------------------------------------------------------
   18. Misc page bits
---------------------------------------------------------------------------- */
.note { background: var(--cream-2); border: 2px dashed var(--ink); border-radius: 12px;
  padding: 1rem 1.2rem; font-size: .9rem; }
.crumbs { font-size: .85rem; padding: 1rem 0; opacity: .8; font-family: var(--font-pop); }
.crumbs a:hover { color: var(--tomato-dark); }
.tilt { transform: rotate(-2deg); }
.tilt-r { transform: rotate(2deg); }
.spin-slow { animation: spin 14s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .spin-slow { animation: none; } }
.wink { animation: wink 4.5s ease-in-out infinite; transform-origin: center; }
@keyframes wink { 0%,92%,100%{ transform: scaleY(1);} 95%{ transform: scaleY(.1);} }
.drip { animation: drip 3.2s ease-in-out infinite; }
@keyframes drip { 0%,100%{ transform: translateY(0); opacity: 1;}
  50%{ transform: translateY(5px); opacity: .7; } }

/* ==========================================================================
   19. HERO DIRECTION 1 — שלט הניאון · the dark restaurant wall
   ========================================================================== */
.skin-neon { background: var(--night-2); color: var(--cream);
  background-image: radial-gradient(rgba(255,255,255,.04) 1.3px, transparent 1.4px);
  background-size: 16px 16px; }
.skin-neon .nav { background: var(--night-3); border-bottom-color: var(--ink-deep);
  box-shadow: 0 4px 0 rgba(0,0,0,.4); }
.skin-neon .nav__links a { color: var(--cream); }
.skin-neon .nav__links a:hover { background: var(--tomato); color: var(--cream); }
.skin-neon .nav__word { color: var(--coral); text-shadow: 0 0 10px rgba(255,122,122,.6); }
.skin-neon .nav__word small { color: var(--mustard); }

.neon-hero { position: relative; overflow: hidden; padding-block: clamp(3rem,8vw,6rem);
  border-bottom: 6px solid var(--ink-deep); }
.neon-hero::before { content:""; position:absolute; inset:0;
  background:
    radial-gradient(120% 80% at 70% 0%, rgba(255,122,122,.12), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 2px, transparent 2px 26px); }
.neon-sign { font-family: var(--font-display); line-height: .92;
  font-size: clamp(3rem, 10vw, 7rem); color: var(--cream); }
.neon { color: var(--coral); text-shadow:
    0 0 6px rgba(255,122,122,.9), 0 0 18px rgba(255,122,122,.7),
    0 0 38px rgba(255,59,59,.5); }
.neon--gold { color: var(--mustard);
  text-shadow: 0 0 6px rgba(255,210,74,.9), 0 0 20px rgba(255,210,74,.6); }
.neon--green { color: var(--basil-lt);
  text-shadow: 0 0 6px rgba(207,227,154,.9), 0 0 20px rgba(78,110,46,.7); }
.neon-flicker { animation: flick 5s infinite steps(1); }
@keyframes flick { 0%,19%,21%,55%,57%,100%{opacity:1} 20%,56%{opacity:.55} }
@media (prefers-reduced-motion: reduce){ .neon-flicker{ animation:none; } }
.skin-neon .card, .skin-neon .pizza-card__media { background: var(--night-3); color: var(--cream); }
.skin-neon .footer { background: #120a07; }
.open-pill { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-pop);
  font-size:.82rem; color:var(--basil-lt); border:2px solid var(--basil); border-radius:999px;
  padding:.3rem .9rem; background: rgba(78,110,46,.15); }
.open-pill .dot { width:.7rem; height:.7rem; border-radius:50%; background:#7ee27e;
  box-shadow:0 0 8px #7ee27e; animation: pulse 1.8s infinite; }
@keyframes pulse { 50%{ opacity:.4; transform: scale(.8); } }

/* ==========================================================================
   20. HERO DIRECTION 2 — מפת השולחן המשובצת · bright checkered (DEFAULT HOME)
   ========================================================================== */
.checker-hero { position: relative; border-bottom: 6px solid var(--ink); }
.checker-hero .hero__art img { width: min(440px, 86%); }
.plate-ring { background: var(--mustard);
  border: 6px solid var(--ink); box-shadow: var(--shadow-hard); }
.checker-band { background: var(--cream-2);
  border-block: var(--border); padding-block: .5rem; }

/* ==========================================================================
   21. HERO DIRECTION 3 — הפוסטר · flat giant typography
   ========================================================================== */
.poster-hero { background: var(--mustard); border-bottom: 8px solid var(--ink);
  position: relative; overflow: hidden; }
.poster-hero .wrap { position: relative; z-index: 2; }
.poster-type { font-family: var(--font-display); color: var(--ink);
  font-size: clamp(3.4rem, 18vw, 12rem); line-height: .82; letter-spacing: -.02em;
  text-transform: none; }
.poster-type .hot { color: var(--tomato); display: block; }
.poster-type .out { color: var(--mustard); -webkit-text-stroke: 4px var(--ink);
  paint-order: stroke fill; }
.poster-strip { background: var(--ink); color: var(--mustard);
  font-family: var(--font-pop); display: flex; flex-wrap: wrap; gap: 1.4rem;
  justify-content: center; padding: 1rem; font-size: clamp(.8rem,2vw,1.1rem); }
.poster-strip span { display: inline-flex; align-items: center; gap: 1.4rem; }

/* ==========================================================================
   22. Directions chooser (the explorations page)
   ========================================================================== */
.dir-grid { display: grid; gap: 1.6rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px){ .dir-grid { grid-template-columns: 1fr; } }
.dir-card { display: flex; flex-direction: column; text-align: start; }
.dir-card__preview { aspect-ratio: 16/11; border-bottom: var(--border);
  position: relative; overflow: hidden; display: grid; place-items: center; padding: 1rem; }
.dir-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.dir-card__body h3 { font-family: var(--font-display); font-size: 1.4rem; }
.swatches { display: flex; gap: .35rem; }
.swatches i { width: 22px; height: 22px; border-radius: 6px; border: 2px solid var(--ink); display:block; }

/* ==========================================================================
   23. The standee (Fatso full-body)
   ========================================================================== */
.standee { position: relative; display: grid; place-items: end center; }
.standee img { width: min(360px, 78%);
  filter: drop-shadow(8px 10px 0 rgba(28,17,12,.22)); }
.standee--float img { animation: bob 4s ease-in-out infinite; }
@keyframes bob { 50%{ transform: translateY(-12px) rotate(-1deg); } }
@media (prefers-reduced-motion: reduce){ .standee--float img{ animation:none; } }

/* ==========================================================================
   24. Order tracking timeline
   ========================================================================== */
.track { display: grid; gap: 0; }
.track__step { display: grid; grid-template-columns: 52px 1fr; gap: 1rem;
  padding-bottom: 1.6rem; position: relative; }
.track__step::before { content:""; position:absolute; inset-inline-start: 25px; top: 52px;
  bottom: -6px; width: 4px; background: var(--cream-2); }
.track__step:last-child::before { display: none; }
.track__dot { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); border: var(--border); font-size: 1.4rem; z-index: 1; }
.track__step.done .track__dot { background: var(--basil); color: #fff; }
.track__step.active .track__dot { background: var(--mustard); animation: pop 1.4s infinite; }
.track__step.active::before, .track__step.done::before { background: var(--basil); }
@keyframes pop { 50%{ transform: scale(1.12); } }
.track__step h4 { font-family: var(--font-pop); font-size: 1.05rem; }
.track__step.todo { opacity: .5; }

/* progress bar */
.bar { height: 22px; background: var(--cream-2); border: var(--border); border-radius: 999px; overflow: hidden; }
.bar > i { display: block; height: 100%; background: var(--tomato);
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.25) 0 10px, transparent 10px 20px);
  transition: width .6s ease; }

/* two-column shells for flow pages */
.flow { display: grid; grid-template-columns: 1.6fr .9fr; gap: 1.6rem; align-items: start; }
@media (max-width: 900px){ .flow { grid-template-columns: 1fr; } }
.panel { background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hard); padding: 1.4rem 1.5rem; }
.panel--sticky { position: sticky; top: 90px; }
.option-list { display: grid; gap: .7rem; }
.swatch-dough { display:flex; gap:.6rem; flex-wrap:wrap; }

/* ==========================================================================
   25. Ask FATSO — AI concierge chat widget
   ========================================================================== */
.fab {
  position: fixed; inset-block-end: 1.2rem; inset-inline-end: 1.2rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--tomato); color: var(--paper); border: var(--border);
  border-radius: 999px; padding: .55rem .9rem .55rem .6rem; cursor: pointer;
  font-family: var(--font-pop); box-shadow: var(--shadow-hard);
  transition: transform .08s ease;
}
.fab:hover { transform: translateY(-2px); }
.fab img { width: 38px; height: 38px; background: var(--paper); border-radius: 50%;
  border: 2px solid var(--ink); padding: 2px; }
.fab .fab__ping { position: absolute; inset-block-start: -4px; inset-inline-start: -4px;
  width: 14px; height: 14px; background: var(--mustard); border: 2px solid var(--ink);
  border-radius: 50%; animation: pulse 1.8s infinite; }
.fab.is-hidden { display: none; }
@media (max-width: 520px){ .fab span { display: none; } }

.chat {
  position: fixed; inset-block-end: 1.2rem; inset-inline-end: 1.2rem; z-index: 90;
  width: min(380px, 92vw); height: min(560px, 78vh);
  background: var(--paper); border: var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-hard); display: none; flex-direction: column; overflow: hidden;
}
.chat.is-open { display: flex; animation: chatpop .2s ease; }
@keyframes chatpop { from { transform: translateY(12px) scale(.98); opacity: 0; } }
@media (max-width: 520px){ .chat { inset: auto 0 0 0; width: 100%; height: 86vh;
  border-radius: var(--radius) var(--radius) 0 0; } }

.chat__head { display: flex; align-items: center; gap: .6rem; padding: .7rem .9rem;
  background: var(--tomato); color: var(--paper); border-bottom: var(--border); }
.chat__head img { width: 40px; height: 40px; background: var(--paper);
  border: 2px solid var(--ink); border-radius: 50%; padding: 2px; }
.chat__head b { font-family: var(--font-display); font-size: 1.15rem; line-height: 1; }
.chat__head small { display: block; font-size: .68rem; opacity: .9; }
.chat__x { margin-inline-start: auto; background: var(--paper); color: var(--ink);
  border: 2px solid var(--ink); border-radius: 50%; width: 30px; height: 30px;
  font-size: 1rem; line-height: 1; cursor: pointer; }

.chat__body { flex: 1; overflow-y: auto; padding: 1rem; display: flex;
  flex-direction: column; gap: .7rem;
  background-image: radial-gradient(rgba(42,26,17,.05) 1.2px, transparent 1.3px);
  background-size: 14px 14px; }
.chat__msg { max-width: 84%; padding: .6rem .85rem; border: 2px solid var(--ink);
  border-radius: 14px; font-size: .95rem; line-height: 1.45; white-space: pre-wrap;
  box-shadow: 2px 2px 0 var(--ink); }
.chat__msg--bot { align-self: flex-start; background: var(--cream-2);
  border-end-start-radius: 4px; }
.chat__msg--me  { align-self: flex-end; background: var(--mustard);
  border-end-end-radius: 4px; }
.chat__typing { align-self: flex-start; display: inline-flex; gap: .25rem;
  padding: .7rem .9rem; background: var(--cream-2); border: 2px solid var(--ink);
  border-radius: 14px; box-shadow: 2px 2px 0 var(--ink); }
.chat__typing i { width: .5rem; height: .5rem; background: var(--tomato);
  border-radius: 50%; animation: bob 1s infinite; }
.chat__typing i:nth-child(2){ animation-delay: .15s; }
.chat__typing i:nth-child(3){ animation-delay: .3s; }

.chat__chips { display: flex; gap: .4rem; flex-wrap: wrap; padding: 0 1rem .6rem; }
.chat__chips button { font-family: var(--font-body); font-weight: 700; font-size: .8rem;
  background: var(--paper); border: 2px solid var(--ink); border-radius: 999px;
  padding: .3rem .7rem; cursor: pointer; }
.chat__chips button:hover { background: var(--cream-2); }

.chat__foot { display: flex; gap: .5rem; padding: .7rem; border-top: var(--border);
  background: var(--cream); }
.chat__foot input { flex: 1; font-family: var(--font-body); font-size: .95rem;
  padding: .6rem .8rem; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--paper); }
.chat__foot input:focus { outline: 2px solid var(--mustard); }
.chat__send { background: var(--tomato); color: var(--paper); border: 2px solid var(--ink);
  border-radius: 50%; width: 44px; height: 44px; font-size: 1.1rem; cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink); }
.chat__send:disabled { opacity: .5; cursor: default; }

/* topping chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip { display:inline-flex; align-items:center; gap:.4rem; cursor:pointer;
  border: var(--border); border-radius: 999px; padding:.45rem .9rem; background: var(--paper);
  font-weight:700; font-size:.9rem; user-select:none; transition: background .12s, transform .08s; }
.chip:hover { background: var(--cream-2); }
.chip.is-on { background: var(--basil); color:#fff; box-shadow: 3px 3px 0 var(--ink); }
.chip.is-on::before { content:"✓ "; }
