 
      /* STRIP */
      /* STRIP – FIXED AT BOTTOM */
      .footer-strip {
        background: linear-gradient(
          135deg,
          #1a1a1a,
          #252525 60%,
          rgba(237, 28, 36, 0.25)
        );

        color: #fff;
        font-size: 13px;
        padding: 8px 0;

        position: fixed; /* 🔑 fixed */
        bottom: 0; /* 🔑 stick to bottom */
        left: 0;
        width: 100%;
        z-index: 9999;
      }
  