/* Dicke Paula Menu – single column, footer notes + legend */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Inter:wght@400;500;600;700&display=swap');

#dp-menu-root{
  --bg: #f4e4c6;
  --text: #242021;
  --muted: #4b4647;
  --accent: #971b1e;
  --card: rgba(255,255,255,.55);
  --line: rgba(36,32,33,.18);
  --radius: 18px;
  --pad: 14px;
  --max: 980px;
  --shadow: 0 10px 22px rgba(36,32,33,.12);

  color: var(--text);
  font-family: Inter, Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  background:
    radial-gradient(900px 600px at 15% -10%, rgba(151,27,30,.10), transparent 55%),
    radial-gradient(900px 600px at 90% 0%, rgba(151,27,30,.08), transparent 60%),
    var(--bg);

  border-radius: 12px;
  padding: 0;
  margin: 0 auto;
}

.dp-wrap{ max-width: var(--max); margin:0 auto; padding: 14px 14px 44px; }

.dp-toolbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,228,198,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.dp-toolbar-inner{
  max-width: var(--max);
  margin:0 auto;
  padding: 10px 14px;
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap: wrap;
}

.dp-toggle{
  display:inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow:hidden;
  background: rgba(255,255,255,.52);
  box-shadow: 0 6px 14px rgba(36,32,33,.08);
}
.dp-btn{
  border:0;
  background: transparent;
  padding: 8px 10px;
  font-size: 12px;
  cursor:pointer;
  color: var(--muted);
  white-space: nowrap;
}
.dp-btn.is-active{
  background: rgba(151,27,30,.10);
  color: var(--accent);
  font-weight: 700;
}

.dp-header h1{
  margin: 14px 0 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(34px, 8vw, 52px);
  color: var(--accent);
  line-height: .95;
}
.dp-header p{ margin: 8px 0 0; color: var(--muted); font-size: 14px; }

/* SINGLE COLUMN ALWAYS */
.dp-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}

.dp-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}

.dp-cardhead{
  padding: 14px var(--pad);
  border-bottom: 1px solid var(--line);
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}
.dp-cardhead strong{ font-size: 16px; letter-spacing:.2px; }
.dp-meta{ color: var(--muted); font-size: 13px; }

.dp-details{ border-top: 1px solid var(--line); }
.dp-details:first-of-type{ border-top:0; }

.dp-summary{
  list-style:none;
  cursor:pointer;
  padding: 14px var(--pad);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background: rgba(255,255,255,.18);
}
.dp-summary::-webkit-details-marker{ display:none; }

.dp-sum-left{ display:flex; flex-direction:column; gap:2px; }
.dp-sum-left strong{
  font-family: "Great Vibes", cursive;
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}
.dp-sum-left span{ font-size: 13px; color: var(--muted); }

.dp-chev{
  width: 10px; height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform .18s ease;
  margin-right: 4px;
  flex: 0 0 auto;
}
details[open] .dp-chev{ transform: rotate(225deg); }

.dp-content{ padding: 0 var(--pad) 14px; }
.dp-note{ margin: 10px 0 10px; color: var(--muted); font-size: 13px; }

.dp-items{ display:flex; flex-direction:column; gap: 10px; }

.dp-item{
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(36,32,33,.14);
}

.dp-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.dp-name{ font-weight: 700; letter-spacing:.1px; }
.dp-desc{ color: var(--muted); font-size: 13px; margin-top: 3px; }

.dp-right{ display:flex; align-items:flex-start; justify-content:flex-end; }
.dp-price-inline{
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  white-space: nowrap;
}

/* Options list under an item */
.dp-options{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(36,32,33,.20);
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.dp-option-line{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(36,32,33,.10);
}
.dp-option-left{ color: var(--text); font-size: 13px; }
.dp-option-name{ font-weight: 700; }
.dp-option-desc{ color: var(--muted); font-weight: 500; }
.dp-option-price{
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  white-space: nowrap;
}

/* Badges */
.dp-badges{ display:flex; gap:6px; flex-wrap:wrap; margin-top:8px; }
.dp-badge{
  font-size: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(36,32,33,.18);
  background: rgba(244,228,198,.75);
  color: var(--text);
  line-height: 1.2;
}
.dp-badge.hot{ border-color: rgba(151,27,30,.35); background: rgba(151,27,30,.10); color: var(--accent); font-weight: 700; }
.dp-badge.veggie{ border-color: rgba(46,125,50,.28); background: rgba(46,125,50,.10); }
.dp-badge.vegan{ border-color: rgba(27,94,32,.30); background: rgba(27,94,32,.10); font-weight: 700; }

/* Codes */
.dp-codes{ margin-top:8px; display:flex; flex-wrap:wrap; gap:6px; }
.dp-code{
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px dashed rgba(36,32,33,.22);
  background: rgba(255,255,255,.45);
  color: var(--muted);
}

/* Footer notes + legend */
.dp-footer{
  margin-top: 18px;
}
.dp-footer-title{
  margin: 18px 0 10px;
  font-size: 14px;
  letter-spacing: .2px;
}
.dp-footbox{
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 18px rgba(36,32,33,.10);
}
.dp-footnote{
  color: var(--muted);
  font-size: 13px;
  white-space: pre-line; /* keep line breaks */
  margin: 0 0 8px;
}
.dp-footnote:last-child{ margin-bottom: 0; }

.dp-legend-col{
  padding: 6px 0;
}
.dp-legend-head{
  font-weight: 800;
  margin-bottom: 6px;
}
.dp-legend-row{
  color: var(--muted);
  font-size: 13px;
  margin: 3px 0;
}

/* legend columns stacked on mobile, side-by-side on wider screens */
@media (min-width: 740px){
  .dp-footbox{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  /* notes box should remain single column -> it’s created separately */
}