:root {
  --bg: #ffffff;
  --panel: #f4f4f2;
  --card: #ffffff;
  --ink: #080808;
  --muted: #626262;
  --line: #d7d7d2;
  --accent: #080808;
  --accent-2: #545454;
  --soft: #efefec;
  --shadow: 0 18px 44px rgba(0,0,0,.12);
  --hero-text: #fff;
  --hero-muted: rgba(255,255,255,.88);
  --hero-overlay: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28) 48%, rgba(0,0,0,.52));
  --product-radius: 16px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
button, input { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: clamp(118px, 15vw, 180px);
  height: clamp(46px, 5.4vw, 58px);
  object-fit: contain;
}
.langbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: color-mix(in srgb, var(--card) 75%, transparent);
}
.langbar button {
  min-width: 48px;
  height: 36px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 14px;
}
.langbar button.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.landing {
  position: relative;
  min-height: calc(100vh - 92px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 76px 20px 120px;
  background: linear-gradient(180deg, #fff, var(--panel));
}
.hero-video, .hero-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video { object-fit: cover; opacity: .82; }
.hero-tint {
  background: var(--hero-overlay);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 92vw);
  text-align: center;
}
.hero-logo {
  width: min(340px, 64vw);
  height: auto;
  max-height: 140px;
  object-fit: contain;
  margin-bottom: 24px;
}
.hero-content h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(42px, 8.6vw, 112px);
  line-height: .88;
  letter-spacing: .08em;
  color: var(--hero-text);
  text-shadow: 0 12px 34px rgba(0,0,0,.26);
}
.hero-content p {
  margin: 18px 0 36px;
  color: var(--hero-muted);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.primary-btn, .dark-btn, .outline-btn {
  min-height: 44px;
  border-radius: 8px;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.primary-btn, .dark-btn {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}
.outline-btn {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
}
.primary-btn:hover, .dark-btn:hover, .outline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  filter: saturate(1.08);
}
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 38px;
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 122px;
  padding: 0 12px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 76%, transparent);
  border: 1px solid color-mix(in srgb, var(--hero-muted) 22%, var(--accent) 42%);
  gap: 10px;
  color: color-mix(in srgb, var(--hero-text) 88%, var(--accent) 12%);
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 10px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.socials svg { width: 16px; height: 16px; display: block; }
.socials span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.landing-note {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 34px;
  text-align: center;
  color: var(--hero-muted);
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.landing-note a {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  line-height: 1.35;
  color: inherit;
  letter-spacing: .08em;
  text-decoration: none;
}
.landing-note a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.category-page, .menu-page { background: var(--panel); min-height: calc(100vh - 74px); }
.detail-open { overflow: hidden; }
.category-hero {
  min-height: 0;
  padding: clamp(18px, 4vw, 34px) clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}
.campaign-slider {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
}
.banner-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.banner-slider::-webkit-scrollbar { display: none; }
.banner-slide {
  position: relative;
  flex: 0 0 100%;
  aspect-ratio: 16 / 7;
  min-height: 0;
  overflow: hidden;
  border-radius: 10px;
  scroll-snap-align: start;
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.banner-slide img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}
.banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.48));
}
.banner-slide-copy {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  bottom: auto;
  width: min(74%, 720px);
  transform: translate(-50%, -50%);
  padding: clamp(14px, 2.4vw, 26px) clamp(18px, 4vw, 48px);
  border: 1px solid var(--banner-border, color-mix(in srgb, var(--accent) 42%, rgba(255,255,255,.7)));
  background: var(--banner-copy-bg, color-mix(in srgb, var(--card) 88%, transparent));
  color: var(--banner-title, var(--banner-text, var(--accent)));
  text-align: center;
  text-shadow: none;
  box-shadow: 0 18px 42px rgba(0,0,0,.14);
  backdrop-filter: blur(3px);
}
.banner-slide-copy strong {
  display: block;
  font-size: clamp(20px, 3.6vw, 38px);
  line-height: 1;
  font-weight: 950;
  color: var(--banner-title, var(--banner-text, var(--accent)));
}
.banner-slide-copy span {
  display: block;
  max-width: 680px;
  margin-top: 8px;
  margin-inline: auto;
  color: var(--banner-subtitle, var(--banner-text, color-mix(in srgb, var(--ink) 76%, var(--muted))));
  font-size: clamp(12px, 1.6vw, 16px);
  font-weight: 750;
}
.banner-slide-copy span:first-child { margin-top: 0; }
.campaign-slider .banner-dots {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 10px;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
  pointer-events: auto;
}
.campaign-slider .banner-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  transition: width .2s, background .2s;
}
.campaign-slider .banner-dots span.active {
  width: 16px;
  background: #fff;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  padding: clamp(28px, 5vw, 70px);
}
.category-title {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.category-back {
  grid-column: 1 / -1;
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  color: var(--ink);
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cat-card, .strip-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #ddd;
  padding: 0;
}
.cat-card { aspect-ratio: 1 / 1; box-shadow: var(--shadow); }
.cat-card img, .strip-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.cat-card span, .strip-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 28%;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(0,0,0,.44);
  color: #fff;
  font-weight: 760;
  font-size: clamp(14px, 2.2vw, 20px);
  text-transform: uppercase;
}
.category-strip {
  position: sticky;
  top: 74px;
  z-index: 15;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 12px clamp(18px, 4vw, 56px);
  background: color-mix(in srgb, var(--panel) 92%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  scroll-padding-inline: clamp(18px, 4vw, 56px);
}
.menu-banner {
  padding: 26px clamp(18px, 5vw, 72px) 18px;
  background: var(--panel);
}
.menu-banner .banner-slide {
  aspect-ratio: 16 / 5;
  min-height: 0;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.menu-banner .banner-slide-copy {
  text-align: center;
}
.menu-banner .banner-slide-copy strong {
  font-size: clamp(22px, 4vw, 44px);
}
.menu-banner-card {
  position: relative;
  width: 100%;
  height: clamp(150px, 24vw, 240px);
  overflow: hidden;
  border-radius: 14px;
  background: var(--soft);
  box-shadow: var(--shadow);
}
.menu-banner-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.menu-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.18));
}
.menu-banner-copy {
  position: absolute;
  left: 7%;
  right: 7%;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  padding: 18px 22px;
  background: rgba(255,255,255,.78);
  color: #df552f;
  text-align: center;
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.menu-banner-copy span {
  display: block;
  margin-top: 6px;
  color: #3d342e;
  font-size: clamp(12px, 1.8vw, 18px);
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: none;
}
.strip-card {
  flex: 0 0 116px;
  width: 116px;
  height: 88px;
}
.strip-card span { min-height: 36%; font-size: 11px; padding: 7px 8px; line-height: 1.08; }
.strip-card.active { outline: 2px solid var(--accent); outline-offset: 3px; }
.menu-tools {
  position: sticky;
  top: calc(74px + 113px);
  z-index: 14;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.menu-tools input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  padding: 0 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  outline: none;
}
.menu-tools input:focus,
.menu-tools input:focus-visible {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 1px var(--accent);
  caret-color: var(--accent);
}
.menu-tools input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.3 2.2 8 6.9l4.7-4.7 1.1 1.1L9.1 8l4.7 4.7-1.1 1.1L8 9.1l-4.7 4.7-1.1-1.1L6.9 8 2.2 3.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.3 2.2 8 6.9l4.7-4.7 1.1 1.1L9.1 8l4.7 4.7-1.1 1.1L8 9.1l-4.7 4.7-1.1-1.1L6.9 8 2.2 3.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  cursor: pointer;
}
.menu-tools input::placeholder { color: var(--muted); }
#back-categories {
  width: 100%;
  min-width: 0;
}
.sections {
  padding: 20px clamp(18px, 4vw, 56px) 90px;
}
.menu-section {
  scroll-margin-top: 230px;
  margin-bottom: 72px;
}
.menu-section h2 {
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  color: var(--accent);
  text-transform: uppercase;
  font-size: clamp(17px, 2.1vw, 24px);
  letter-spacing: .02em;
}
.promo {
  margin: 0 0 24px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
.product-list {
  display: grid;
  gap: 18px;
}
.empty-section {
  margin: 0;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}
.product-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(160px, 18vw, 230px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  height: auto;
  min-height: 190px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.product-card img {
  grid-column: 2;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: 0 12px 12px 0;
}
.product-info {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
  padding: 20px 22px;
}
.product-card.has-desc.has-icons .product-info,
.product-card.has-desc.has-badge .product-info {
  justify-content: flex-start;
}
.product-info h3 {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.18;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-info p {
  margin: 0;
  min-width: 0;
  max-height: calc(2 * 1.34em);
  overflow: hidden;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.34;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.price-row {
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.price-row strong {
  min-width: 0;
  font-size: 1.08rem;
  white-space: nowrap;
}
.product-card .price-row strong { color: var(--accent); }
.badge {
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: .1em;
  font-size: .72rem;
  text-transform: uppercase;
}
.product-icons, .detail-icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}
.product-icons {
  min-height: 30px;
  max-height: 30px;
  overflow: hidden;
  align-items: center;
  flex-wrap: nowrap;
  gap: 6px;
  padding: 2px 0;
}
.product-icon {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 6px;
  min-height: 30px;
  border: 1px solid color-mix(in srgb, var(--accent) 58%, var(--line));
  border-radius: 999px;
  padding: 3px 9px 3px 4px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, var(--card) 82%), color-mix(in srgb, var(--soft) 76%, var(--card) 24%));
  color: color-mix(in srgb, var(--accent) 86%, var(--hero-text) 14%);
  min-width: 0;
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 18%, transparent), 0 8px 18px rgba(0,0,0,.14);
}
.product-icon b {
  display: inline-grid;
  place-items: center;
  width: 22px;
  min-width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 1px solid color-mix(in srgb, currentColor 70%, transparent);
  border-radius: 50%;
  line-height: 1;
  font-style: normal;
  overflow: hidden;
  background: color-mix(in srgb, var(--accent) 22%, var(--card) 78%);
}
.product-icon svg {
  display: block;
  width: 13.5px;
  height: 13.5px;
  flex: 0 0 13.5px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}
.product-icon em {
  font-style: normal;
  font-weight: 850;
  font-size: .72rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  max-width: 128px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-icons .product-icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 50%;
  border-color: color-mix(in srgb, var(--accent) 54%, var(--line));
  background: color-mix(in srgb, var(--accent) 10%, var(--card) 90%);
  color: color-mix(in srgb, var(--accent) 88%, var(--hero-text) 12%);
}
.product-icons .product-icon b {
  width: 28px;
  min-width: 28px;
  height: 28px;
  flex-basis: 28px;
  border: none;
  background: transparent;
}
.product-icons .product-icon svg {
  width: 17px;
  height: 17px;
  flex-basis: 17px;
}
.product-icons .product-icon:nth-child(n+7) {
  display: none;
}

.footer {
  display: none;
  padding: 72px 24px;
  background: var(--accent);
  color: #fff;
  text-align: center;
}
.footer h2 {
  margin: 0;
  font-family: Georgia, serif;
  letter-spacing: .38em;
  font-weight: 400;
}
.footer p { color: rgba(255,255,255,.72); }
.footer a { color: #fff; }

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(10px);
}
.product-detail, .campaign-detail {
  position: relative;
  z-index: 1;
  width: min(500px, 86vw);
  max-height: 84vh;
  overflow: auto;
  border-radius: 24px;
  background: var(--card);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.product-detail img, .campaign-detail img {
  width: 100%;
  height: min(36vh, 310px);
  display: block;
  object-fit: cover;
}
.modal-body { padding: 24px 30px 30px; }
.modal-body h2 { margin: 0 0 10px; font-size: clamp(22px, 3.4vw, 30px); line-height: 1.08; }
.modal-body p { margin: 0 0 18px; color: var(--muted); font-size: clamp(15px, 2.2vw, 19px); line-height: 1.35; }
.modal-body strong { font-size: clamp(19px, 2.5vw, 24px); }
.modal#product-modal {
  place-items: center;
  padding: clamp(24px, 4vw, 56px);
  background: var(--panel);
  overflow-y: auto;
}
.modal#product-modal .product-detail {
  display: grid;
  grid-template-columns: minmax(420px, 56%) minmax(340px, 1fr);
  width: min(1180px, calc(100vw - 72px));
  max-height: none;
  min-height: min(640px, calc(100vh - 96px));
  margin: 0;
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
  overflow: hidden;
  background: var(--card);
}
.modal#product-modal .product-detail img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: min(640px, calc(100vh - 96px));
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}
.detail-back {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  top: clamp(18px, 3vw, 34px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #111;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,.16);
}
.product-meta {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: min(52%, 620px);
  margin: 0;
}
.product-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--line));
  border-radius: 999px;
  background: color-mix(in srgb, var(--card) 82%, transparent);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.product-meta svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.modal#product-modal .modal-body {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: clamp(42px, 5vw, 72px) clamp(34px, 4vw, 56px);
  border-radius: 0;
  background: var(--card);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.detail-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}
.detail-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.detail-title-row h2 {
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(32px, 3.4vw, 52px);
}
.detail-badge {
  display: none;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--card);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-badge:not(:empty) {
  display: inline-flex;
}
.detail-like {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 46%, transparent);
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.28), transparent 30%),
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, var(--card)), color-mix(in srgb, var(--accent) 7%, var(--card)));
  color: var(--accent);
  font-size: 21px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 18px rgba(0,0,0,.14);
}
.detail-like:empty {
  display: none;
}
.modal#product-modal .modal-body p {
  margin-bottom: 20px;
  white-space: pre-line;
  word-break: normal;
  overflow-wrap: normal;
  line-height: 1.38;
  font-size: clamp(16px, 1.25vw, 19px);
}
.modal#product-modal .modal-body strong {
  display: block;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: clamp(24px, 2vw, 32px);
}
.detail-icons-list {
  margin-top: 0;
  gap: 6px 7px;
}
.detail-icons-list .product-icon {
  color: color-mix(in srgb, var(--accent) 84%, var(--hero-text) 16%);
  border-color: color-mix(in srgb, var(--accent) 66%, var(--line));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 16%, var(--card) 84%), color-mix(in srgb, var(--soft) 82%, var(--card) 18%));
  min-height: 25px;
  padding: 2px 7px 2px 3px;
  font-size: 11px;
}
.detail-icons-list .product-icon b {
  width: 19px;
  min-width: 19px;
  height: 19px;
  flex-basis: 19px;
  background: color-mix(in srgb, var(--accent) 24%, var(--card) 76%);
}
.detail-icons-list .product-icon svg {
  width: 10.5px;
  height: 10.5px;
  flex-basis: 10.5px;
}
.detail-icons-list .product-icon em {
  font-size: 11px;
  max-width: min(170px, 46vw);
}
.modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.86);
  color: #fff;
  font-size: 0;
  line-height: 1;
}
.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}
.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 96px;
    padding: 16px 24px;
    gap: 16px;
  }
  .brand {
    min-width: 0;
    line-height: 1.05;
  }
  .brand img {
    width: clamp(122px, 34vw, 180px);
    height: 56px;
    flex: 0 0 auto;
  }
  .langbar {
    flex: 0 0 auto;
    gap: 4px;
    padding: 5px;
    border-radius: 12px;
  }
  .langbar button {
    min-width: 48px;
    height: 40px;
    font-size: 14px;
  }
  .category-strip {
    top: 96px;
    padding: 18px 34px 20px;
    gap: 16px;
    scroll-padding-inline: 34px;
  }
  .strip-card {
    flex: 0 0 min(140px, 32vw);
    width: min(140px, 32vw);
    height: min(140px, 32vw);
    border-radius: 10px;
  }
  .strip-card.active {
    outline-width: 2px;
    outline-offset: 3px;
  }
  .menu-tools {
    top: 274px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px 18px;
    padding: 20px 34px 22px;
  }
  .menu-tools input {
    grid-column: 1;
    grid-row: 1;
    min-height: 54px;
    font-size: 13px;
  }
  #back-categories {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
  }
  .sections {
    padding: 34px 34px 110px;
  }
  .menu-section {
    scroll-margin-top: 380px;
  }
  .menu-section h2 {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .product-list { gap: 18px; }
  .product-card {
    grid-template-columns: minmax(0, 1fr) 150px;
    height: auto;
    min-height: 176px;
    border-radius: 12px;
  }
  .product-card img { height: 100%; min-height: 176px; }
  .product-info { padding: 16px 18px; gap: 8px; }
  .product-info h3 { font-size: .96rem; }
  .product-info p { font-size: .9rem; -webkit-line-clamp: 2; }
  .price-row strong { font-size: 1rem; }
  .product-icons .product-icon:nth-child(n+6) {
    display: none;
  }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 24px; padding: 34px; }
}

@media (max-width: 620px) {
  .site-header {
    position: sticky;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 0;
    padding: 9px 68px 13px 14px;
    gap: 10px;
  }
  .brand {
    justify-content: flex-start;
    flex: 0 1 auto;
  }
  .brand img {
    width: clamp(96px, 30vw, 140px);
    height: 36px;
  }
  .langbar {
    position: absolute;
    top: 9px;
    right: 14px;
    width: 54px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 4px;
    border-radius: 9px;
  }
  .langbar button {
    min-width: 0;
    width: 44px;
    flex: 0 0 auto;
    height: 34px;
    font-size: 12px;
    letter-spacing: .08em;
  }
  .langbar button:not(.active) {
    display: none;
  }
  .langbar.open {
    border-radius: 12px;
    gap: 6px;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    box-shadow: 0 16px 34px rgba(0,0,0,.16);
  }
  .langbar.open button:not(.active) {
    display: block;
    background: transparent;
    border-color: var(--line);
  }
  .landing {
    min-height: calc(100svh - 58px);
    min-height: calc(100dvh - 58px);
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    place-items: center;
    padding: clamp(22px, 5svh, 40px) 20px 84px;
  }
  .hero-content {
    align-self: center;
    margin-top: 0;
    transform: translateY(-2vh);
  }
  .hero-logo {
    width: min(246px, 60vw);
    max-height: 100px;
    margin-bottom: 12px;
  }
  .hero-content h1 {
    font-size: clamp(38px, 11vw, 66px);
    letter-spacing: .04em;
  }
  .hero-content p {
    margin: 14px 0 28px;
    font-size: 13px;
    letter-spacing: .2em;
  }
  .primary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 320px);
    margin-inline: auto;
    min-height: 42px;
    font-size: 11px;
    text-align: center;
  }
  .socials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 320px);
    margin: 28px auto 0;
    gap: 8px;
    justify-content: center;
    justify-items: stretch;
  }
  .socials a {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0 8px;
    gap: 7px;
    font-size: 10px;
  }
  .socials svg { width: 15px; height: 15px; }
  .landing-note {
    bottom: calc(14px + env(safe-area-inset-bottom));
    font-size: 11px;
    line-height: 1.28;
    letter-spacing: .1em;
  }
  .landing-note a {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.22;
    letter-spacing: .045em;
  }
  .category-hero {
    min-height: 0;
    padding: 18px 20px;
  }
  .category-hero .banner-slide {
    aspect-ratio: 16 / 8;
    min-height: 0;
  }
  .category-hero .banner-slide-copy {
    width: 82%;
    padding: 12px 16px;
  }
  .category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
  }
  .cat-card {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }
  .cat-card span {
    min-height: 28%;
    font-size: clamp(15px, 4vw, 19px);
    padding: 8px;
  }
  .category-strip {
    top: 64px;
    padding: 14px 20px 16px;
    gap: 14px;
  }
  .menu-banner {
    padding: 18px 20px 12px;
  }
  .menu-banner .banner-slide {
    aspect-ratio: 16 / 7;
    min-height: 0;
  }
  .menu-banner .banner-slide-copy {
    width: 84%;
    padding: 12px 16px;
  }
  .strip-card {
    flex: 0 0 min(126px, 32vw);
    width: min(126px, 32vw);
    height: min(126px, 32vw);
  }
  .strip-card span { font-size: 12px; }
  .menu-tools {
    position: sticky;
    top: 206px;
    z-index: 14;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 18px 20px 20px;
  }
  #back-categories {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    padding-inline: 16px;
    font-size: 13px;
    letter-spacing: .1em;
  }
  .menu-tools input {
    grid-column: 1;
    grid-row: 1;
    min-height: 50px;
    font-size: 12px;
    padding-inline: 18px;
  }
  .sections {
    padding: 28px 20px 100px;
  }
  .menu-section {
    scroll-margin-top: 300px;
  }
  .product-card {
    grid-template-columns: minmax(0, 1fr) 140px;
    height: auto;
    min-height: 140px;
    border-radius: 12px;
  }
  .product-card img {
    height: 100%;
    min-height: 140px;
  }
  .product-info {
    min-width: 0;
    padding: 12px 13px;
    gap: 4px;
  }
  .product-card.has-desc.has-icons .product-info,
  .product-card.has-desc.has-badge .product-info {
    justify-content: flex-start;
  }
  .product-info h3 {
    font-size: .86rem;
    line-height: 1.12;
  }
  .product-info p {
    font-size: .76rem;
    line-height: 1.2;
    max-height: calc(2 * 1.2em);
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
  .price-row strong { font-size: .9rem; }
  .badge {
    padding: 3px 8px;
    font-size: .62rem;
    letter-spacing: .08em;
  }
  .product-icons {
    gap: 5px;
    min-height: 28px;
    height: 28px;
    max-height: 28px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 2px 0;
  }
  .product-icons .product-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    min-height: 28px;
  }
  .product-icons .product-icon:nth-child(n+5) {
    display: none;
  }
  .product-icons .product-icon b {
    width: 26px;
    min-width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
  .product-icons .product-icon svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }
  .modal {
    padding: 20px;
  }
  .modal#product-modal {
    padding: 0;
    place-items: stretch;
    background: var(--card);
  }
  .modal#product-modal .product-detail {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    box-shadow: none;
    overflow: visible;
    background: var(--card);
  }
  .modal#product-modal .product-detail img {
    height: 42vh;
    min-height: 280px;
    object-fit: cover;
  }
  .detail-back {
    position: fixed;
    left: 14px;
    top: 14px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }
  .product-meta {
    position: relative;
    width: calc(100% - 36px);
    margin-top: -74px;
    left: auto;
    bottom: auto;
    gap: 8px;
  }
  .product-meta span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 13px;
  }
  .product-meta svg {
    width: 14px;
    height: 14px;
  }
  .modal#product-modal .modal-body {
    width: 100%;
    margin-top: 8px;
    padding: 32px 20px 44px;
    border-radius: 24px 24px 0 0;
    display: block;
    min-height: 0;
    background: var(--card);
  }
  .modal#product-modal .product-detail {
    width: 100%;
    max-height: none;
    border-radius: 0;
  }
  .product-detail, .campaign-detail {
    width: min(430px, 88vw);
    max-height: 82vh;
    border-radius: 22px;
  }
  .product-detail img, .campaign-detail img {
    height: min(34vh, 300px);
  }
  .modal#product-modal .product-detail {
    width: 100%;
    max-height: none;
    overflow: visible;
    border-radius: 0;
    background: var(--card);
    box-shadow: none;
  }
  .modal#product-modal .product-detail img {
    height: 42vh;
    min-height: 280px;
    background: var(--card);
  }
  .modal#product-modal .modal-body {
    margin-bottom: 0;
    background: var(--card);
  }
  .modal#product-modal,
  .modal#product-modal .product-detail,
  .modal#product-modal .modal-body,
  .modal#product-modal #modal-icons,
  .modal#product-modal .detail-icons-list {
    background-color: var(--card);
  }
  .modal-body {
    padding: 24px 26px 28px;
  }
  .modal-body h2 {
    font-size: 23px;
  }
  .modal#product-modal .modal-body h2 {
    font-size: 22px;
    line-height: 1.08;
  }
  .modal-body p {
    font-size: 15px;
  }
  .modal#product-modal .modal-body p {
    font-size: 14px;
    line-height: 1.36;
  }
  .modal-close {
    width: 34px;
    height: 34px;
    right: 14px;
    top: 14px;
  }
  .modal-close::before,
  .modal-close::after {
    width: 15px;
    height: 3px;
  }
  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .product-card .price-row {
    align-items: center;
    flex-direction: row;
    gap: 8px;
  }
  .product-icons {
    height: 28px;
    max-height: 28px;
  }
}

@media (max-width: 430px) {
  .site-header {
    padding: 8px 58px 12px 10px;
  }
  .brand {
    min-width: 0;
  }
  .brand img {
    width: clamp(86px, 28vw, 118px);
    height: 34px;
  }
  .landing {
    min-height: calc(100svh - 54px);
    min-height: calc(100dvh - 54px);
    padding: clamp(18px, 4svh, 30px) 18px 78px;
  }
  .hero-content {
    margin-top: 0;
    transform: translateY(-1.5vh);
  }
  .hero-logo {
    width: min(228px, 58vw);
    max-height: 92px;
    margin-bottom: 10px;
  }
  .hero-content p {
    margin: 12px 0 24px;
    font-size: 12px;
  }
  .primary-btn {
    width: min(100%, 300px);
    min-height: 40px;
  }
  .socials {
    width: min(100%, 300px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }
  .langbar button {
    width: 34px;
    height: 32px;
    font-size: 11px;
    letter-spacing: .06em;
  }
  .langbar {
    top: 8px;
    right: 10px;
    width: 44px;
  }
  .landing-note {
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    font-size: 10px;
    letter-spacing: .085em;
  }
  .landing-note a {
    font-size: 9px;
    letter-spacing: .035em;
  }
  .category-strip {
    top: 58px;
    padding-inline: 14px;
  }
  .strip-card {
    flex: 0 0 min(112px, 38vw);
    width: min(112px, 38vw);
    height: min(112px, 38vw);
  }
  .menu-tools {
    top: 190px;
    padding-inline: 14px;
    gap: 12px;
  }
  .menu-tools input {
    min-height: 46px;
    font-size: 11px;
    padding-inline: 14px;
  }
  #back-categories {
    min-width: 0;
    min-height: 46px;
    font-size: 11px;
    padding-inline: 10px;
  }
  .sections {
    padding-inline: 14px;
  }
  .menu-section {
    scroll-margin-top: 280px;
  }
  .product-card {
    grid-template-columns: minmax(0, 1fr) 120px;
    height: auto;
    min-height: 120px;
  }
  .product-card img {
    min-height: 120px;
  }
  .product-info {
    min-width: 0;
    padding: 10px 11px;
    gap: 4px;
  }
  .product-card.has-desc.has-icons .product-info,
  .product-card.has-desc.has-badge .product-info {
    justify-content: flex-start;
  }
  .product-info h3 { font-size: .82rem; }
  .product-info p {
    font-size: .74rem;
    line-height: 1.18;
    max-height: calc(2 * 1.18em);
  }
  .price-row strong { font-size: .86rem; }
  .badge {
    padding: 3px 7px;
    font-size: .58rem;
  }
}

@media (max-width: 360px) {
  .product-card {
    grid-template-columns: minmax(0, 1fr) 108px;
    min-height: 108px;
  }
  .product-card img {
    min-height: 108px;
  }
  .product-icons .product-icon:nth-child(n+4) {
    display: none;
  }
}
