/* Nyomtatási stílusok */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.3;
        max-width: 100%;
        padding: 0;
    }

    header, nav, aside, footer, .newsletter, .skip-link, .lightbox, .close-lightbox {
        display: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /* Ne törjön szét a tartalom */
    h2, h3, p, article {
        page-break-after: avoid;
    }

    img, video, iframe {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    /* Táblázatok nyomtatása */
    table {
        page-break-inside: auto;
    }
    
    tr {
        page-break-inside: avoid;
    }

    /* Nyomtatási fejléc és lábléc */
    @page {
        margin: 2cm;
        @top-center {
            content: "TechZone Webshop";
            font-size: 14pt;
        }
        @bottom-right {
            content: counter(page);
            font-size: 10pt;
        }
    }
}