        .not-found {
            height: 100vh;
        }

        /* Carrito */
        .carrito {
            width: 220px;
            animation: flotar 2s ease-in-out infinite;
        }

        /* Animación suave (NO se mueve de lugar, solo efecto flotante) */
        @keyframes flotar {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        .btn-custom {
            background-color: #ffcc00;
            color: #000;
            border: none;
        }

        .btn-custom:hover {
            background-color: #e6b800;
        }
        .btn-custom-b {
            background-color: #ffffff;
            color: #000;
            border: solid 1px black;
        }

        .btn-custom-b:hover {
            background-color: #ffffff;
        }