/* mobile-footer-cart.css */

/* Mobile Cart Button */
   .mobile-cart-button {
      display: none;
   }

   @media (max-width: 500px) {
      .mobile-cart-button {
          display: block;
          position: fixed;
          bottom: 0;
          left: 0;
          width: 100%;
          background-color: #333;
          z-index: 1000;
      }

      .mobile-cart-button a {
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          text-decoration: none;
          padding: 1.5rem;
      }

      .mobile-cart-button .cart-icon {
          margin-right: 0.5rem;
          font-size: 1rem;
      }

      .mobile-cart-button .cart-info {
          font-size: 1rem;
      }
   }
