/* =========================
   Base
========================= */
:root{
  --bg: #0b0b0b;
  --text: #f3f3f3;
  --muted: #cfcfcf;
  --line: rgba(255,255,255,.14);
    --brand: #111;
  --accent-red: #d0453a;
--card: rgba(255,255,255,.06);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --nav-h: 76px;
  --container: 1180px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: #fff;
  color: #111;
}

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

/* Layout */
.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================
   Navbar
========================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav{
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav__links{
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  align-items: center;

  flex: 1;
  justify-content: center;
  order: 1;}

.nav__links a{
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}

.nav__links a:hover{
  background: rgba(0,0,0,.06);
}

.nav__logo{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;

  order: 0;}

.nav__logo img{
  height: 44px;
  width: auto;
}

/* Burger (Mobile) */
.nav__burger{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.8);
  border-radius: 14px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
    flex-direction: column;
gap: 5px;
  padding: 0;

  order: 2;}

.nav__burger span{
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* =========================
   Hero Slider
========================= */
.hero{
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 560px;
  overflow: hidden;
  background: #000;
}

.hero__slider{
  position: relative;
  height: 100%;
}

.hero__slides{
  position: absolute;
  inset: 0;
}

.hero__slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .8s ease, transform 1.2s ease;
}

.hero__slide.is-active{
  opacity: 1;
  transform: scale(1);
}

.hero__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(.95);
}

/* dark gradient overlay for text readability */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* overlay content */
.hero__overlay{
  position: relative;
  height: 100%;
  display: grid;
  align-items: center;
  z-index: 2;
}

.hero__content{
  max-width: 560px;
  color: var(--text);
}

.hero__eyebrow{
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  margin: 0 0 12px 0;
}

.hero__title{
  margin: 0 0 10px 0;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
}

.hero__sub{
  margin: 0 0 20px 0;
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.55;
}

.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  will-change: transform;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: rgba(255,255,255,.92);
  color: #111;
  border-color: rgba(255,255,255,.28);
}

.btn--primary:hover{
  background: rgba(255,255,255,1);
}

.btn--ghost{
  background: rgba(0,0,0,.22);
  color: var(--text);
  border-color: rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
}
.btn--order{
  background: var(--accent-red);
  color: #fff;
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.btn--order:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.btn--order:active{
  transform: translateY(0);
}

.icon{
  width: 18px;
  height: 18px;
  display: inline-block;
}


.btn--ghost:hover{
  background: rgba(0,0,0,.35);
}

/* Buttons for light sections */
.btn--dark{
  background: #111;
  color: #fff;
  border-color: rgba(0,0,0,.18);
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.btn--dark:hover{ background: #000; }

.btn--outline{
  background: transparent;
  color: #111;
  border-color: rgba(0,0,0,.18);
  box-shadow: none;
}

.btn--outline:hover{ background: rgba(0,0,0,.05); }

/* arrows */
.hero__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.25);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  transition: background .15s ease, transform .15s ease;
}

.hero__arrow:hover{ background: rgba(0,0,0,.38); }
.hero__arrow:active{ transform: translateY(-50%) scale(.98); }
.hero__arrow span{ font-size: 26px; line-height: 1; }

.hero__arrow--left{ left: 18px; }
.hero__arrow--right{ right: 18px; }

/* dots */
.hero__dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
}

.hero__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.2);
  cursor: pointer;
  padding: 0;
}

.hero__dot.is-active{
  background: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.9);
}

/* =========================
   Sections
========================= */
.section{
  padding: 84px 0;
}

.section--alt{
  background: #f6f6f6;
}

.section h2{
  margin: 0 0 10px 0;
  font-size: 28px;
}

.section p{
  margin: 0;
  color: #444;
}

/* =========================
   Über Uns
========================= */
.section--about{
  background: #fff;
}

.about{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.kicker{
  margin: 0 0 8px 0;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  color: #111;
}

.about__since{
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fafafa;
  width: fit-content;
  margin: 0 0 16px 0;
}

.about__since-label{
  font-size: 12px;
  color: #666;
}

.about__since-year{
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  color: #111;
}

.about__title{
  margin: 0 0 14px 0;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.08;
}

.about__copy p{
  margin: 0 0 12px 0;
  color: #333;
  line-height: 1.75;
}

.about__copy p:last-child{ margin-bottom: 0; }

.about__actions{
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about__figure{
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 22px 70px rgba(0,0,0,.10);
}

.about__figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.15) contrast(1.02);
  transform: scale(1.01);
}

@media (max-width: 980px){
  .about{ grid-template-columns: 1fr; }
  .about__media{ order: -1; }
}

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.footer__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__top{
  color: #111;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.10);
}

.footer__top:hover{
  background: rgba(0,0,0,.05);
}

/* =========================
   Responsive
========================= */
@media (max-width: 980px){
  .hero__content{ max-width: 520px; }
}

@media (max-width: 820px){
  .nav__burger{ display: inline-flex; }
  .nav__links{
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(var(--nav-h) - 8px);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 18px 60px rgba(0,0,0,.12);
    display: none;
  }
  .nav__links.is-open{ display: flex; }
  .nav__links a{ padding: 12px 12px; }
  .hero__arrow--left{ left: 10px; }
  .hero__arrow--right{ right: 10px; }
  .nav__logo img{ height: 31px; }

}

@media (max-width: 520px){
  .hero{ min-height: 560px; }
  .hero__dots{ bottom: 12px; }
}



/* --- About (background hero) --- */
.section--about-hero{
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--white, #fff);
  overflow: hidden;
}
.about-hero__shade{
  position: relative;
  min-height: 100vh;
  padding: clamp(64px, 8vw, 96px) 0;
}
.section--about-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  pointer-events:none;
}
.section--about-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 600px at 20% 15%, rgba(255,255,255,.10), transparent 60%);
  pointer-events:none;
}
.about-hero__shade > *{ position: relative; z-index: 1; }

.section-header{
  margin-bottom: clamp(22px, 3vw, 34px);
}
.section-header--center{
  text-align: center;
}
.section-header__title{
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.02em;
}
.section-header__rule{
  width: 84px;
  height: 2px;
  margin: 12px auto 10px;
  background: rgba(255,255,255,.75);
  border-radius: 999px;
}
.section-header__kicker{
  margin: 0;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,1);
}
.section-header__kicker .muted{
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
}

.about-hero__grid{
  display: grid;
  gap: clamp(18px, 3vw, 30px);
  grid-template-columns: 1.2fr .8fr;
  align-items: start;
}
.about-hero__headline{
  margin: 0 0 12px;
  font-size: clamp(22px, 2.4vw, 30px);
}
.about-hero__copy p{
  margin: 0 0 12px;
  color: rgba(255,255,255,1);
  line-height: 1.65;
  max-width: 60ch;
}

.about-hero__right{
  display: grid;
  gap: 14px;
}

.feature-card{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.feature-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}
.feature-card__title{
  margin: 0 0 4px;
  font-size: 16px;
}
.feature-card__text{
  margin: 0;
  color: #fff;
  line-height: 1.55;
  font-size: 14px;
}

@media (max-width: 900px){
  .about-hero__grid{ grid-template-columns: 1fr; }
  .about-hero__copy p{ max-width: 100%; }
}



/* =========================
   Speisekarte (Grid + Modal)
========================= */
.section--menu{
  background: #f3f3f3;
  color: #111;
}

.section--menu .section-head__title{
  color:#111;
}

.section--menu .section-head__title span{
  color:#111;
  font-weight: 900;
}

.section--menu .section-head__sub{
  color: rgba(17,17,17,.72);
}

.menu-grid{
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.menu-card{
  border: 0;
  padding: 0;
  text-align: left;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease;

  /* iOS/Browser button reset */
  display: block;
  width: 100%;
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}


.menu-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}

.menu-card:focus-visible{
  outline: 3px solid rgba(0,0,0,.35);
  outline-offset: 4px;
}

.menu-card__media{
  position: relative;
  height: 178px;
  background: #e9e9e9;
}

.menu-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(.9) contrast(1.02);
}

.menu-card__media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 15%, rgba(0,0,0,.35) 100%);
  pointer-events:none;
}

.menu-card__media--placeholder::after{
  background: linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.25));
}

.menu-card__placeholder{
  width:100%;
  height:100%;
  background:
    radial-gradient(900px 220px at 20% 20%, rgba(0,0,0,.10), transparent 60%),
    radial-gradient(700px 240px at 80% 40%, rgba(0,0,0,.08), transparent 60%),
    linear-gradient(135deg, #e6e6e6, #f7f7f7);
}

.menu-card__body{
  padding: 16px 16px 18px 16px;
}

.menu-card__title{font-size: 1.15rem; font-weight: 800; letter-spacing: .2px; margin: 0 0 .35rem; color: #111;}


.menu-card__text{
  margin: 0 0 10px 0;
  color: rgba(17,17,17,.72);
  line-height: 1.45;
  font-size: 14px;
}

.menu-card__link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  color: rgba(17,17,17,.92);
}

.menu-cta{
  margin-top: 34px;
  display:flex;
  justify-content:center;
}

/* Dialog / Modal */
.menu-modal{
  width: min(980px, calc(100% - 28px));
  border: 0;
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}

.menu-modal::backdrop{
  background: rgba(0,0,0,.6);
}

.menu-modal__inner{
  position: relative;
  background: #fff;
  padding: 22px 22px 18px 22px;
  border-radius: 16px;
}

.menu-modal__close{
  position:absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.04);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
}

.menu-modal__close:hover{
  background: rgba(0,0,0,.07);
}

.menu-modal__title{
  margin: 4px 46px 14px 0;
  font-size: 24px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.menu-modal__table-wrap{
  max-height: min(70vh, 640px);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
}

/* Menü-Modal: Allergene/Preisstand */
.menu-modal__info{
  margin-top: 14px;
}

.menu-modal__details{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(0,0,0,.02);
}

.menu-modal__details > summary{
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  user-select: none;
}

.menu-modal__details > summary::-webkit-details-marker{
  display: none;
}

.menu-modal__details-body{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,.78);
}

.menu-modal__details-body p{
  margin: 0 0 10px 0;
}


.menu-table{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.menu-table thead th{
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fafafa;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(17,17,17,.68);
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.menu-table tbody td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-size: 14px;
  vertical-align: middle;
}

.menu-table tbody tr:nth-child(even){
  background: rgba(0,0,0,.02);
}

.menu-table .col-nr{ width: 54px; color: rgba(17,17,17,.65); }
.menu-table .col-item{ font-weight: 700; }
.menu-item__name{ font-weight: 700; }
.menu-item__desc{ margin-top: 4px; font-weight: 500; font-size: 12px; color: rgba(17,17,17,.7); line-height: 1.35; }
.menu-table .col-price{ text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-table .col-price strong{ font-weight: 900; }


/* Allergene/Zusatzstoffe als hochgestellte Zahlen */
.menu-item sup{
  font-size: 0.75em;
  vertical-align: super;
  line-height: 0;
}

.badge{
  display:inline-flex;
  align-items:center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  margin-left: 10px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.05);
  color: rgba(17,17,17,.85);
}

.badge--new{
  background: rgba(0,0,0,.88);
  color: #fff;
  border-color: rgba(0,0,0,.88);
}

@media (max-width: 1060px){
  .menu-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px){
  .menu-grid{ grid-template-columns: 1fr; }
  .menu-card__media{ height: 190px; }
  .menu-table{ min-width: 600px; }
}


/* =========================
   Shared Section Head
========================= */
.section-head{ margin-bottom: clamp(22px, 3vw, 34px); }
.section-head--center{ text-align: center; }
.section-title{
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 44px);
}
.section-title--caps{
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
}
.section-subtitle{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 18px);
}
.section-underline{
  width: 92px;
  height: 3px;
  background: var(--brand);
  margin: 14px auto 0;
  border-radius: 999px;
}
.section-underline--light{ background: rgba(255,255,255,.9); }

/* Background sections */
.section--bg{
  position: relative;
  color: #111;
  overflow: hidden;
}
.section--bg::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(255,255,255,.78);
  z-index:0;
}
.section--bg .container{ position: relative; z-index:1; }

/* =========================
   Öffnungszeiten
========================= */
.section-hours{
  background: url("assets/img/openhours-bg.jpg") center/cover no-repeat;
}
.hours{ padding-top: clamp(34px, 5vw, 64px); padding-bottom: clamp(34px, 5vw, 64px); }
.hours__list{
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}
.hours__row{
  display: grid;
  gap: 6px;
  justify-items: center;
}
.hours__day{
  font-weight: 700;
  letter-spacing: 0.06em;
}
.hours__time{
  font-size: 18px;
}

/* =========================
   Anfahrt
========================= */
.map-card{
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 22px 60px rgba(0,0,0,.10);
}
.map-embed{
  width: 100%;
  height: min(520px, 70vh);
  border: 0;
  display: block;
}
.map-actions{
  display:flex;
  gap: 12px;
  padding: 16px;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid rgba(0,0,0,.08);
}

/* =========================
   Lieferung
========================= */
.section-delivery{
  background: #0b0b0b;
  color: #fff;
}
.section-delivery .section-title{ color:#fff; }
.delivery{ padding-top: clamp(34px, 5vw, 70px); padding-bottom: clamp(34px, 5vw, 70px); }
.delivery__hero{
  display:flex;
  justify-content:center;
  margin: 14px 0 20px;
}
.delivery__img{
  max-width: 560px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 60px rgba(0,0,0,.45));
}
.delivery__times{
  text-align:center;
  margin: 8px auto 26px;
}
.delivery__kicker{
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: .9;
}
.delivery__timeblock{ margin-top: 10px; }
.delivery__days{
  font-weight: 700;
  letter-spacing: 0.06em;
}
.delivery__hours{ font-size: 18px; opacity: .95; margin-top: 6px; }

.delivery__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.delivery__panel{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
}
.delivery__title{
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
}
.delivery__dl{ margin: 0; display:grid; gap: 10px; }
.delivery__dl > div{
  display:flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  padding-bottom: 10px;
}
.delivery__dl > div:last-child{ border-bottom:0; padding-bottom:0; }
.delivery__dl dt{ margin:0; opacity:.9; }
.delivery__dl dd{ margin:0; font-weight: 700; }
.delivery__cta{ margin-top: 16px; display:flex; justify-content:center; }

/* Light button variant */
.btn--light{
  background: #fff;
  color: #0b0b0b;
  border: 1px solid rgba(255,255,255,.85);
}
.btn--light:hover{ transform: translateY(-1px); }

/* =========================
   Feedback
========================= */
.section-feedback{
  background: url("assets/img/feedback-bg.png") center/cover no-repeat;
}
.feedback{ padding-top: clamp(34px, 5vw, 70px); padding-bottom: clamp(34px, 5vw, 70px); }
.feedback__card{
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0,0,0,.10);
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  gap: 0;
  overflow: hidden;
}
.feedback__left{
  padding: 22px;
  line-height: 1.7;
}
.feedback__hello{ font-weight: 800; margin-top: 0; }
.feedback__sig{ margin-bottom: 0; font-weight: 600; }
.feedback__divider{
  background: rgba(0,0,0,.18);
  width: 2px;
  margin: 20px auto;
  border-radius: 999px;
}
.feedback__form{
  padding: 22px;
  display:grid;
  gap: 12px;
  align-content: start;
}
.feedback__form input,
.feedback__form textarea{
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.18);
  padding: 12px 12px;
  font: inherit;
  background: rgba(255,255,255,.95);
}
.feedback__form textarea{ resize: vertical; min-height: 120px; }
.btn--block{ width: 100%; justify-content: center; }
.feedback__hint{
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(0,0,0,.65);
}

/* Accessibility helper */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip: rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

/* Responsive tweaks */
@media (max-width: 900px){
  .delivery__grid{ grid-template-columns: 1fr; }
  .feedback__card{
    grid-template-columns: 1fr;
  }
  .feedback__divider{ display:none; }
}


/* --- Payment row (Menu) --- */
.pay-row{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(17,17,17,.78);
  font-size: 14px;
}
.pay-row__text{
  font-weight: 600;
}
.pay-row__icons{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pay-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(6px);

  gap: 0;}
.pay-badge svg{
  opacity: .95;
}

.pay-badge img{
  height: 18px;
  width: auto;
  display: block;
  opacity: .75;
  filter: grayscale(1) contrast(1.1);
}
.pay-badge span{
  font-size: 13px;
  font-weight: 600;
  color: rgba(17,17,17,.82);
}
@media (max-width: 520px){
  .pay-badge{ padding: 7px 9px; }
  .pay-badge span{ font-size: 12px; }
}

.menu-card:active{transform: translateY(0) scale(.99);}

.menu-card__media{position: relative;}
.menu-card__badge{
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  font-size: .78rem;
  font-weight: 800;
  border-radius: 999px;
  color: #111;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.menu-card__badge--popular{border: 1px solid rgba(0,0,0,.12);}
.menu-card__badge--new{border: 1px solid rgba(0,0,0,.12);}


/* Footer links */
.footer__sep{opacity:.45;margin:0 .5rem;}
.footer a{color:inherit;text-decoration:none;border-bottom:1px solid rgba(255,255,255,.25);}
.footer a:hover{border-bottom-color:rgba(255,255,255,.6);}

/* Cookie banner */
.cookie-banner{
  position:fixed;left:0;right:0;bottom:0;z-index:9999;
  padding:12px;
  background:rgba(0,0,0,.85);
  color:#fff;
  backdrop-filter: blur(8px);
}
.cookie-banner__inner{
  max-width:1100px;margin:0 auto;
  display:flex;gap:16px;align-items:center;justify-content:space-between;
}
.cookie-banner__text p{margin:6px 0 0;opacity:.9;line-height:1.35;}
.cookie-banner__text a{color:#fff;text-decoration:underline;text-underline-offset:3px;}
.cookie-banner__actions{display:flex;gap:10px;flex-wrap:wrap;}
@media (max-width:720px){
  .cookie-banner__inner{flex-direction:column;align-items:stretch;}
  .cookie-banner__actions{justify-content:flex-end;}
}

/* Map consent overlay */
.map-wrap{position:relative;}
.map-consent{
  position:absolute;inset:0;
  display:flex;flex-direction:column;gap:10px;align-items:center;justify-content:center;
  padding:18px;
  background:rgba(0,0,0,.65);
  color:#fff;
  text-align:center;
}
.map-consent p{max-width:520px;margin:0;opacity:.95;}

/* Legal pages */
.legal{padding:96px 0 72px;background:#0b0b0b;color:#fff;min-height:70vh;}
.legal__inner{max-width:860px;}
.legal h1{margin:0 0 18px;font-size:42px;letter-spacing:.2px;}
.legal h2{margin:28px 0 10px;font-size:22px;}
.legal p, .legal li{opacity:.92;line-height:1.7;}
.legal a{color:#fff;text-decoration:underline;text-underline-offset:3px;}
.legal .note{opacity:.75;font-size:14px;margin-top:10px;}


.menu-modal__category-info{
  margin: .25rem 0 .75rem;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.45;
}

.menu-modal details summary{
  font-size: 13px;
  color: #666;
}

.menu-modal details div{
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

#menuModalCategoryInfo {
  background-color: #f2f2f2;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.45;

  padding: 10px 14px;
  margin-bottom: 14px;

  border-radius: 6px;
  border-left: 4px solid #999;
}

#menuModalCategoryInfo::before {
  content: "ℹ️ ";
  margin-right: 4px;
}


/* =========================
   Floating Social Bar
========================= */
.social-float{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.social-float__link{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: transform .18s ease, opacity .18s ease, background .18s ease;
}

.social-float__link:hover{
  transform: translateY(-2px) scale(1.03);
  opacity: .95;
  background: rgba(0,0,0,.45);
}

.social-float__link svg{
  width: 30px;
  height: 30px;
  display: block;
  color: currentColor;
}

.social-float__link--facebook{ color: #ffffff; }
.social-float__link--instagram{ color: #ffffff; }

/* Mobile: bottom-right, horizontal */
@media (max-width: 640px){
  .social-float{
    top: auto;
    right: 14px;
    bottom: 14px;
    transform: none;
    flex-direction: row;
  }
}
