/**
 * Kelid Sazi - Print Stylesheet
 *
 * Optimized for printing articles and product information.
 *
 * @package KelidSazi
 * @since   1.0.0
 */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .site-footer,
    .primary-navigation,
    .mobile-navigation,
    .header-search,
    .skip-link,
    .pagination,
    .related-posts,
    .comments-area,
    .sidebar,
    .woocommerce-breadcrumb {
        display: none !important;
    }

    /* Reset layout */
    body {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
        background: #fff;
    }

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

    /* Links */
    a {
        color: #000;
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }

    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Typography */
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    p, li, blockquote {
        orphans: 3;
        widows: 3;
    }
}