/* ═══════════════════════════════════════════════════════════════
   Gran Vachellia — Print Stylesheet (Booking Confirmation)
   ═══════════════════════════════════════════════════════════════ */
@media print {
  /* Hide non-essential elements */
  .nav-wrapper,
  .mobile-menu,
  .footer,
  .lightbox-overlay,
  .whatsapp-fab,
  .back-to-top,
  .cookie-consent,
  .success-actions,
  .btn {
    display: none !important;
  }

  /* Reset page */
  body {
    background: #fff !important;
    color: #000 !important;
    font-family: 'Inter', Arial, sans-serif;
    font-size: 12pt;
    line-height: 1.5;
  }

  main {
    padding: 0 !important;
  }

  /* Print header */
  .booking-success::before {
    content: 'Gran Vachellia — Booking Confirmation';
    display: block;
    font-family: 'Cormorant', Georgia, serif;
    font-size: 20pt;
    text-align: center;
    margin-bottom: 8pt;
    color: #1a1a1a;
    border-bottom: 2pt solid #c9a96e;
    padding-bottom: 12pt;
  }

  /* Clean up success section */
  .booking-success {
    padding: 20pt 0 !important;
    background: none !important;
    min-height: auto !important;
  }

  .success-icon {
    display: none !important;
  }

  /* Table styling */
  .booking-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16pt 0;
  }
  .booking-details-table th,
  .booking-details-table td {
    border: 0.5pt solid #ccc;
    padding: 8pt 12pt;
    text-align: left;
  }
  .booking-details-table th {
    background: #f5f5f5 !important;
    font-weight: 600;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  /* Footer with hotel info */
  .booking-success::after {
    content: 'Gran Vachellia · granvachellia.com';
    display: block;
    text-align: center;
    font-size: 9pt;
    color: #888;
    margin-top: 32pt;
    padding-top: 12pt;
    border-top: 0.5pt solid #ddd;
  }

  /* Ensure page breaks */
  * {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  @page {
    margin: 2cm;
    size: A4;
  }

  /* Invoice / Proforma logo and VAT notes */
  .invoice-logo {
    max-height: 60pt;
    width: auto;
    display: block;
    margin-bottom: 6pt;
  }
  .vat-inline-note {
    font-size: 8pt;
    color: #777;
    font-style: italic;
  }
  .totals .note-cell {
    font-size: 8pt;
    color: #777;
    font-style: italic;
  }
}
