:root {
  --navy: #163852;
  --accent: #7bdcb5;
  --accent-soft: #d0ede2;
  --bg: #fff;
  --card: #fff;
  --text: #163852;
  --muted: #6b7280;
  --line: #ebe6e1;
  --ok: #1f7a4d;
  --bad: #b42318;
}

html[data-city="ge"] {
  --accent: #7bdcb5;
  --accent-soft: #d0ede2;
}
html[data-city="ls"] {
  --accent: #ee9ab2;
  --accent-soft: rgba(238, 154, 178, 0.38);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.app { min-height: 100vh; }
button, a { font: inherit; }
button { color: inherit; }

.site-header {
  position: relative; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: background .28s ease, border-color .28s ease;
}
.site-header-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 84px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-right { justify-content: flex-end; }
.logo-btn {
  background: none; border: 0; padding: 0; cursor: pointer;
  overflow: hidden;
  max-width: 100%;
  z-index: 0;
}
.logo-btn img { height: 58px; display: block; max-width: 100%; }
.nav-link,
.nav-cta {
  isolation: isolate;
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 8px 14px;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  color: var(--navy);
  text-decoration: none;
  transition: color .3s cubic-bezier(.58, .3, .005, 1);
}
.nav-link::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  z-index: -1;
  transform: scale(.5);
  opacity: 0;
  transition: transform .3s cubic-bezier(.58, .3, .005, 1), opacity .3s cubic-bezier(.58, .3, .005, 1);
}
.nav-link:hover,
.nav-link:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: #fff;
}
.nav-link:hover::before,
.nav-link:focus-visible::before,
.nav-cta:hover::before,
.nav-cta:focus-visible::before {
  transform: scale(1);
  opacity: 1;
}
.city-switch { position: relative; flex: 0 0 auto; margin-right: 8px; }
.city-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--navy);
}
.city-now svg { width: 14px; height: 14px; fill: currentColor; }
.city-menu {
  display: none;
  position: absolute; left: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); min-width: 160px;
  box-shadow: 0 10px 30px rgba(22,56,82,.08);
}
.city-switch.open .city-menu { display: grid; }
.city-menu button {
  background: none; border: 0; text-align: left;
  padding: 12px 14px; font-weight: 800; cursor: pointer;
}
.city-menu button:hover, .city-menu button.on { background: var(--accent-soft); }
.nav-right .cart-btn,
.nav-right .lang-switch {
  flex: 0 0 auto;
  margin-left: 12px;
}
.cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0; border-radius: 999px; background: var(--accent); color: var(--navy);
  font-weight: 800; padding: 10px 14px 10px 12px; cursor: pointer;
}
.cart-ico {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
  flex: 0 0 auto;
}
.cart-btn b { margin: 0; font-variant-numeric: tabular-nums; }
.cart-btn.is-mobile { display: none; }
.lang-switch {
  position: relative;
  display: inline-block;
  z-index: 6;
}
.lang-now {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 6px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  appearance: none;
}
.lang-now > * { pointer-events: none; }
.lang-now:hover,
.lang-switch.open .lang-now {
  border-color: var(--navy);
}
.lang-flag {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(22, 56, 82, .16);
  flex: 0 0 auto;
  line-height: 0;
}
.lang-flag svg { display: block; width: 100%; height: 100%; }
.lang-caret {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  min-width: 176px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(22, 56, 82, .08);
}
.lang-switch.open .lang-menu { display: grid; }
.lang-menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 0;
  text-align: left;
  padding: 11px 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}
.lang-menu button:hover,
.lang-menu button.on { background: var(--accent-soft); }
.lang-name { font-size: 14px; }
.city-gate-card .lang-switch {
  display: inline-block;
  margin: 0 auto 18px;
  z-index: 8;
}
.city-gate-card .lang-now {
  padding: 8px 12px 8px 10px;
}
.city-gate-card .lang-menu {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.lang-switch.is-mobile { display: none; }
.burger {
  display: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  width: 41px;
  height: 41px;
  padding: 9px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: transform .3s;
}
.burger:hover,
.burger:focus-visible {
  transform: scale(1.1);
}
.burger svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.burger .ico-close { display: none; }
.burger.open .ico-bars { display: none; }
.burger.open .ico-close { display: block; }
.mobile-nav { display: none; }

.hero, .page-head, .story, .menu-wrap, .home-pokes, .compose-cta, .philo-teaser {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 28px;
}
.hero { padding-top: 72px; padding-bottom: 36px; }
.eyebrow {
  margin: 0 0 8px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); font-size: 13px;
}
.hero h1, .page-head h1, .story h1 {
  margin: 0 0 16px; font-size: clamp(42px, 7vw, 84px);
  line-height: .95; font-weight: 900; letter-spacing: -.03em;
}
.hero .lede, .page-head p { color: var(--muted); font-size: 18px; line-height: 1.5; }
.center-actions { text-align: center; margin-top: 28px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card, .card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
}
.product-card { overflow: hidden; display: flex; flex-direction: column; }
.product-media {
  background: var(--accent-soft); border: 0; padding: 0; cursor: pointer;
}
.product-media img, .product-hero > img, .cart-thumb {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}
.product-body { padding: 18px; display: grid; gap: 10px; }
.product-name {
  background: none; border: 0; padding: 0; text-align: left;
  font-size: 22px; font-weight: 900; cursor: pointer;
}
.product-body p, .product-hero p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.size-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.size-pills button {
  border: 2px solid var(--line); background: #fff; border-radius: 12px;
  padding: 10px 8px; font-weight: 800; cursor: pointer;
}
.size-pills button span { display: block; font-size: 11px; color: var(--muted); font-weight: 700; }
.size-pills button.on { border-color: var(--accent); background: var(--accent-soft); }

.compose-cta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.compose-cta h2, .story h2 {
  margin: 0 0 12px; font-size: clamp(32px, 5vw, 52px); line-height: 1.05; font-weight: 900;
}
.compose-visual .bowl-wrap { max-width: 360px; }
.philo-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1180px;
  padding-top: 64px;
  padding-bottom: 72px;
}
.philo-teaser .philo-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
}
.philo-teaser .philo-copy p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}
.philo-teaser .btn { margin-top: 10px; }

.story p { font-size: 18px; line-height: 1.65; }

.philo-hero, .philo-block, .philo-pillars, .philo-signatures {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 28px 48px;
}
.philo-hero { padding-top: 56px; padding-bottom: 8px; }
.philo-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.03em;
}
.philo-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.philo-block.is-reverse { direction: rtl; }
.philo-block.is-reverse > * { direction: ltr; }
.philo-photo {
  width: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  background: var(--accent-soft);
}
.philo-photo.is-portrait { aspect-ratio: 3 / 4; max-height: 640px; }
.philo-photo.is-wide { aspect-ratio: 3 / 2; }
.philo-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  font-weight: 900;
}
.philo-copy p, .philo-signatures p, .philo-pillar p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}
.philo-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 0;
}
.philo-pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}
.philo-pillar strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}
.philo-signatures h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  font-weight: 900;
}
.philo-signatures .product-grid { margin-top: 28px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.contact-grid .card, .card { padding: 20px; }
.contact-grid h3, .contact-grid h4 { margin: 0 0 8px; }
.contact-grid p { margin: 0 0 8px; }
.contact-page p a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 var(--accent);
}
.contact-page p a:hover {
  color: var(--navy);
  box-shadow: inset 0 -2px 0 var(--navy);
}
.cat-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.cat-tabs button {
  border: 0; border-radius: 999px; padding: 10px 16px;
  background: #f3f1ee; font-weight: 800; cursor: pointer;
}
.cat-tabs button.on { background: var(--accent); color: var(--navy); }

.product-hero {
  max-width: 1100px; margin: 0 auto; padding: 40px 28px 64px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start;
}
.product-hero img { border-radius: 18px; background: var(--accent-soft); }
.back-link { background: none; border: 0; padding: 0; font-weight: 800; cursor: pointer; margin-bottom: 12px; }
.hero-price { display: block; font-size: 28px; margin: 16px 0; }
.hero-sizes { max-width: 360px; margin-bottom: 16px; }

.site-footer {
  background: var(--navy); color: #fff; padding: 48px 28px 64px; margin-top: 24px;
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px;
}
.site-footer h3, .site-footer h4 { margin: 0 0 10px; }
.site-footer p { margin: 0 0 8px; color: rgba(255,255,255,.78); }
.site-footer a { color: #fff; text-decoration: none; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  color: #fff;
}
.socials a:hover { background: var(--accent); color: var(--navy); }
.socials a svg { width: 18px; height: 18px; fill: currentColor; }
.socials.is-navy a { background: var(--navy); color: #fff; }
.socials.is-navy a:hover { background: var(--accent); color: var(--navy); }
.contact-shops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.shop-map {
  width: 100%;
  height: 280px;
  border: 0;
  border-radius: 14px;
  margin-top: 14px;
  background: #f3f1ee;
}
.nl { display: flex; gap: 8px; margin-top: 12px; }
.nl input, .nl button { padding: 12px 14px; border: 0; }
.nl input { flex: 1; }
.nl button { background: var(--accent); color: var(--navy); font-weight: 800; cursor: pointer; }
.nl button:disabled { opacity: .6; cursor: wait; }
.nl-msg { margin: 8px 0 0; font-size: 13px; font-weight: 700; }
.nl-msg.ok { color: var(--ok); }
.nl-msg.err { color: var(--bad); }

.compose {
  display: grid;
  grid-template-columns: minmax(420px, 1.7fr) minmax(360px, 0.95fr);
  gap: 32px 56px;
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 40px 64px;
}
.bowl-col { position: sticky; top: 104px; align-self: start; z-index: 0; }
.compose > .footer-bar {
  grid-column: 1 / -1;
}
.compose > .site-footer {
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 0;
}
.bowl-stage { position: relative; }
.bowl-stage:before {
  content: "";
  position: absolute; right: -8%; bottom: 4%;
  width: 88%; height: 72%;
  background: var(--accent);
  transform: rotate(7deg);
  border-radius: 8px; z-index: 0; opacity: .55;
}
.bowl-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(620px, 46vw);
  margin: 0 auto;
}
.bowl-frame .bowl-wrap {
  max-width: none;
  width: 100%;
  margin: 0;
}
.bowl-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: min(620px, 46vw);
  margin: 0 auto; aspect-ratio: 1;
}
.bowl-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; pointer-events: none;
}
.bowl-wrap .bowl-base { position: relative; z-index: 0; }
.bowl-wrap .layer { z-index: 1; }
.bowl-wrap .layer.cat-base { z-index: 2; }
.bowl-wrap .layer.cat-marinade { z-index: 20; }
.bowl-wrap .layer.cat-mix-me { z-index: 30; }
.bowl-wrap .layer.cat-proteines,
.bowl-wrap .layer.cat-sauce-me { z-index: 40; }
.bowl-wrap .layer.cat-top-me { z-index: 50; }
.bowl-title {
  position: relative; z-index: 1; margin: 8px 0 0;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
  font-weight: 900; color: var(--accent);
}
.bowl-title em { font-style: normal; color: var(--navy); }
.bowl-title.is-mobile-intro { display: none; }
.options-col .bowl-title.is-desktop {
  margin: 0 0 14px;
  font-size: clamp(28px, 3.2vw, 44px);
}
.price-tag { display: none; }
.price-tag small { display: block; font-size: 13px; font-weight: 600; color: var(--muted); }
.price-pop {
  position: absolute;
  right: 0;
  bottom: 8px;
  z-index: 6;
}
.price-pop.is-mobile { display: none; }
.bowl-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin: 0;
  border: 0;
  border-radius: 14px;
  padding: 12px 16px 10px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 56, 82, .24);
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}
.bowl-price:hover { filter: brightness(1.08); }
.price-detail {
  display: none;
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  min-width: 240px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(22, 56, 82, .18);
}
.price-detail.open { display: block; }
.price-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 28px;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 600;
}
.price-detail-row strong { font-weight: 800; white-space: nowrap; }
.price-detail-row.is-total {
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 15px;
  font-weight: 800;
}
.bowl-price small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
}
.compose-price-mobile { display: none; }
.limit-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(22, 56, 82, .5);
}
.limit-modal-card {
  width: min(360px, 100%);
  padding: 22px 22px 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(22, 56, 82, .24);
  text-align: center;
}
.limit-modal-card strong {
  display: block;
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}
.limit-modal-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.limit-modal-card .btn { min-width: 140px; }
.options-col {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-top: 8px;
  margin-bottom: 360px;
}
.options-intro h3 { margin: 0 0 8px; font-size: 22px; line-height: 1.25; font-weight: 900; }
.options-intro p { margin: 0 0 22px; color: var(--muted); font-size: 15px; }
.compose-intro { display: none; }
.progress { position: relative; max-width: 100%; margin: 0 0 18px; }
.progress:before, .progress-bar {
  content: ""; position: absolute; height: 3px; left: 0; top: 14px;
  width: 100%; background: #ededed;
}
.progress-bar { background: var(--accent); width: 0; }
.progress-steps { display: flex; justify-content: space-between; position: relative; }
.progress-steps button {
  width: 30px; height: 30px; border: 0; border-radius: 50%;
  background: #ededed; color: var(--navy); font-size: 11px; font-weight: 800; cursor: pointer;
}
.progress-steps button.active { background: var(--accent); color: #fff; }
.step-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.step-head h2 { margin: 0; font-size: 20px; font-weight: 900; text-transform: uppercase; }
.limit { color: var(--muted); font-weight: 700; font-size: 13px; }
.nav-mini { display: flex; gap: 8px; align-items: center; }
.nav-mini button, .icon-btn {
  width: 34px; height: 34px; border: 0; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; cursor: pointer;
}
.nav-mini button.disabled { background: #d4d4d4; pointer-events: none; }
.icon-btn.reset { background: transparent; color: #c0c0c0; font-size: 16px; }
.lede { display: none; }
.err { color: var(--bad); font-size: 13px; margin: 0 0 10px; }
.swatches { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 12px; }
.swatch {
  display: flex; flex-direction: column; align-items: center;
  background: none; border: 0; padding: 0; cursor: pointer; user-select: none;
}
.swatch img, .swatch .ph {
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: var(--accent); object-fit: cover;
}
.swatch .ph { display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; }
.swatch.on:not(.qty) img, .swatch.on:not(.qty) .ph {
  padding: 6%; box-sizing: border-box; box-shadow: 0 0 0 3px var(--navy);
}
.swatch span { margin-top: 8px; font-size: 13px; font-weight: 700; line-height: 1.2; text-align: center; }
.qty-box { margin-top: 8px; display: flex; align-items: center; gap: 8px; }
.qty-box button {
  width: 28px; height: 28px; border: 2px solid var(--accent); border-radius: 8px;
  background: var(--accent-soft); color: var(--navy); font-weight: 800; cursor: pointer;
}
.qty-box em { min-width: 16px; font-style: normal; font-weight: 800; text-align: center; }
.extra { margin-top: 26px; }
.extra label { display: block; font-weight: 900; text-transform: uppercase; font-size: 14px; margin-bottom: 8px; }
.extra select, .form input[type="text"], .form input[type="tel"], .form input[type="email"], .form textarea, .form select,
.checkout-fields input, .checkout-fields textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 16px; background: #fff; color: var(--navy);
  -webkit-user-select: text; user-select: text;
}
.size-row { display: flex; gap: 12px; margin-top: 8px; }
.size-row button {
  flex: 1; border: 2px solid var(--line); background: #fff; border-radius: 14px;
  padding: 18px 12px; font-weight: 800; cursor: pointer;
}
.size-row button.on { border-color: var(--accent); background: var(--accent-soft); }

.desktop-actions {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 28px; padding-top: 8px;
}
.footer-bar { display: none; }
.btn {
  border: 0; border-radius: 12px; padding: 13px 18px; font-weight: 800; cursor: pointer;
}
.btn-navy { background: var(--navy); color: #fff; }
.btn-accent, .btn-pink { background: var(--accent); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); }
.btn:disabled { opacity: .45; cursor: not-allowed; }
.btn-wide { width: 100%; }

.page { padding: 36px 40px 80px; max-width: 980px; margin: 0 auto; }
.page h1 { margin: 0 0 8px; font-size: 32px; }
.checkout-progress {
  position: relative;
  width: 100%;
  margin: 0 0 28px;
}
.checkout-progress-track {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 15px;
  height: 3px;
  background: #ededed;
}
.checkout-progress-bar {
  height: 100%;
  background: var(--accent);
}
.checkout-progress-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.checkout-progress-steps li {
  flex: 1;
  text-align: center;
}
.checkout-progress-steps li:first-child { text-align: left; }
.checkout-progress-steps li:last-child { text-align: right; }
.checkout-progress-steps button,
.checkout-progress-steps span {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  font: inherit;
}
.checkout-progress-steps button { cursor: pointer; }
.checkout-progress-steps em {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ededed;
  color: var(--navy);
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  font-size: 13px;
}
.checkout-progress-steps li.is-on em,
.checkout-progress-steps li.is-done em {
  background: var(--accent);
  color: #fff;
}
.checkout-progress-steps strong {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}
.checkout-progress-steps li.is-on strong { color: var(--navy); }
.thanks-email {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.cart-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: start; }
.card-head { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.sum-lines { margin: 10px 0 0; display: grid; gap: 6px; }
.sum-line {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.sum-line strong { color: var(--navy); font-weight: 700; }
.meta { color: var(--muted); font-size: 13px; line-height: 1.45; }
.chips { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.chip { background: var(--accent-soft); border-radius: 999px; padding: 3px 8px; font-size: 12px; font-weight: 600; }
.form { display: grid; gap: 12px; }
.form .row, .checkout-fields { display: grid; gap: 12px; }
.checkout-fields .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkout-fields.is-parked {
  position: fixed !important;
  left: -100vw;
  top: 0;
  width: 320px;
  opacity: 0;
  pointer-events: none;
}
html[data-view="checkout"] .footer-bar { display: none; }
html[data-view="checkout"] .desktop-actions { display: flex; }
html[data-view="checkout"] .page { padding-bottom: 40px; }
html[data-view="compose"] .footer-bar { display: none; }
html[data-view="compose"] .site-header {
  position: sticky;
  top: 0;
}
html[data-view="compose"] .bowl-col {
  position: sticky;
  top: 104px;
}
html[data-view="compose"] .site-footer { display: none; }
html[data-view="compose"] { overflow-x: clip; }
html[data-view="compose"] .compose { padding-bottom: 0; }
.addr-wrap {
  position: relative;
}
.addr-wrap .field {
  margin-bottom: 0;
  padding-right: 76px;
}
.addr-aside {
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.addr-npa {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 4px 8px;
  letter-spacing: .03em;
}
.addr-npa.is-out {
  background: #fde8e8;
  color: #a42318;
}
.addr-zone {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
}
.addr-zone.is-out { color: #a42318; }
.addr-zone.is-ok { color: #1f7a4d; }
.addr-loader {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent-soft);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.addr-suggest {
  position: fixed;
  z-index: 80;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(22, 56, 82, .16);
  max-height: 240px;
  overflow: auto;
  padding: 4px 0;
}
.addr-suggest button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: var(--navy);
}
.addr-suggest button:hover { background: var(--accent-soft); }
.addr-suggest .addr-line {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}
.addr-suggest .sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 1px;
}
.type-row { display: flex; gap: 8px; }
.type-row button { flex: 1; }
.order-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
}
.order-box h2 { margin: 0 0 14px; font-size: 22px; }
.type-picks { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 16px; }
.type-picks button {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; cursor: pointer;
  background: none; border: 0; padding: 0;
}
.type-picks button:before {
  content: "";
  width: 22px; height: 22px; flex: 0 0 22px;
  border: 2px solid var(--navy); border-radius: 4px;
}
.type-picks button.on:before {
  background: var(--navy);
  box-shadow: inset 0 0 0 3px #fff;
}
.slot-label { display: block; font-weight: 800; margin: 16px 0 8px; }
.place-picks { display: grid; gap: 8px; }
.place-picks label {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
}
.place-picks label.on { border-color: var(--navy); background: var(--accent-soft); }
.place-picks > label > input[type="radio"] {
  appearance: none; width: 22px; height: 22px; margin-top: 2px;
  border: 2px solid var(--navy); border-radius: 4px; cursor: pointer;
}
.place-picks label.on input {
  background: var(--navy);
  box-shadow: inset 0 0 0 3px #fff;
}
.place-picks strong { display: block; font-size: 15px; }
.place-picks em { display: block; font-style: normal; color: var(--muted); font-size: 13px; font-weight: 600; }
.ok { color: var(--ok); }
.empty { text-align: center; color: var(--muted); padding: 40px 12px; }
.summary-box { position: static; }
.cart-item {
  position: relative;
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 16px 56px;
  margin: 12px 0;
}
.cart-actions {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-edit,
.cart-remove {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  padding: 8px 12px;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
}
.cart-edit { background: var(--navy); }
.cart-remove { background: var(--bad); }
.cart-remove svg { width: 11px; height: 11px; fill: currentColor; }
.cart-edit:hover,
.cart-remove:hover { filter: brightness(1.08); }
.cart-bowl .bowl-wrap { max-width: 148px; margin: 0; }
.cart-thumb { width: 148px; height: 148px; object-fit: cover; border-radius: 12px; }
.pay-box { margin: 16px 0 8px; }
.pay-choice {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; cursor: default;
}
.pay-choice > input[type="radio"] {
  appearance: none; width: 18px; height: 18px; margin: 0; flex: 0 0 18px;
  border: 2px solid var(--navy); border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff, inset 0 0 0 9px var(--navy);
}
.pay-detail {
  margin: 10px 0 0 28px;
  background: #f3f1ee;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
}
.pay-detail p { margin: 0 0 8px; color: var(--text); }
.pay-brands {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}
.pay-brand {
  display: inline-flex;
  width: 38px;
  height: 26px;
  color: #6b7280;
}
.pay-brand svg,
.pay-brand img {
  width: 100%;
  height: 100%;
  display: block;
}
.pay-brand svg { fill: currentColor; }
.pay-brand img { object-fit: contain; }
.pay-brand-visa { color: #1a1f71; }
.pay-brand-mastercard { width: 42px; }
.pay-brand-twint {
  width: 46px;
  height: 26px;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.pay-brand-apple { color: #111827; width: 40px; }

@media (max-width: 980px) {
  .site-header-inner { grid-template-columns: 1fr auto auto auto; padding: 10px 12px; min-height: 68px; gap: 8px; }
  .nav-left, .nav-right { display: none; }
  .logo-btn { justify-self: start; }
  .lang-switch.is-mobile { display: block; }
  .cart-btn.is-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px 8px 9px;
    font-size: 12px;
    letter-spacing: .02em;
  }
  .cart-btn.is-mobile .cart-ico { width: 16px; height: 16px; }
  .burger { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open .site-header {
    background: transparent;
    border-bottom-color: transparent;
  }
  body.nav-open .cart-btn.is-mobile,
  body.nav-open .lang-switch.is-mobile {
    visibility: hidden;
    pointer-events: none;
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 1;
    align-items: center;
    justify-content: center;
    padding: max(96px, calc(env(safe-area-inset-top) + 72px)) 24px max(40px, env(safe-area-inset-bottom));
    background: var(--accent);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .28s ease, visibility .28s ease, transform .32s ease;
  }
  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .mobile-nav-panel {
    width: min(420px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
  }
  .mobile-nav-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .mobile-nav-city {
    appearance: none;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-nav-city.on {
    background: var(--navy);
    color: #fff;
  }
  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4px;
  }
  .mobile-nav-link {
    appearance: none;
    background: none;
    border: 0;
    width: 100%;
    padding: 10px 8px;
    font-weight: 900;
    font-size: clamp(28px, 8.4vw, 44px);
    letter-spacing: -.03em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
    cursor: pointer;
    text-align: center;
  }
  .mobile-nav-link.on { color: #fff; }
  .mobile-nav .lang-switch {
    display: inline-block;
    margin: 0;
  }
  .mobile-nav .lang-now {
    background: transparent;
    border-color: var(--navy);
  }
  .mobile-nav .lang-menu {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .logo-btn img { height: 44px; }
  .hero, .page-head, .story, .menu-wrap, .home-pokes, .compose-cta, .philo-teaser,
  .philo-hero, .philo-block, .philo-pillars, .philo-signatures { padding: 28px 16px; }
  .product-grid, .compose-cta, .contact-grid, .contact-shops, .product-hero, .cart-grid, .footer-grid, .form .row, .checkout-fields .row,
  .philo-block, .philo-pillars, .philo-teaser {
    grid-template-columns: 1fr;
  }
  .site-footer { text-align: center; }
  .footer-grid { justify-items: center; }
  .footer-grid > * { width: 100%; max-width: 420px; }
  .site-footer .socials { justify-content: center; }
  .site-footer .nl { justify-content: center; }
  .philo-block.is-reverse { direction: ltr; }
  .philo-photo.is-portrait { aspect-ratio: 4 / 5; max-height: none; }
  .compose { grid-template-columns: 1fr; gap: 8px; padding: 16px 16px 120px; }
  .options-col { margin-bottom: 0; }
  .bowl-col,
  html[data-view="compose"] .bowl-col { position: relative; top: 0; }
  .bowl-stage:before { display: none; }
  .bowl-frame,
  .bowl-wrap { max-width: 280px; }
  .bowl-title { display: none; }
  .bowl-title.is-desktop { display: none; }
  .bowl-price,
  .price-pop { display: none; }
  .price-tag { display: none; }
  html[data-view="compose"] .compose { padding-bottom: 0; }
  .price-pop.is-mobile {
    display: block;
    position: fixed;
    left: 50%;
    right: auto;
    bottom: 20px;
    z-index: 25;
    transform: translateX(-50%);
  }
  .compose-price-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
    margin: 0;
    border: 3px solid #fff;
    border-radius: 16px;
    padding: 12px 22px 10px;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 12px 28px rgba(22, 56, 82, .28);
    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    text-align: center;
    cursor: pointer;
  }
  .compose-price-mobile:hover { filter: brightness(1.08); }
  .price-detail.is-mobile {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    min-width: 260px;
  }
  .compose-price-mobile small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--accent);
  }
  body.nav-open .compose-price-mobile,
  body.nav-open .price-pop.is-mobile { display: none; }
  .options-intro { display: none; }
  .lede { display: block; margin: 0 0 16px; color: var(--muted); font-size: 14px; }
  .compose.is-intro {
    padding: 20px 20px 32px;
    text-align: center;
  }
  .compose.is-intro .bowl-frame,
  .compose.is-intro .bowl-wrap { max-width: 260px; margin: 0 auto 8px; }
  .compose.is-intro .bowl-title {
    display: block;
    text-align: center;
    font-size: clamp(34px, 9vw, 48px);
    margin: 8px 0 12px;
  }
  .compose.is-intro .compose-intro { display: block; max-width: 360px; margin: 0 auto; }
  .compose.is-intro .compose-intro h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 900;
    color: var(--navy);
  }
  .compose.is-intro .compose-intro p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.45;
  }
  .compose.is-intro .price-tag,
  .compose.is-intro .bowl-price,
  .compose.is-intro .price-pop,
  .compose.is-intro .options-col { display: none; }
  .compose.is-intro ~ .compose-price-mobile,
  .compose.is-intro ~ .price-pop.is-mobile { display: none; }
  .compose.is-intro .footer-bar { display: none; }
  .desktop-actions { display: none; }
  .footer-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0;
    background: #fff; border-top: 1px solid var(--line);
    justify-content: space-between; gap: 10px;
    padding: 12px 16px 18px; z-index: 20;
  }
  html[data-view="compose"] .footer-bar {
    display: flex;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 300px;
    padding: 12px 16px 18px;
    z-index: 1;
  }
  .page { padding: 20px 16px 120px; }
  .checkout-progress { margin: 0 0 20px; }
  .checkout-progress-steps strong { font-size: 11px; }
  html[data-view="cart"] .site-footer { padding-bottom: 120px; }
  .summary-box { position: static; }
  .cart-item { grid-template-columns: 110px 1fr; }
  .cart-bowl .bowl-wrap, .cart-thumb { max-width: 110px; width: 110px; height: 110px; }
}

.city-gate {
  position: fixed; inset: 0; z-index: 80;
  display: grid; place-items: center;
  padding: 24px 16px;
  background: rgba(22, 56, 82, .62);
}
.city-gate[hidden] { display: none; }
body.city-gate-on { overflow: hidden; }
.city-gate-card {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border-radius: 8px;
  padding: 42px 28px 32px;
  text-align: center;
  overflow: visible;
  box-shadow: 0 24px 64px rgba(22, 56, 82, .28);
}
.city-gate-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; padding: 0;
  border: 0; background: none; cursor: pointer;
  color: var(--muted);
}
.city-gate-close svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 2;
  stroke-linecap: round;
}
.city-gate-logo {
  display: block; height: 52px; margin: 0 auto 22px;
}
.city-gate-card h2 {
  margin: 0 0 28px;
  font-size: 28px; line-height: 1.25; font-weight: 700;
  color: #8a93a0;
}
.city-gate-card h2 span { color: var(--navy); }
.city-gate-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.city-gate-btn {
  min-width: 148px;
  border: 0; border-radius: 6px;
  padding: 14px 28px;
  font-size: 16px; font-weight: 800;
  letter-spacing: .02em;
  cursor: pointer;
}
.city-gate-btn { background: var(--city-accent, #7bdcb5); color: var(--navy); }
.city-gate-btn.ge { background: #7bdcb5; }
.city-gate-btn.ls { background: #ee9ab2; }
.city-gate-btn:hover { filter: brightness(.97); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
.reveal:has(input, textarea, select) {
  opacity: 1;
  transform: none;
  transition: none;
}
.city-gate:not([hidden]) {
  animation: fade-in .28s ease;
}
.city-gate:not([hidden]) .city-gate-card {
  animation: reveal-pop .5s cubic-bezier(.22, 1, .36, 1);
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes reveal-pop {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-link,
  .nav-cta,
  .nav-link::before,
  .nav-cta::before {
    transition: none;
  }
  .reveal,
  .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .city-gate:not([hidden]),
  .city-gate:not([hidden]) .city-gate-card {
    animation: none;
  }
}
