/**
 * Buffalo Eats Online - Print Styles
 *
 * Hides navigation, footer, and non-essential UI elements when printing.
 *
 * @author    J.J. Johnson <visionquest716@gmail.com>
 * @copyright 2026 VisionQuestServices LLC
 * @package   BuffaloEatsOnline
 */

@media print {
    /* Hide all footers */
    footer,
    .storefront-footer {
        display: none !important;
    }

    /* Hide navigation */
    nav,
    .navbar,
    .sidebar {
        display: none !important;
    }

    /* Hide action buttons that don't make sense on paper */
    .btn,
    .no-print {
        display: none !important;
    }

    /* Clean up page layout */
    body {
        padding: 0 !important;
        margin: 0 !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }
}
