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

[hidden] {
  display: none !important;
}

:root {
  --warm-white: #f8f5ee;
  --warm-white-2: #f2ede1;
  --brand-green: #46703d;
  --brand-green-dark: #2f5a32;
  --brand-gold: #d2ae5d;
  --brand-gold-dark: #b88f3b;
  --text-dark: #1d2118;
  --text-soft: #5b6359;
  --white: #ffffff;
  --border-soft: rgba(70, 112, 61, 0.14);
  --shadow-soft: 0 14px 40px rgba(27, 33, 24, 0.08);
  --shadow-strong: 0 18px 50px rgba(20, 24, 18, 0.18);
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  padding-top: 78px;
}


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

a {
  color: var(--brand-green-dark);
  text-decoration: none;
}

a:hover {
  color: var(--brand-gold-dark);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(184, 143, 59, 0.82);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  min-width: 0;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(180deg, var(--warm-white-2), var(--warm-white));
}

.section-soft {
  background:
    radial-gradient(circle at top center, rgba(210, 174, 93, 0.12), transparent 35%),
    linear-gradient(180deg, #f9f5ea 0%, #f8f5ee 100%);
}

.section-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(210, 174, 93, 0.09), transparent 20%),
    radial-gradient(circle at 80% 30%, rgba(70, 112, 61, 0.08), transparent 24%),
    radial-gradient(circle at 60% 80%, rgba(184, 143, 59, 0.08), transparent 18%);
  pointer-events: none;
}

.section-dark {
  background: linear-gradient(135deg, rgba(47, 90, 50, 0.97), rgba(70, 112, 61, 0.96));
  color: var(--white);
}

.legal-page {
  background: var(--warm-white);
}

.legal-header {
  padding: 4.8rem 0 2rem;
  background:
    radial-gradient(circle at top left, rgba(210, 174, 93, 0.16), transparent 32%),
    linear-gradient(180deg, var(--warm-white-2), var(--warm-white));
}

.legal-header h1 {
  margin-bottom: 0;
}

.legal-content {
  padding: 2rem 0 5rem;
}

.legal-box {
  max-width: 880px;
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}

.legal-box h2 {
  margin-top: 1.8rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-box h2:first-child {
  margin-top: 0;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--brand-gold-dark);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-dark .eyebrow {
  color: #f5d995;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.12;
  font-family: "Cormorant Garamond", serif;
}

h1 {
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

h4 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 245, 238, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(70, 112, 61, 0.08);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-image-box {
  width: clamp(155px, 20vw, 260px);
  overflow: hidden;
  flex-shrink: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-box {
  width: clamp(130px, 16vw, 230px);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-image,
.footer-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  position: relative;
  font-weight: 600;
  color: var(--brand-green);
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--brand-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}


.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  background: var(--white);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 5px auto;
}

.hero {
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(17, 22, 18, 0.30), rgba(17, 22, 18, 0.34)),
    url("img/optimized/hero-restaurant.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.42) 34%,
      rgba(0, 0, 0, 0.18) 68%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    radial-gradient(circle at 18% 22%, rgba(210, 174, 93, 0.12), transparent 24%);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.action-grid,
.steps-grid {
  display: grid;
  gap: 1.6rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  min-height: 72vh;
}

.split-grid,
.action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero .eyebrow {
  color: #f4d489;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  color: #ffffff;
  max-width: none;
  margin-bottom: 1rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero-text {
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
  font-size: 1.08rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.hero-actions,
.section-head {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 1.5rem;
  gap: 0.85rem;
}

.premium-card,
.menu-item,
.step-card {
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.menu-item {
  overflow: hidden;
  padding: 0;
}

.section-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.about-card-image {
  padding: 1rem;
}

.contact-list,
.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 0.85rem;
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.2rem 0 0.75rem;
}

.reservation-card {
  display: grid;
  gap: 0.85rem;
}


.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}








.social-list-item {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.social-links a {
  font-weight: 800;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(70, 112, 61, 0.1);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.section-head {
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.centered-head {
  justify-content: center;
  text-align: center;
}

.section-note,
.small-note {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.section-note {
  max-width: 320px;
  text-align: right;
}

.section-notes {
  display: grid;
  gap: 0.35rem;
}

.section-notes .section-note {
  margin-bottom: 0;
}

.light-note {
  color: rgba(255, 255, 255, 0.85);
}

.menu-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.25rem;
  position: relative;
  z-index: 1;
}

.menu-order-note {
  color: var(--text-soft);
  margin: 0;
}



.menu-tabs-shell {
  position: sticky;
  top: 78px;
  z-index: 999;
  margin-bottom: 1.75rem;
  padding: 0.75rem 0 0.25rem;
  background: rgba(248, 245, 238, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(70, 112, 61, 0.12);
}

.menu-tabs-shell::before,
.menu-tabs-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0.35rem;
  width: 34px;
  z-index: 2;
  pointer-events: none;
}

.menu-tabs-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--warm-white) 20%, transparent);
}

.menu-tabs-shell::after {
  right: 0;
  background: linear-gradient(270deg, var(--warm-white) 20%, transparent);
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0.7rem;
  padding: 0.2rem 0.15rem 0.9rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.menu-tabs::-webkit-scrollbar {
  height: 6px;
}

.menu-tabs::-webkit-scrollbar-thumb {
  background: rgba(70, 112, 61, 0.26);
  border-radius: 999px;
}

.menu-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.78rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(70, 112, 61, 0.12);
  box-shadow: 0 8px 24px rgba(27, 33, 24, 0.05);
  font-weight: 700;
  cursor: pointer;
  color: var(--text-dark);
  scroll-snap-align: start;
}

.menu-tab.active {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: var(--white);
  border-color: transparent;
}

.menu-panel {
  display: none;
  position: relative;
  z-index: 1;
}

.menu-panel.active {
  display: block;
}

.menu-category-note,
.menu-notice {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-weight: 600;
}

.menu-notice,
.alcohol-notice {
  border: 1px solid rgba(184, 143, 59, 0.28);
  border-radius: 14px;
  background: rgba(255, 248, 229, 0.9);
  color: #5f4514;
  padding: 0.85rem 1rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.menu-category-title {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

.menu-category-title h3 {
  margin-bottom: 0;
  color: var(--brand-green-dark);
  font-size: 1.45rem;
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.menu-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.2rem;
  min-width: 0;
}

.menu-item h3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.52rem;
  line-height: 1.22;
}

.menu-item h3 .item-name {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.12rem;
  min-width: 0;
  flex-wrap: wrap;
}

.menu-item h3 .item-meta {
  font-size: 0.68em;
  line-height: 1.05;
  position: relative;
  top: -0.28em;
  font-weight: 800;
  color: var(--brand-green-dark);
}

.menu-item h3 .item-price {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 1.18rem;
  color: var(--brand-green-dark);
}

.menu-item p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.item-note {
  margin-top: 0.75rem;
  font-size: 0.92rem;
}

.alcohol-item-note {
  color: #6b4a10;
  font-weight: 700;
}

.menu-item-actions {
  margin-top: 1rem;
}


.menu-item-unavailable {
  opacity: 0.72;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.step-card {
  text-align: center;
  padding: 1.7rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(249,245,234,0.85));
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
  color: #2c2110;
  font-weight: 800;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease;
  max-width: 100%;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2f5a32, #46703d);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  color: var(--white);
}

.btn-secondary,
.btn-gold {
  background: linear-gradient(135deg, #e0bc6a, #b88f3b);
  color: #251c0e;
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-gold:hover {
  color: #251c0e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  grid-auto-rows: 190px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(70, 112, 61, 0.12);
  box-shadow: 0 18px 45px rgba(27, 33, 24, 0.08);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.featured {
  grid-column: span 6;
  grid-row: span 1;
}

.gallery-item.wide {
  grid-column: span 6;
  grid-row: span 1;
}

.gallery-item.small {
  grid-column: span 3;
  grid-row: span 1;
}

.site-footer {
  padding: 2rem 0 1rem;
  background: #f1ecdf;
  border-top: 1px solid rgba(70, 112, 61, 0.08);
}

.footer-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-column a {
  color: var(--text-dark);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(70, 112, 61, 0.08);
  text-align: center;
  color: var(--text-soft);
  font-size: 0.95rem;
}


.delivery-info-card {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(70, 112, 61, 0.1);
}

.delivery-info-card h4 {
  color: var(--brand-green-dark);
}

.delivery-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  display: grid;
  gap: 0.4rem;
}

.delivery-list li {
  color: var(--text-soft);
  line-height: 1.4;
}

.pickup-discount {
  margin: 0;
  color: var(--brand-green-dark);
  font-weight: 800;
}


.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 4.75rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-dark));
  color: #2b2110;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  display: none;
}

.back-to-top.show {
  display: block;
}

@media (max-width: 980px) {
  body {
    padding-top: 72px;
  }

  .hero-grid,
  .split-grid,
  .action-grid,
  .menu-grid,
  .steps-grid,
  .footer-wrap,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    min-height: 72px;
    gap: 0.75rem;
  }

  .logo-image-box {
    width: 185px;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0.8rem;
    right: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(248, 245, 238, 0.98);
    border: 1px solid rgba(70, 112, 61, 0.1);
    box-shadow: 0 20px 40px rgba(27, 33, 24, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.15rem 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    min-height: auto;
    padding: 1.5rem 0 2.1rem;
  }

  .hero-grid {
    min-height: auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .gallery-item.featured,
  .gallery-item.wide,
  .gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 68px;
  }

  .container {
    width: min(var(--container), calc(100% - 1.1rem));
  }

  .section {
    padding: 3.8rem 0;
  }

  .legal-header {
    padding: 3.2rem 0 1.4rem;
  }

  .legal-content {
    padding: 1.2rem 0 3.5rem;
  }

  .legal-box {
    padding: 1.15rem;
  }

  .nav-wrap {
    min-height: 68px;
    gap: 0.65rem;
  }

  .logo-image-box {
    width: 160px;
  }

  .site-nav {
    top: 68px;
    left: 0.55rem;
    right: 0.55rem;
  }

  h1 {
    font-size: clamp(2rem, 8.8vw, 2.75rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .hero {
    padding: 0.9rem 0 1.35rem;
  }

  .hero h1 {
    max-width: none;
    margin-bottom: 0.75rem;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .hero-actions .btn,
  .reservation-actions .btn,

  .form-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: flex-start;
    gap: 0.65rem;
  }

  .section-head h2 {
    margin-bottom: 0;
  }

  .menu-actions-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .section-note {
    max-width: none;
    text-align: left;
  }

  .menu-tabs-shell::before,
  .menu-tabs-shell::after {
    width: 18px;
  }

  .menu-tab {
    padding: 0.7rem 0.95rem;
    font-size: 0.92rem;
  }

  .premium-card {
    border-radius: 16px;
    padding: 1rem;
  }

  .split-grid,
  .action-grid {
    gap: 1rem;
  }

  .menu-image,
  .section-image {
    height: 210px;
  }

  .menu-item {
    border-radius: 16px;
  }

  .menu-item-content {
    padding: 0.95rem;
  }

  .menu-item h3 {
    flex-direction: column;
    gap: 0.25rem;
    font-size: 1.12rem;
    line-height: 1.24;
    margin-bottom: 0.45rem;
  }

  .menu-item h3 .item-price {
    white-space: normal;
    font-family: "Inter", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
  }

  .menu-item h3 .item-meta {
    font-size: 0.78em;
  }

  .menu-item p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .menu-item-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 0.62rem 0.8rem;
  }

  .back-to-top {
    right: 0.7rem;
    bottom: 4.95rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }

  .gallery-item.featured,
  .gallery-item.wide,
  .gallery-item.small {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Static frontend cleanup: phone/email actions. */
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.static-menu-info {
  align-items: center;
}

.contact-note-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .static-menu-info {
    align-items: flex-start;
    flex-direction: column;
  }

  .inline-actions {
    width: 100%;
  }

  .inline-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/**Allergene**/

.legal-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1.2rem 0 2rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 16px;
  background: #fffdf8;
  border: 1px solid var(--border-soft);
}

.legal-table th,
.legal-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(70, 112, 61, 0.12);
  text-align: left;
  vertical-align: top;
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-table th {
  width: 90px;
  color: var(--brand-green-dark);
  font-weight: 800;
  white-space: nowrap;
}

.legal-table td {
  color: var(--text-dark);
}


/* Sticky Speisekarten-Kategorien FIX */
#menu {
  overflow: visible !important;
}

#menu .container {
  overflow: visible !important;
  position: relative;
  z-index: 2;
}

#menu .menu-tabs-shell {
  position: sticky !important;
  top: 78px !important;
  z-index: 9999 !important;
}

@media (max-width: 980px) {
  #menu .menu-tabs-shell {
    top: 72px !important;
  }
}

@media (max-width: 640px) {
  #menu .menu-tabs-shell {
    top: 68px !important;
  }
}
