/* Phase 3 — Print Stylesheet (MSD Autowelt)
   Minimaler Print-Stil: Navigation + Footer-Ballast verstecken, Farben weg. */

@media print {
  header, footer, .navbar, .topbar, .wa-float, .mobile-cta-bar,
  .btn, button, .cta-primary, .cta-secondary,
  .google-reviews, .trust-strip, .scroll-to-top,
  nav, .filter-rack, .pagination, .skip-link {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 12pt;
    line-height: 1.4;
  }

  a, a:visited {
    color: #000 !important;
    text-decoration: underline;
  }

  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 85%;
  }

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

  h1, h2, h3 {
    page-break-after: avoid;
  }

  section, article, .row {
    page-break-inside: avoid;
  }
}
