/* ===========================================
   PRINT STYLESHEET - CJ's Brew & BBQ
   Phase 6 — Clean recipe printing
   =========================================== */

@media print {
    /* Hide everything non-essential */
    .site-header,
    .cjbb-global-header,
    .site-footer,
    .recipe-detail-sidebar,
    .recipe-detail-actions,
    .recipe-detail-favourite-row,
    .recipe-card-actions,
    .cook-log-section,
    .recipe-comments-section,
    .recipe-source-attribution,
    .recipe-detail-variant-attribution,
    .variation-indicator,
    .recipe-detail-hero-overlay .recipe-badge-base,
    .star-rating-widget,
    #wp-admin-bar-root-default,
    #wpadminbar,
    .cook-mode-overlay,
    .modal-overlay,
    .cjbb-toast,
    #enter-cook-mode,
    .btn-print,
    button,
    .recipe-card-info-row,
    nav,
    footer {
        display: none !important;
    }

    /* Reset layout */
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.5;
        margin: 0;
        padding: 0;
    }

    .cjbb-recipe-detail-container {
        display: block !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .recipe-detail-content {
        display: block !important;
        width: 100% !important;
    }

    /* Hero image */
    .recipe-detail-hero {
        height: auto !important;
        max-height: 300px;
        overflow: hidden;
    }

    .recipe-detail-hero-image {
        max-height: 300px;
        object-fit: cover;
        width: 100%;
    }

    /* Typography */
    .recipe-detail-hero-title {
        color: black !important;
        font-size: 22pt !important;
        text-shadow: none !important;
    }

    h2, h3 {
        color: black !important;
        page-break-after: avoid;
    }

    /* Prevent breaks inside */
    .recipe-detail-ingredients-list,
    .recipe-detail-instruction-card {
        page-break-inside: avoid;
    }

    /* Clean up sections */
    .recipe-detail-section {
        border: none !important;
        box-shadow: none !important;
        background: none !important;
        padding: 8pt 0 !important;
    }

    /* Remove colours from badges */
    .recipe-badge {
        background: #eee !important;
        color: black !important;
        border: 1px solid #ccc !important;
    }

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

    /* Print footer */
    .cjbb-recipe-detail-container::after {
        content: "Printed from CJ's Brew & BBQ — cjsbrewnbbq.com";
        display: block;
        text-align: center;
        font-size: 9pt;
        color: #999;
        margin-top: 24pt;
        padding-top: 12pt;
        border-top: 1px solid #ddd;
    }
}
