/* GEEO Packing Lists - Print Stylesheet */
/* Clean, ink-friendly checklist output */

@media print {

    /* Hide everything not related to the checklist */
    header,
    footer,
    nav,
    aside,
    .site-header,
    .site-footer,
    .site-navigation,
    .woocommerce-breadcrumb,
    .related,
    .product_meta,
    .product-share,
    .woocommerce-tabs,
    .up-sells,
    .screen-only,
    .no-print,
    .geeo-pl-progress,
    .geeo-pl-print-section {
        display: none !important;
    }

    /* Reset page */
    body {
        background: #fff !important;
        color: #000 !important;
        font-size: 12pt;
        line-height: 1.5;
    }

    /* Ensure clean page margins */
    @page {
        margin: 0.75in;
    }

    /* Remove shadows and unnecessary styling */
    * {
        box-shadow: none !important;
        text-shadow: none !important;
    }

    /* Checklist items */
    .print-item {
        page-break-inside: avoid;
    }

    .print-category {
        page-break-inside: avoid;
    }

    /* Empty checkboxes for manual checking */
    .print-checkbox {
        width: 14px;
        height: 14px;
        border: 1.5px solid #000;
        border-radius: 2px;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Ensure text is black */
    .print-item-name {
        color: #000 !important;
    }

    .print-item-desc {
        color: #444 !important;
    }

    .print-category h2 {
        color: #000 !important;
        border-bottom-color: #000 !important;
    }

    /* Links should not show URLs */
    a[href]:after {
        content: none !important;
    }
}