 * {
            margin: 0px;
            padding: 0px;
            box-sizing: border-box;
            font-family: "Roboto", sans-serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
        }

        body {
            background-color: white;
            min-height: 100vh;
        }

        /* .container {
            position: relative;
            min-height: 100vh;
        }

        .encima {
            background-color: #880404;
            width: 100%;
            height: 80px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: flex-start;
            padding: 0 20px;
        }

        .llamanos {
            text-decoration: none;
            height: 60px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .llamanos div {
            color: white;
        }

        .logowsp {
            width: 40px;
            height: 40px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        } 
 
        .logowsp::before {
            content: "📱";
            font-size: 20px;
        }

        .textowsp {
            color: white;
        }

        .textowsp small {
            font-size: 0.7rem;
            display: block;
        }

        .textowsp p {
            font-size: 1.2rem;
            margin: 0;
        }

        .headerGeneral {
            background-color: white;
            width: 100%;
            height: 80px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-columns: 60px 1fr 60px 60px;
            align-items: center;
            padding: 0 20px;
            gap: 5px;
        }

        .headerGeneral .logo {
            grid-column: 2;
            height: auto;
            width: 80%;
            position: relative;
            top: -5px;
            display: flex;
            justify-content: start;
            align-items: center;
            font-size: 1.5rem;
            font-weight: 700;
            color: #880404;
        }

        .barramenu {
            cursor: pointer;
            font-size: 24px;
            color: #333;
            grid-column: 1;
            background: none;
            border: none;
        }

        .search {
            grid-column: 3;
            font-size: 20px;
            color: #333;
            cursor: pointer;
            justify-self: center;
            background: none;
            border: none;
        }

        .carrito {
            grid-column: 4;
            font-size: 20px;
            color: #880404;
            cursor: pointer;
            justify-self: center;
            position: relative;
            background: none;
            border: none;
        }

        .carrito-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #880404;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        } */

        .carrito-container {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 20px;
        }

        .carrito-header {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

        .carrito-title {
            font-size: 2rem;
            font-weight: 600;
            color: #880404;
            margin-bottom: 10px;
        }

        .carrito-subtitle {
            color: #666;
            font-size: 1rem;
        }

        .carrito-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 20px;
        }

        .productos-carrito {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
        }

        .producto-item {
            display: grid;
            grid-template-columns: 100px 1fr auto auto;
            gap: 15px;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .producto-item:last-child {
            border-bottom: none;
        }

        .producto-imagen {
            width: 100px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
        }

        .producto-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .producto-info {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .producto-nombre {
            font-weight: 500;
            font-size: 1.1rem;
            color: #333;
        }

        .producto-precio {
            font-weight: 600;
            font-size: 1.2rem;
            color: #880404;
        }

        .cantidad-controls {
            display: flex;
            align-items: center;
            gap: 10px;
            background-color: #f5f5f5;
            border-radius: 5px;
            padding: 5px;
        }

        .cantidad-btn {
            background-color: #880404;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 3px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .cantidad-btn:hover {
            background-color: #7b0000;
        }

        .cantidad-input {
            width: 50px;
            text-align: center;
            border: none;
            background: transparent;
            font-weight: 500;
        }

        .eliminar-btn {
            background-color: #dc3545;
            color: white;
            border: none;
            padding: 8px 12px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
        }

        .eliminar-btn:hover {
            background-color: #c82333;
        }

        .resumen-carrito {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            padding: 20px;
            height: fit-content;
            position: sticky;
            top: 20px;
        }

        .resumen-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
            border-bottom: 2px solid #880404;
            padding-bottom: 10px;
        }

        .resumen-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .resumen-item:last-child {
            border-bottom: none;
            font-weight: 600;
            font-size: 1.2rem;
            color: #880404;
            margin-top: 10px;
            padding-top: 15px;
            border-top: 2px solid #eee;
        }

        .proceder-btn {
            width: 100%;
            background-color: #880404;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            margin-top: 20px;
            transition: background-color 0.3s ease;
        }

        .proceder-btn:hover {
            background-color: #7b0000;
        }

        .volver-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: transparent;
            color: #880404;
            border: 2px solid #880404;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .volver-btn:hover {
            background-color: #880404;
            color: white;
        }

        .carrito-vacio {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .carrito-vacio-icon {
            font-size: 4rem;
            margin-bottom: 20px;
            color: #ccc;
        }

        .carrito-vacio h2 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: #333;
        }

        .carrito-vacio p {
            margin-bottom: 20px;
        }

        .continuar-comprando {
            background-color: #880404;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .continuar-comprando:hover {
            background-color: #7b0000;
        }

        @media (max-width: 768px) {
            .carrito-content {
                grid-template-columns: 1fr;
            }

            .producto-item {
                grid-template-columns: 80px 1fr;
                gap: 10px;
            }

            .producto-imagen {
                width: 80px;
                height: 60px;
            }

            .cantidad-controls {
                margin-top: 10px;
            }

            .eliminar-btn {
                margin-top: 10px;
                width: 100%;
            }

            .carrito-title {
                font-size: 1.5rem;
            }
        }


                /* Estilos adicionales para mejor UX */
        .loading {
            opacity: 0.6;
            pointer-events: none;
        }
        
        .notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #28a745;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            z-index: 1001;
            transform: translateX(400px);
            transition: transform 0.3s ease;
        }
        
        .notification.show {
            transform: translateX(0);
        }
        
        .notification.error {
            background: #dc3545;
        }
        
        .cantidad-input {
            text-align: center;
            width: 60px;
            border: 1px solid #ddd;
            border-radius: 4px;
            padding: 8px;
            margin: 0 10px;
        }
        
        .cantidad-btn {
            background: #007bff;
            color: white;
            border: none;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .cantidad-btn:hover {
            background: #0056b3;
            transform: scale(1.1);
        }
        
        .cantidad-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }
        
        .eliminar-btn {
            background: #dc3545;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .eliminar-btn:hover {
            background: #c82333;
            transform: scale(1.05);
        }
        
        .producto-item {
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateX(0);
        }
        
        .producto-item.removing {
            opacity: 0;
            transform: translateX(-100%);
        }
        
        .resumen-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .resumen-item:last-child {
            border-bottom: none;
            font-weight: bold;
            font-size: 1.2em;
            color: #007bff;
        }
        
        .proceder-btn {
            width: 100%;
            background: #28a745;
            color: white;
            border: none;
            padding: 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .proceder-btn:hover {
            background: #218838;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        
        .proceder-btn:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .cantidad-controls {
            display: flex;
            align-items: center;
            justify-content: center;
        }