@media print {
    *,
    *::before,
    *::after {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Hide non-essential UI */
    .navbar,
    .site-footer,
    .admin-subnav,
    [class^="btn-"],
    [class*=" btn-"],
    .cart-badge,
    #cart-badge {
        display: none !important;
    }

    /* Reset dark card backgrounds */
    .auth-card,
    .admin-section,
    .order-card,
    .checkout-card {
        background: white !important;
        border: 1px solid #ccc !important;
    }

    /* Gold accents → black for legibility */
    :root {
        --gold: black;
        --bg-dark: white;
        --bg-darkest: white;
        --bg-mid: white;
        --bg-light: white;
        --bg-card: white;
        --text-primary: black;
        --text-muted: #444;
        --border-subtle: #ccc;
    }

    /* Avoid breaking inside order rows */
    tr,
    .order-line {
        page-break-inside: avoid;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th,
    td {
        border: 1px solid #ccc;
        padding: 6px 8px;
    }

    a[href]::after {
        content: none;
    }

    /* Ensure content starts below where the navbar would have been */
    body {
        padding-top: 0 !important;
    }
}
