/*
 * High-Contrast Printable Vehicle Spec Sheet
 * Triggers on window.print() or browser print action
 */
@media print {
    body {
        background: #ffffff !important;
        color: #000000 !important;
        font-size: 11pt !important;
        line-height: 1.3 !important;
    }

    /* Hide non-printable navigation, footers, CTAs, and interactive forms */
    .gtr-utility-bar,
    header,
    footer,
    .gtr-cta-wrapper,
    #gtr-inquiry-form-container,
    .gtr-shipping-estimator,
    .gtr-pagination,
    button,
    .gtr-save-btn,
    .gtr-thumb {
        display: none !important;
    }

    /* Expand main layout to full width */
    .max-w-\[1320px\], main {
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .grid {
        display: block !important;
    }

    #gtr-main-gallery-stage {
        max-height: 280px !important;
        object-fit: contain !important;
        margin-bottom: 15px !important;
    }

    /* Print Header */
    body::before {
        content: "GTR AUTO JAPAN - OFFICIAL VEHICLE SPECIFICATION SHEET";
        display: block;
        font-weight: bold;
        font-size: 14pt;
        border-bottom: 2pt solid #b8001d;
        padding-bottom: 5px;
        margin-bottom: 15px;
        color: #b8001d;
    }

    /* Print Footer */
    body::after {
        content: "GTR AUTO | Chiyoda-ku, Tokyo 100-0005, Japan | Web: gtrauto.jp | WhatsApp: +81 80 1234 5678";
        display: block;
        font-size: 9pt;
        border-top: 1pt solid #ccc;
        padding-top: 8px;
        margin-top: 25px;
        text-align: center;
        color: #555;
    }
}
