/* ═══════════════════════════════════════════
   BESAT DIGITAL MENU - PRINT STYLES
   ═══════════════════════════════════════════ */

@media print {
    *,
    *::before,
    *::after {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Hide non-print elements */
    .besat-nav,
    .besat-fab,
    .besat-cart,
    .besat-modal,
    .besat-toast-container,
    .besat-header__dark-toggle,
    .besat-sponsor,
    .besat-solariha-ad,
    .besat-footer,
    .besat-item__add-btn,
    .besat-counter,
    .besat-no-print {
        display: none !important;
    }

    /* Show print-only elements */
    .besat-print-only {
        display: block !important;
    }

    /* Print Invoice */
    .besat-print {
        width: 80mm;
        margin: 0 auto;
        padding: 10px;
    }

    .besat-print__header {
        text-align: center;
        border-bottom: 1px dashed #000;
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .besat-print__logo {
        width: 50px;
        height: 50px;
        margin: 0 auto 8px;
    }

    .besat-print__title {
        font-size: 14pt;
        font-weight: bold;
    }

    .besat-print__info {
        font-size: 10pt;
        margin-top: 5px;
    }

    .besat-print__table {
        width: 100%;
        border-collapse: collapse;
        font-size: 10pt;
    }

    .besat-print__table th {
        border-bottom: 1px solid #000;
        padding: 5px 2px;
        text-align: right;
        font-weight: bold;
    }

    .besat-print__table td {
        padding: 5px 2px;
        border-bottom: 1px dashed #ccc;
    }

    .besat-print__total {
        border-top: 2px solid #000;
        padding-top: 10px;
        margin-top: 10px;
        font-size: 12pt;
        font-weight: bold;
        text-align: center;
    }

    .besat-print__footer {
        text-align: center;
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px dashed #000;
        font-size: 9pt;
    }
}
