html {
  height: 100%;
  scroll-behavior: auto;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body,
button,
input,
select,
textarea {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  margin: 0;
  color: #0f172a;
}

body {
  min-height: 100%;
  background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Cpath fill='%23000000' fill-opacity='0.24' d='M1 3h1v1H1V3zm2-2h1v1H3V1z'%3E%3C/path%3E%3C/svg%3E");
}

* {
  text-transform: none !important;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #000000;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 70px;
  border-radius: 12px;
}

.brand-title {
  font-size: 20px;
  margin: 0;
  letter-spacing: .2px;
  color: #ffffff;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 18px;
  border-radius: 12px;
  border: 1px solid rgba(100, 116, 139, 0.16);
  color: #0f172a;
  font-weight: 600;
  background: #ffffff;
  transition: background-color .15s ease, border-color .15s ease;
}

.btn:hover {
  background: #f3f4f6;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px #93d4f1;
}

.section-head {
  display: block;
  padding: 16px 0 8px;
}

.title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
}

@media (min-width: 768px) {
  .title {
    font-size: 36px;
  }
}

.muted {
  color: #64748b;
}

.dish-list {
  display: flex;
  flex-wrap: wrap;
  margin: 16px -8px 24px -8px;
}

@media (max-width: 720px) {
  .dish-list {
    display: block;
    margin: 16px 0 24px;
  }
}

.dish-card {
  background: #ffffff;
  border: 1px solid rgba(100, 116, 139, 0.16);
  border-radius: 16px;
  padding: 18px;
  width: calc(50% - 16px);
  margin: 8px;
}

@media (max-width: 720px) {
  .dish-card {
    width: auto;
    margin: 0 0 16px 0;
  }
  .dish-card:last-child {
    margin-bottom: 0;
  }
}

.dish-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.dish-name {
  font-size: 18px;
  letter-spacing: .2px;
  font-weight: 700;
  line-height: 1.25;
}

.dish-price {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  color: #0f172a;
  flex-shrink: 0;
}

.allergens {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.allergen-ico {
  width: 28px;
  height: 28px;
}

.legal {
  margin-top: 8px;
}

.legal-text {
  color: #64748b;
  font-size: .95rem;
}

.site-footer {
  padding: 8px 0 28px;
}

.footer-row {
  display: flex;
  justify-content: flex-start;
}

a,
button,
.btn,
.ghost {
  -webkit-tap-highlight-color: transparent;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
  }
}

.btn.ghost {
  background: white;
  color: #0f172a;
  border: 1px solid rgba(100, 116, 139, 0.16);
}

.btn.ghost:hover {
  background: #f8fafc;
}

#langMenu {
  color: #0f172a !important;
  font-weight: 500;
  border-radius: 12px;
}

#langMenu a {
  color: inherit !important;
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
}

#langMenu a:hover {
  background: #f3f4f6;
}
