/**
 * Print Styles
 * Nizar Bookstore Theme
 *
 * @package Nizar_Bookstore
 * @since 1.0.0
 */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .site-navigation,
    .breadcrumbs,
    .site-footer,
    .widget-area,
    button,
    .button,
    input[type="submit"],
    .search-form,
    .social-links,
    .no-print {
        display: none !important;
    }
    
    /* Optimize for print */
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    /* Product styles */
    .product {
        page-break-inside: avoid;
    }
    
    .product-title {
        font-size: 18pt;
        margin-bottom: 10pt;
    }
    
    .product-price {
        font-size: 14pt;
        font-weight: bold;
    }
    
    /* Links */
    a {
        text-decoration: underline;
        color: #000;
    }
    
    a[href]:after {
        content: " (" attr(href) ")";
        font-size: 10pt;
        color: #666;
    }
    
    /* Images */
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}
