@media (max-width: 768px) {
  /* Ensure our classic footer is above decorative layers */
  .site-footer, footer.site-footer {
    position: relative;
    z-index: 10;
  }
  /* Any decorative/fixed layer near bottom must not steal taps */
  .trust-footer, .trust-ribbon, .compliance-ribbon,
  .payment-security, .payment-security-section,
  .social-proof, .social-proof-section,
  .compliance, .compliance-section,
  [data-fixed-bottom], .fixed-bottom, .sticky-bottom,
  .fx-layer, .bg-decor, .stars, .particles, .hero-overlay, .canvas-bg {
    pointer-events: none !important;
  }
  /* Cookie banner only clickable when explicitly ready */
  .cookie-banner { pointer-events: none !important; }
  .cookie-banner.is-ready { pointer-events: auto !important; }

  /* Improved social link tap areas */
  footer .social a,
  .site-footer .social a,
  .footer-social a,
  .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    touch-action: manipulation;
    pointer-events: auto !important;
  }

  /* Modals remain interactive */
  .modal, .modal *, .modal-overlay { pointer-events: auto !important; }
  .modal-overlay { position: fixed; inset: 0; z-index: 9998; }
  .modal { z-index: 9999; }
}
