/* Print Styles */
@media print {
    @page {
        margin: 1cm;
    }
    
    body {
        background: white;
        color: black;
    }
    
    header,
    footer,
    nav,
    .no-print,
    button,
    .back-to-top,
    #back-to-top {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .product-print {
        page-break-inside: avoid;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    a {
        color: black;
        text-decoration: underline;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}





