:root{
  /* Background */
  --bg1:#14110e;
  --bg2:#0f0c09;

  /* Box */
  --boxTop:#2c241c;
  --boxBot:#17120d;

  /* Text */
  --text:#f4efe7;
  --muted:#bfb5a8;

  /* Accent = white */
  --accent:#ffffff;
  --accentSoft:rgba(255,255,255,.22);

  --radius:22px;
  --imgW:92%;

  --border:rgba(255,255,255,.14);
  --inner:rgba(255,255,255,.06);

  /* Badges */
  --alk:#ffd9b5;
  --cold:#cfe6ff;
  --season:#d8ffe3;
  --kids:#ffe0f3;
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(600px 380px at 80% 10%, rgba(255,255,255,.035), transparent 65%),
    linear-gradient(180deg,var(--bg1),var(--bg2));
}
:root{
  --bg: #0b0a09; /* dein dunkler Grundton */
}

/* Seite wirklich vollflächig dunkel */
html, body{
  background: var(--bg1);
}

/* Safe-Area Bereiche einfärben (iOS Notch + Home Indicator) */
body{
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

/* ---------- Topbar ---------- */
.topbar{
  position:sticky;
  top:0;
  z-index:40;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:14px 18px;

  background: rgba(16,13,10,.78);
  backdrop-filter: blur(10px);

  border-bottom:1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}

.brand-title{
  font-weight:900;
  letter-spacing:.3px;
}
.brand-sub{
  font-size:12px;
  color:var(--muted);
  margin-top:2px;
}

/* ---------- Burger (modern pill) ---------- */
/* ============================= */
/* PILL MENU BUTTON 🇮🇹          */
/* ============================= */

.pill-menu{
  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.02)
  );

  border: 1px solid rgba(255,255,255,.18);

  cursor: pointer;

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 8px 24px rgba(0,0,0,.55);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.pill-menu:hover{
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 12px 30px rgba(0,0,0,.75);
}

/* dots */

.pill-menu .dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;

  box-shadow:
    0 0 6px rgba(255,255,255,.35),
    0 0 14px currentColor;
}
.pill-label{
  font-size: 12px;
  letter-spacing: .28em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-right: 4px;
}

.dot.green{ background:#2fa44f; color:#2fa44f; }
.dot.white{ background:#f4f4f4; color:#ffffff; }
.dot.red  { background:#c83a3a; color:#c83a3a; }

/* active (menu open) */

.pill-menu[aria-expanded="true"]{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,.05)
  );

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 14px 36px rgba(0,0,0,.85);
}

/* mobile tweak */

@media (max-width: 520px){
  .pill-menu{
    padding: 8px 14px;
    gap: 8px;
  }
  .pill-menu .dot{
    width: 10px;
    height: 10px;
  }
}

/* ============================= */
/* CONTENT TOP (Logo + Claim)    */
/* ============================= */

.content-top{
  /* bewusst KEIN eigener Background -> nutzt den Seiten-BG */
  padding: 26px 20px 18px;
  position: relative;
}

.content-top-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
}

.brand-logo{
  width: min(640px, 92vw);
  height: auto;
  filter: drop-shadow(0 18px 44px rgba(0,0,0,.85));
}

.brand-claim{
  display: grid;
  gap: 6px;
}

.brand-main{
  font-size: clamp(18px, 2.6vw, 28px);
  letter-spacing: .26em;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.brand-sub{
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,.74);
  font-style: italic;
}

/* dezente weiße Glow-Linie unten */
.content-top-glow{
  margin: 18px auto 0;
  max-width: 1100px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.35),
    rgba(255,255,255,.20),
    rgba(255,255,255,.35),
    transparent
  );
  box-shadow:
    0 0 10px rgba(255,255,255,.16),
    0 0 22px rgba(255,255,255,.10);
}

/* Mobile Feinschliff */
@media (max-width: 520px){
  .content-top{ padding: 18px 14px 14px; }
  .brand-main{ letter-spacing: .18em; }
}

/* Icon: clean, same length lines */
.burger span{
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 0 10px rgba(255,255,255,.10);
}

/* remove grid-gap behaviour from old version */
.burger{ display:flex; }
.burger span + span{ margin-left:0; }

/* ---------- Menu Panel ---------- */
.menu{
  position:fixed;
  inset:0 0 0 auto;
  width:min(360px, 92vw);
  height:100vh;

  background:
    linear-gradient(180deg, rgba(26,21,16,.96), rgba(14,11,9,.98));

  transform: translateX(100%);
  transition: transform .22s ease;

  z-index:60;

  border-left:1px solid rgba(255,255,255,.12);
  box-shadow:-14px 0 44px rgba(0,0,0,.72);

  padding:16px;
  display:flex;
  flex-direction:column;
}

.menu.is-open{ transform: translateX(0); }

.menu-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 6px 4px 12px;
}

.menu-title{
  font-weight:900;
  letter-spacing:.3px;
}

.menu-close{
  width:40px;
  height:40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  cursor:pointer;
}

.menu-nav{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 4px 2px;
  overflow:auto;
}

/* Menu items: clean, not glossy */
.menu-item{
  text-align:left;
  padding: 12px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);

  color: var(--text);
  font-weight: 850;

  cursor:pointer;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.menu-item:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}

.menu-item.is-active{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.scrim{
  position:fixed;
  inset:0;
  z-index:55;
  background: rgba(0,0,0,.55);
}

/* ---------- Layout ---------- */
.wrap{
  max-width:1240px;
  margin:28px auto 90px;
  padding: 0 18px;
}

.section-title{
  margin: 52px 0 16px;
  font-weight: 900;
  letter-spacing: .3px;
  color: var(--muted);
}

/* ---------- Grid ---------- */
.grid{
  display:grid;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(0,1fr));
  align-items:start;
}

@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 620px){
  .grid{ grid-template-columns: 1fr; gap: 22px; }
  .wrap{ padding: 0 14px; }
  :root{ --imgW: 96%; }
}

/* ---------- Tiles + Filter animation ---------- */
.tile{
  display:flex;
  flex-direction:column;
  transition: opacity .22s ease, transform .22s ease;
  will-change: opacity, transform;
}

.tile.is-hidden{
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
}

/* ---------- Media ---------- */
.media{
  width:100%;
  aspect-ratio: 1 / 1;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  margin:0;
}

.media img{
  width: var(--imgW);
  height:auto;
  object-fit:contain;
  display:block;
  margin:0;

  filter:
    drop-shadow(0 24px 34px rgba(0,0,0,.70))
    drop-shadow(0 6px 12px rgba(0,0,0,.45));
}

/* ---------- Info box ---------- */
.info{
  position:relative;

  background: linear-gradient(180deg, var(--boxTop), var(--boxBot));
  border: 1px solid var(--border);
  border-radius: var(--radius);

  padding: 18px 20px 16px;

  min-height: 182px;

  display:flex;
  flex-direction:column;

  box-shadow:
    0 22px 48px rgba(0,0,0,.65),
    inset 0 0 0 1px var(--inner);
}

/* subtle “tresen line” */
.info::after{
  content:"";
  position:absolute;
  left:20px;
  right:20px;
  bottom:8px;
  height:1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.40),
    transparent
  );

  opacity:.55;
  filter: blur(.35px);
}

/* ---------- Text ---------- */
.info h3{
  margin:0 0 6px;
  font-size:18px;
  font-weight:900;
  letter-spacing:.25px;
}

.desc{
  margin:0;
  font-size:13px;
  line-height:1.38;
  color: var(--muted);

  display:-webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow:hidden;
}

/* ---------- Meta row ---------- */
.meta{
  display:flex;
  gap:8px;
  align-items:center;
  margin-top:auto;
  padding-top: 14px;
}

.price{
  margin-left:auto;
  font-weight:950;
  font-size:17px;
  color: rgba(255,255,255,.92);
  text-shadow: 0 0 10px rgba(255,255,255,.10);
  white-space: nowrap;
}

/* ---------- Badges ---------- */
.badge{
  font-size:11px;
  font-weight:900;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.14);
  white-space: nowrap;
}

.badge.alk{ color: var(--alk); border-color: rgba(255,217,181,.35); }
.badge.cold{ color: var(--cold); border-color: rgba(207,230,255,.35); }
.badge.season{ color: var(--season); border-color: rgba(216,255,227,.35); }
.badge.kids{ color: var(--kids); border-color: rgba(255,224,243,.35); }

/* ---------- Drinks list ---------- */
.info-list .rows{
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.row{
  display:grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.row:last-child{ border-bottom:0; }

.row-name{ font-weight: 900; }
.row-note{ font-size: 12.5px; color: var(--muted); }
.row-price{ font-weight: 950; white-space: nowrap; }

.footer-note{
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Empty ---------- */
.empty{
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 13px;
}
