/* Print styles for drink menu */
@media print {
  body {
    background: #fff;
    color: #1a1a1a;
    font-size: 11pt;
    line-height: 1.5;
  }

  .nav, .footer, .cookie-banner, .whatsapp-fab,
  .hero, .emergency-banner, .no-print {
    display: none !important;
  }

  .section {
    padding: 0.5cm 0;
    break-inside: avoid;
  }

  h2, h3 {
    color: #1a1a1a;
    break-after: avoid;
  }

  .drink-item {
    break-inside: avoid;
    padding: 0.15cm 0;
  }

  .drink-item__name { color: #1a1a1a; }
  .drink-item__price { color: #1a1a1a; font-weight: bold; }
  .drink-item__desc { color: #555; }

  a { color: #1a1a1a; text-decoration: none; }

  .drinks-category__title {
    border-bottom: 1pt solid #ccc;
    color: #1a1a1a;
    padding-bottom: 0.2cm;
  }
}
