:root {
  --bg: #f6f7fb;
  --paper: #ffffff;
  --ink: #111318;
  --muted: #6b7280;
  --line: #dfe3ea;
  --font: "Avenir Next", Avenir, "Gill Sans", "Trebuchet MS", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
}

.print-button {
  position: sticky;
  top: 10px;
  z-index: 2;
  width: max-content;
  margin: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(17, 19, 24, .06);
}

.cocktails-layout {
  width: min(100%, 760px);
  margin: 8mm auto;
  padding: 0 16px;
}

.cocktail-sheet {
  min-height: 210mm;
  background: var(--paper);
  border: 1px solid #eceff4;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(17, 19, 24, .08);
  padding: 18mm 16mm;
}

.print-copy { display: none; }

.menu-header {
  text-align: center;
  margin-bottom: 10mm;
}

.brand {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .5px;
}

.tagline {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.promo {
  margin: 8px 0 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .4px;
}

.rule {
  height: 1px;
  background: var(--line);
  margin: 0 0 10mm;
}

.menu-section { margin: 0; }
.section-head { margin: 0 0 7mm; }
.section-title {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  gap: 4mm;
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 8mm;
  align-items: baseline;
}

.leader {
  display: none;
}

.names .primary {
  display: block;
  font-size: 19px;
  font-weight: 600;
}

.price {
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.desc { color: var(--muted); }

@media (max-width: 640px) {
  .print-button { display: none; }
  .cocktails-layout {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .cocktail-sheet {
    min-height: 100vh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 28px 18px;
  }
  .menu-header { margin-bottom: 28px; }
  .brand { font-size: 30px; }
  .promo { font-size: 14px; }
  .rule { margin-bottom: 28px; }
  .menu-list { gap: 18px; }
  .row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .leader { display: none; }
  .names .primary { font-size: 17px; }
  .price { font-size: 17px; }
}

@page {
  size: A4 portrait;
  margin: 0;
}

@media print {
  html, body {
    width: 210mm;
    height: 297mm;
    margin: 0!important;
    background: #ffffff!important;
  }

  .screen-only { display: none!important; }

  .cocktails-layout {
    display: grid!important;
    grid-template-columns: 105mm 105mm;
    width: 210mm!important;
    height: 297mm!important;
    margin: 0!important;
    padding: 0!important;
  }

  .cocktail-sheet {
    display: block!important;
    width: 105mm!important;
    height: 297mm!important;
    min-height: 0!important;
    overflow: hidden!important;
    border: 0!important;
    border-radius: 0!important;
    box-shadow: none!important;
    padding: 28mm 10mm!important;
    break-inside: avoid!important;
    page-break-inside: avoid!important;
  }

  .cocktail-sheet + .cocktail-sheet {
    border-top: 0!important;
    border-left: 1px dashed #cfd5df!important;
  }

  .menu-header { margin-bottom: 12mm!important; }
  .brand { font-size: 30px!important; }
  .tagline { font-size: 11px!important; margin-top: 5px!important; }
  .promo { font-size: 13px!important; margin-top: 5px!important; }
  .rule { margin-bottom: 12mm!important; }
  .section-head { margin-bottom: 8mm!important; }
  .section-title { font-size: 11px!important; }
  .menu-list { gap: 6mm!important; }
  .row { gap: 5mm!important; }
  .names .primary { font-size: 15.5px!important; }
  .price { font-size: 15.5px!important; }
}
